:root {
  --sb-pink: #ff8fb7;
  --sb-pink-soft: #ffe5f0;
  --sb-pink-deep: #ff5c98;
  --sb-bg: #fff9fc;
  --sb-cream: #fff4ea;
  --sb-body: #5b4b57;
  --sb-muted: #9b8ea0;
  --sb-card-radius: 20px;
  --sb-shadow-soft: 0 14px 30px rgba(255, 143, 183, 0.18);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, #ffe5f0 0, #fff9fc 40%, #fff 100%);
  color: var(--sb-body);
}

/* Header */
.sb-header {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 20;
}

.sb-navbar {
  padding-block: 0.8rem;
}

.sb-logo-circle {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--sb-pink), var(--sb-pink-deep));
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.sb-logo-text {
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.sb-nav-links .nav-link {
  font-size: 0.95rem;
  padding-inline: 0.9rem;
  color: var(--sb-muted);
}

.sb-nav-links .nav-link:hover,
.sb-nav-links .nav-link.active {
  color: var(--sb-pink-deep);
}

/* Buttons */
.sb-btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #1ebe57);
  border-radius: 999px;
  color: #fff !important;
  font-size: 0.9rem;
  padding: 0.5rem 1.4rem;
  border: none;
}

.sb-btn-pink {
  background: linear-gradient(135deg, var(--sb-pink), var(--sb-pink-deep));
  border-radius: 999px;
  color: #fff !important;
  border: none;
  padding: 0.65rem 1.6rem;
  font-weight: 500;
}

.sb-btn-outline {
  border-radius: 999px;
  border: 1px solid var(--sb-pink);
  color: var(--sb-pink-deep);
  background: transparent;
  padding: 0.6rem 1.6rem;
  font-size: 0.9rem;
}

/* Main layout */
.sb-main {
  padding-top: 1.5rem;
}

/* Hero */
/* ===== HERO BASE ===== */
.sb-main {
  padding-top: 1.5rem;
}

.sb-hero {
  padding: 3rem 0 3.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 0.8s ease-out forwards;
}

@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.sb-hero-sub {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--sb-muted);
  font-size: 0.8rem;
  margin-bottom: 0.6rem;
}

.sb-hero-title {
  font-size: clamp(2.1rem, 3vw, 2.8rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.sb-hero-title span {
  background: linear-gradient(135deg, var(--sb-pink), var(--sb-pink-deep));
  -webkit-background-clip: text;
  color: transparent;
}

.sb-hero-text {
  font-size: 0.98rem;
  color: var(--sb-muted);
  max-width: 460px;
}

/* ===== HERO IMAGE WRAP ===== */
.sb-hero-img-wrap {
  position: relative;
}

.sb-hero-blob {
  width: 260px;
  height: 260px;
  background: radial-gradient(circle at 10% 0, #ffe5f0, #ffd9f2, #fff4ea);
  border-radius: 50% 40% 60% 45%;
  position: absolute;
  top: 8%;
  left: 8%;
  z-index: 0;
}

.sb-hero-main-img {
  position: relative;
  z-index: 1;
  border-radius: 32px;
  box-shadow: var(--sb-shadow-soft);
  overflow: hidden;
}

/* Floating animation */
.sb-hero-main-animated {
  animation: heroFloat 6s ease-in-out infinite;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

.sb-hero-main-animated:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 22px 45px rgba(255, 143, 183, 0.35);
}

/* ===== GLASS / SHINY PRIMARY BUTTON ===== */
.sb-btn-pink {
  background: linear-gradient(135deg, var(--sb-pink), var(--sb-pink-deep));
  border-radius: 999px;
  color: #fff !important;
  border: none;
  padding: 0.65rem 1.6rem;
  font-weight: 500;
}

.sb-btn-glass {
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(255, 92, 152, 0.35);
  backdrop-filter: blur(8px);
  transition: transform 0.2s ease;
}

.sb-btn-glass:hover {
  transform: translateY(-2px);
}

/* Shine strip */
.sb-btn-glass::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -30%;
  width: 40%;
  height: 200%;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.65) 40%,
    rgba(255,255,255,0) 80%
  );
  transform: translateX(-120%);
  opacity: 0.9;
}

.sb-btn-glass:hover::before {
  animation: shineSwipe 0.8s ease-out;
}

@keyframes shineSwipe {
  to {
    transform: translateX(260%);
  }
}

/* Outline secondary button (WhatsApp CTA) */
.sb-btn-outline {
  border-radius: 999px;
  border: 1px solid var(--sb-pink);
  color: var(--sb-pink-deep);
  background: transparent;
  padding: 0.6rem 1.6rem;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 767.98px) {
  .sb-hero {
    padding-top: 2rem;
  }
}

/* ===== GLASS / SHINY BUTTON ===== */
.sb-btn-glass {
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(255, 92, 152, 0.35);
  backdrop-filter: blur(8px);
}

/* shine strip */
.sb-btn-glass::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -30%;
  width: 40%;
  height: 200%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.5) 40%,
    rgba(255, 255, 255, 0) 80%
  );
  transform: translateX(-120%);
}

/* animate shine on hover */
.sb-btn-glass:hover::before {
  animation: sbButtonShine 0.8s ease-out;
}

@keyframes sbButtonShine {
  0%   { transform: translateX(-120%); }
  100% { transform: translateX(260%); }
}

/* soft hover lift */
.sb-btn-glass:hover {
  transform: translateY(-1px);
}

/* ===== HERO IMAGE FLOAT / HOVER ===== */
.sb-hero-main-animated {
  animation: sbHeroFloat 6s ease-in-out infinite;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

@keyframes sbHeroFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

/* slight tilt on hover */
.sb-hero-main-animated:hover {
  transform: translateY(-4px) rotate(-1.5deg) scale(1.01);
  box-shadow: 0 22px 45px rgba(255, 143, 183, 0.35);
}


/* Sections */
.sb-section-title {
  font-size: 1.5rem;
  font-weight: 600;
}

.sb-section-sub {
  font-size: 0.95rem;
  color: var(--sb-muted);
}

/* Cards */
.sb-card {
  border-radius: var(--sb-card-radius);
  background: #fff;
  border: none;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
}

.sb-card-img {
  border-top-left-radius: var(--sb-card-radius);
  border-top-right-radius: var(--sb-card-radius);
}

.sb-badge {
  display: inline-block;
  font-size: 0.7rem;
  padding: 0.18rem 0.6rem;
  border-radius: 999px;
  background: var(--sb-pink-soft);
  color: var(--sb-pink-deep);
}

/* Footer */


/* ===== FOOTER ===== */
.sb-footer {
  background: #ffffff;
  border-top: 1px solid #f3d7e5;
  position: relative;
  overflow: hidden;
}

/* soft gradient strip on top */
.sb-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 140%;
  height: 3px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #ff8fb7, #ff5c98, #ffe5f0);
  opacity: 0.9;
}

/* fade-up animation */
.sb-footer-inner {
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(10px);
  animation: sbFooterIn 0.7s ease-out forwards;
}

@keyframes sbFooterIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.sb-footer-logo {
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.sb-footer-sub {
  font-size: 0.85rem;
  color: var(--sb-muted);
}

.sb-footer-heading {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--sb-muted);
}

/* quick links */
.sb-footer-links a {
  font-size: 0.88rem;
  text-decoration: none;
  color: var(--sb-body);
  display: inline-flex;
  align-items: center;
  position: relative;
  padding-block: 0.12rem;
}

.sb-footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--sb-pink), var(--sb-pink-deep));
  transition: width 0.22s ease;
}

.sb-footer-links a:hover::after {
  width: 100%;
}

.sb-footer-links a:hover {
  color: var(--sb-pink-deep);
}

/* contact + social */
.sb-footer-contact a {
  color: var(--sb-pink-deep);
  text-decoration: none;
}

.sb-footer-contact a:hover {
  text-decoration: underline;
}

/* pill-like social chips */
.sb-footer-chip {
  font-size: 0.85rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  border: 1px solid #f3d7e5;
  text-decoration: none;
  color: var(--sb-body);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: #fff;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.sb-footer-chip:hover {
  transform: translateY(-2px);
  border-color: var(--sb-pink-deep);
  box-shadow: 0 8px 18px rgba(255, 143, 183, 0.22);
}

/* dev credit micro animation */
.sb-footer-dev {
  font-weight: 600;
  cursor: pointer;
  position: relative;
}

.sb-footer-dev::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 1px;
  background: var(--sb-pink-deep);
  transition: width 0.2s ease;
}

.sb-footer-dev:hover::after {
  width: 100%;
}

/* small responsive tweak */
@media (max-width: 767.98px) {
  .sb-footer-inner {
    text-align: center;
  }
}



/* ANIMATEDS */


.sb-nav-links .nav-link {
  position: relative;
  transition: color 0.2s ease;
}

.sb-nav-links .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--sb-pink), var(--sb-pink-deep));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.sb-nav-links .nav-link:hover::after,
.sb-nav-links .nav-link.active::after {
  transform: scaleX(1);
}
.sb-card {
  border-radius: var(--sb-card-radius);
  background: #fff;
  border: none;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.sb-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(255, 143, 183, 0.25);
}
.sb-hero {
  padding: 3rem 0 3.5rem;
  opacity: 0;
  transform: translateY(18px);
  animation: sbFadeUp 0.6s ease-out forwards;
}

@keyframes sbFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.sb-card {
  /* previous styles... */
  opacity: 0;
  transform: translateY(10px);
  animation: sbCardIn 0.5s ease-out forwards;
}

.sb-card:nth-child(1) { animation-delay: 0.05s; }
.sb-card:nth-child(2) { animation-delay: 0.1s; }
.sb-card:nth-child(3) { animation-delay: 0.15s; }
.sb-card:nth-child(4) { animation-delay: 0.2s; }

@keyframes sbCardIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.sb-logo-circle {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--sb-pink), var(--sb-pink-deep));
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  animation: sbLogoPulse 2.4s ease-in-out infinite;
}

@keyframes sbLogoPulse {
  0% { transform: scale(1); box-shadow: 0 0 0 rgba(255, 92, 152, 0.3); }
  50% { transform: scale(1.04); box-shadow: 0 0 16px rgba(255, 92, 152, 0.35); }
  100% { transform: scale(1); box-shadow: 0 0 0 rgba(255, 92, 152, 0.3); }
}
.sb-logo {
  animation: sbLogoSlide 0.6s ease-out forwards;
  opacity: 0;
  transform: translateX(-10px);
}

@keyframes sbLogoSlide {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.sb-logo:hover .sb-logo-circle {
  animation: sbWiggle 0.4s ease-in-out;
}

@keyframes sbWiggle {
  0% { transform: rotate(0); }
  25% { transform: rotate(-6deg); }
  50% { transform: rotate(6deg); }
  75% { transform: rotate(-3deg); }
  100% { transform: rotate(0); }
}
.sb-logo-circle {
  position: relative;
  overflow: hidden;
}

.sb-logo-circle::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    #ff8fb7,
    #ff5c98,
    #ffd9f2,
    #ffe5f0,
    #ff8fb7
  );
  animation: sbSpin 3.5s linear infinite;
  z-index: -1;
}

@keyframes sbSpin {
  to { transform: rotate(360deg); }
}















/* ===== FEATURED COLLECTIONS WRAPPER ===== */
.sb-featured-collections {
  background: linear-gradient(135deg, #fff7fd, #fff9fc);
  border-radius: 28px;
  padding: 1.8rem 1.6rem;
}

/* ===== COLLECTION CARDS ===== */
.sb-collection-card {
  padding: 1.1rem 1.1rem 1rem;
  border-radius: 18px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.03);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  background: #ffffff;
}

.sb-collection-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(255, 143, 183, 0.22);
  background: linear-gradient(135deg, #ffffff, #ffeaf6);
}

/* small pill on top */
.sb-collection-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.18rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 143, 183, 0.08);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--sb-muted);
}

.sb-collection-icon {
  font-size: 0.95rem;
}

/* text styles */
.sb-collection-title {
  font-weight: 600;
}

.sb-collection-text {
  color: var(--sb-muted);
}

/* link styling */
.sb-collection-link {
  text-decoration: none;
  color: var(--sb-pink-deep);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  position: relative;
}

.sb-collection-link::after {
  content: "";
  width: 0;
  height: 1px;
  background: var(--sb-pink-deep);
  position: absolute;
  left: 0;
  bottom: -1px;
  transition: width 0.2s ease;
}

.sb-collection-link:hover::after {
  width: 100%;
}

/* small staggered animation (optional) */
.sb-collection-card {
  opacity: 0;
  transform: translateY(8px);
  animation: sbCollectionIn 0.5s ease-out forwards;
}

.sb-collection-card:nth-child(1) { animation-delay: 0.05s; }
.sb-collection-card:nth-child(2) { animation-delay: 0.1s; }
.sb-collection-card:nth-child(3) { animation-delay: 0.15s; }
.sb-collection-card:nth-child(4) { animation-delay: 0.2s; }

@keyframes sbCollectionIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.sb-collection-img {
  position: relative;
}

.sb-collection-img::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,145,184,0.25), rgba(255,145,184,0));
  z-index: -1;
}
/* ROUND CATEGORY IMAGES */
.sb-collection-img {
  width: 85px;
  height: 85px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 10px auto;
  box-shadow: 0 8px 18px rgba(255, 143, 183, 0.18);
  transition: transform 0.25s ease;
}

.sb-collection-card:hover .sb-collection-img {
  transform: scale(1.08);
}








/* Wrapper background */
.sb-bestsellers {
  background: linear-gradient(135deg, #fff7fd, #fff9fc);
  border-radius: 28px;
  padding: 1.8rem 1.6rem;
}

/* Product cards */
.sb-product-card {
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  background: #ffffff;
}

.sb-product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(255, 143, 183, 0.25);
  background: #fffdfd;
}

/* Image wrapper with fixed ratio */
.sb-product-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 22px 22px 0 0;
}

.sb-product-img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.sb-product-card:hover .sb-product-img {
  transform: scale(1.05);
}

/* Optional inner frame look for some images */
.sb-product-img-frame {
  padding: 10px;
  background: #ffffff;
}

/* Badge already exists, just ensure it’s cute */
.sb-badge {
  display: inline-block;
  font-size: 0.7rem;
  padding: 0.18rem 0.6rem;
  border-radius: 999px;
  background: var(--sb-pink-soft);
  color: var(--sb-pink-deep);
}

/* Product link */
.sb-product-link {
  text-decoration: none;
  color: var(--sb-pink-deep);
  font-weight: 500;
  position: relative;
}

.sb-product-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 1px;
  background: var(--sb-pink-deep);
  transition: width 0.2s ease;
}

.sb-product-link:hover::after {
  width: 100%;
}


/* ===== WHY + CUSTOMER LOVE WRAP ===== */
.sb-why-wrap {
  background: linear-gradient(135deg, #fff7fd, #fff9fc);
  border-radius: 28px;
  padding: 1.8rem 1.6rem 1.4rem;
}

/* ===== WHY CARDS ===== */
.sb-why-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 1rem 1rem 0.9rem;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  height: 100%;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.sb-why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(255, 143, 183, 0.2);
  background: #fff9fd;
}

.sb-why-icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 143, 183, 0.1);
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}

/* ===== TESTIMONIAL CARDS ===== */
.sb-testimonial-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 0.75rem 1rem;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
  border-left: 3px solid rgba(255, 143, 183, 0.7);
}

.sb-testimonial-card::before {
  content: "“";
  position: absolute;
  top: -18px;
  right: 14px;
  font-size: 4rem;
  line-height: 1;
  color: rgba(255, 143, 183, 0.15);
}

/* ===== CTA STRIP ===== */
.sb-cta-strip {
  border-radius: 26px;
  padding: 1.2rem 1.5rem;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(255, 143, 183, 0.2);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.sb-cta-text {
  flex: 1 1 220px;
}

.sb-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: flex-end;
}

/* Responsive */
@media (max-width: 767.98px) {
  .sb-why-wrap {
    padding: 1.3rem 1rem;
  }
  .sb-cta-strip {
    align-items: flex-start;
  }
  .sb-cta-actions {
    justify-content: flex-start;
  }
}























/* ===== PRODUCT PAGE ===== */
.sb-breadcrumb {
  font-size: 0.8rem;
  color: var(--sb-muted);
}

.sb-breadcrumb a:hover {
  color: var(--sb-pink-deep);
}

.sb-product-title {
  font-size: 1.6rem;
  font-weight: 600;
}

.sb-price {
  font-size: 1.3rem;
  font-weight: 600;
}

.sb-product-meta {
  font-size: 0.9rem;
  color: var(--sb-muted);
}

.sb-product-main-img img {
  width: 100%;
  display: block;
}

/* list of details */
.sb-product-details-list {
  padding-left: 1.1rem;
}

.sb-product-details-list li {
  margin-bottom: 0.15rem;
}
/* Fix product card image sizing */
.sb-card-img {
  width: 100%;
  height: 220px;        /* same height for all images */
  object-fit: cover;    /* crop nicely */
  border-radius: 16px 16px 0 0;
}
.sb-product-card {
  margin-bottom: 10px;
}

.sb-collection-grid {
  row-gap: 20px !important;
  column-gap: 0 !important;
}
.sb-card {
  border-radius: 18px;
  border: 1px solid #f1d7e5;
  background: #ffffff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sb-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(255, 140, 176, 0.15);
}
.sb-filter-pill {
  padding: 6px 16px;
  border: 1px solid #ffb6d9;
  border-radius: 20px;
  font-size: 14px;
  cursor: pointer;
  background: #fff;
  margin-right: 8px;
  margin-bottom: 8px;
}

.sb-filter-pill.active {
  background: #ff7fbf;
  color: #fff;
  border-color: #ff66b3;
}
/* Product card images – equal height */
.sb-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 16px 16px 0 0;
}


.sb-card.sb-product-card {
  border-radius: 18px;
  border: 1px solid #f1d7e5;
  background: #ffffff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sb-card.sb-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(255, 140, 176, 0.18);
}

.sb-collection-grid {
  row-gap: 20px !important;
}
/* Entrance animation for product cards */
.sb-collection-grid > div {
  opacity: 0;
  transform: translateY(10px);
  animation: sbProductIn 0.45s ease-out forwards;
}

@keyframes sbProductIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Staggered delays for first 25 items */
.sb-collection-grid > div:nth-child(1)  { animation-delay: 0.02s; }
.sb-collection-grid > div:nth-child(2)  { animation-delay: 0.04s; }
.sb-collection-grid > div:nth-child(3)  { animation-delay: 0.06s; }
.sb-collection-grid > div:nth-child(4)  { animation-delay: 0.08s; }
.sb-collection-grid > div:nth-child(5)  { animation-delay: 0.10s; }
.sb-collection-grid > div:nth-child(6)  { animation-delay: 0.12s; }
.sb-collection-grid > div:nth-child(7)  { animation-delay: 0.14s; }
.sb-collection-grid > div:nth-child(8)  { animation-delay: 0.16s; }
.sb-collection-grid > div:nth-child(9)  { animation-delay: 0.18s; }
.sb-collection-grid > div:nth-child(10) { animation-delay: 0.20s; }
.sb-collection-grid > div:nth-child(11) { animation-delay: 0.22s; }
.sb-collection-grid > div:nth-child(12) { animation-delay: 0.24s; }
.sb-collection-grid > div:nth-child(13) { animation-delay: 0.26s; }
.sb-collection-grid > div:nth-child(14) { animation-delay: 0.28s; }
.sb-collection-grid > div:nth-child(15) { animation-delay: 0.30s; }
.sb-collection-grid > div:nth-child(16) { animation-delay: 0.32s; }
.sb-collection-grid > div:nth-child(17) { animation-delay: 0.34s; }
.sb-collection-grid > div:nth-child(18) { animation-delay: 0.36s; }
.sb-collection-grid > div:nth-child(19) { animation-delay: 0.38s; }
.sb-collection-grid > div:nth-child(20) { animation-delay: 0.40s; }
.sb-collection-grid > div:nth-child(21) { animation-delay: 0.42s; }
.sb-collection-grid > div:nth-child(22) { animation-delay: 0.44s; }
.sb-collection-grid > div:nth-child(23) { animation-delay: 0.46s; }
.sb-collection-grid > div:nth-child(24) { animation-delay: 0.48s; }
.sb-collection-grid > div:nth-child(25) { animation-delay: 0.50s; }
.sb-filter-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid #ffb6d9;
  background: #ffffff;
  color: var(--sb-muted);
  font-size: 0.85rem;
  cursor: pointer;
  margin-right: 8px;
  margin-bottom: 8px;
  transition: background 0.18s ease, color 0.18s ease,
              border-color 0.18s ease, transform 0.15s ease,
              box-shadow 0.15s ease;
}

.sb-filter-pill:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(255, 143, 183, 0.25);
}

.sb-filter-pill.active {
  background: var(--sb-pink);
  border-color: var(--sb-pink-deep);
  color: #fff;
}














































/* ===== CUSTOM ORDERS PAGE ===== */
.sb-custom-form {
  background: #fffdfd;
}

.sb-custom-step {
  position: relative;
  padding-left: 2.4rem;
}

.sb-custom-step + .sb-custom-step {
  margin-top: 1.5rem;
}

.sb-custom-step-label {
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 50%;
  background: var(--sb-pink-soft);
  color: var(--sb-pink-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
}

/* type cards */
.sb-type-card {
  display: block;
  cursor: pointer;
}

.sb-type-card input {
  display: none;
}

.sb-type-card-inner {
  border-radius: 14px;
  border: 1px solid #f4d6e6;
  padding: 0.7rem 0.6rem;
  text-align: center;
  background: #fff;
  transition: border-color 0.18s ease, box-shadow 0.18s ease,
              transform 0.15s ease, background 0.18s ease;
}

.sb-type-emoji {
  font-size: 1.2rem;
  margin-bottom: 0.2rem;
}

.sb-type-title {
  font-size: 0.9rem;
  font-weight: 600;
}

.sb-type-sub {
  color: var(--sb-muted);
}

.sb-type-card input:checked + .sb-type-card-inner {
  border-color: var(--sb-pink-deep);
  box-shadow: 0 8px 20px rgba(255, 143, 183, 0.28);
  transform: translateY(-2px);
  background: linear-gradient(135deg, #ffffff, #ffe5f0);
}

/* colour chips */
.sb-color-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.sb-color-chip {
  border-radius: 999px;
  border: 1px solid #f1d7e5;
  padding: 0.25rem 0.7rem;
  font-size: 0.78rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: #fff;
  cursor: pointer;
  position: relative;
  transition: background 0.18s ease, border-color 0.18s ease,
              box-shadow 0.18s ease, transform 0.12s ease;
}

.sb-color-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.1);
}

.sb-color-check {
  font-size: 0.8rem;
  opacity: 0;
}

.sb-color-chip.active {
  border-color: var(--sb-pink-deep);
  background: #ffe5f5;
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(255, 143, 183, 0.24);
}

.sb-color-chip.active .sb-color-check {
  opacity: 1;
}

/* summary card */
.sb-custom-summary {
  position: sticky;
  top: 90px;
  background: linear-gradient(145deg, #fff, #fff4fa);
}

.sb-summary-list li {
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}

.sb-custom-notes-preview {
  background: rgba(255, 229, 240, 0.6);
  border-radius: 12px;
  padding: 0.6rem 0.7rem;
}

/* responsive */
@media (max-width: 991.98px) {
  .sb-custom-summary {
    position: static;
    margin-top: 1rem;
  }
}

@media (max-width: 575.98px) {
  .sb-custom-step {
    padding-left: 2rem;
  }

  .sb-type-card-inner {
    padding-inline: 0.4rem;
  }
}
/* colour preview bar in summary */
.sb-colour-preview-wrapper {
  font-size: 0.85rem;
}

.sb-colour-preview-bar {
  width: 100%;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, #f5f5f5, #eeeeee);
  border: 1px solid #f1d7e5;
}

/* idea cards */
.sb-custom-ideas {
  margin-bottom: 1.5rem;
}

.sb-idea-img-wrap {
  border-radius: 16px 16px 0 0;
  overflow: hidden;
}

.sb-idea-img-wrap img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.sb-idea-card {
  border-radius: 18px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.sb-idea-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(255, 143, 183, 0.26);
}








/* custom gallery top of page */
.sb-custom-gallery-card {
  display: block;
  border-radius: 20px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #f1d7e5;
  text-decoration: none;
  color: inherit;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.sb-custom-gallery-img img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}

.sb-custom-gallery-body {
  padding: 0.75rem 0.9rem 0.85rem;
}

.sb-custom-gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 26px rgba(255,143,183,0.25);
  border-color: var(--sb-pink-deep);
}
/* ===== CUSTOM ORDERS PAGE ===== */
.sb-custom-form {
  background: #fffdfd;
}

.sb-custom-step {
  position: relative;
  padding-left: 2.4rem;
}

.sb-custom-step + .sb-custom-step {
  margin-top: 1.5rem;
}

.sb-custom-step-label {
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 50%;
  background: var(--sb-pink-soft);
  color: var(--sb-pink-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
}

/* type cards */
.sb-type-card {
  display: block;
  cursor: pointer;
}

.sb-type-card input {
  display: none;
}

.sb-type-card-inner {
  border-radius: 14px;
  border: 1px solid #f4d6e6;
  padding: 0.7rem 0.6rem;
  text-align: center;
  background: #fff;
  transition: border-color 0.18s ease, box-shadow 0.18s ease,
              transform 0.15s ease, background 0.18s ease;
}

.sb-type-emoji {
  font-size: 1.3rem;
  margin-bottom: 0.25rem;
}

.sb-type-title {
  font-size: 0.9rem;
  font-weight: 600;
}

.sb-type-sub {
  color: var(--sb-muted);
}

.sb-type-card input:checked + .sb-type-card-inner {
  border-color: var(--sb-pink-deep);
  box-shadow: 0 8px 20px rgba(255, 143, 183, 0.28);
  transform: translateY(-2px);
  background: linear-gradient(135deg, #ffffff, #ffe5f0);
}

/* colour chips */
.sb-color-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.sb-color-chip {
  border-radius: 999px;
  border: 1px solid #f1d7e5;
  padding: 0.25rem 0.7rem;
  font-size: 0.78rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: #fff;
  cursor: pointer;
  position: relative;
  transition: background 0.18s ease, border-color 0.18s ease,
              box-shadow 0.18s ease, transform 0.12s ease;
}

.sb-color-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.08);
}

.sb-color-check {
  font-size: 0.8rem;
  opacity: 0;
}

.sb-color-chip.active {
  border-color: var(--sb-pink-deep);
  background: #ffe5f5;
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(255, 143, 183, 0.24);
}

.sb-color-chip.active .sb-color-check {
  opacity: 1;
}

/* summary card */
.sb-custom-summary {
  position: sticky;
  top: 90px;
  background: linear-gradient(145deg, #fff, #fff4fa);
}

.sb-summary-list li {
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}

.sb-custom-notes-preview {
  background: rgba(255, 229, 240, 0.6);
  border-radius: 12px;
  padding: 0.6rem 0.7rem;
}

/* colour preview bar */
.sb-colour-preview-wrapper {
  font-size: 0.85rem;
}

.sb-colour-preview-bar {
  width: 100%;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, #f5f5f5, #eeeeee);
  border: 1px solid #f1d7e5;
}

/* custom gallery at top */
.sb-custom-gallery-card {
  display: block;
  border-radius: 20px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #f1d7e5;
  text-decoration: none;
  color: inherit;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.sb-custom-gallery-img img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}

.sb-custom-gallery-body {
  padding: 0.75rem 0.9rem 0.85rem;
}

.sb-custom-gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 26px rgba(255,143,183,0.25);
  border-color: var(--sb-pink-deep);
}

/* responsive */
@media (max-width: 991.98px) {
  .sb-custom-summary {
    position: static;
    margin-top: 1rem;
  }
}

@media (max-width: 575.98px) {
  .sb-custom-step {
    padding-left: 2rem;
  }

  .sb-type-card-inner {
    padding-inline: 0.4rem;
  }
}
















/* ===== GALLERY PAGE ===== */
.sb-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.sb-gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.03);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  opacity: 0;
  transform: translateY(8px);
  animation: sbGalleryIn 0.5s ease-out forwards;
}

.sb-gallery-item:nth-child(1) { animation-delay: 0.02s; }
.sb-gallery-item:nth-child(2) { animation-delay: 0.04s; }
.sb-gallery-item:nth-child(3) { animation-delay: 0.06s; }
.sb-gallery-item:nth-child(4) { animation-delay: 0.08s; }
/* you can continue if you want more stagger */

@keyframes sbGalleryIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.sb-gallery-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.sb-gallery-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 0.55rem 0.7rem 0.7rem;
  background: linear-gradient(to top, rgba(0,0,0,0.55), rgba(0,0,0,0));
  color: #fff;
}

.sb-gallery-overlay h6 {
  font-size: 0.9rem;
  margin: 0.1rem 0 0;
}

.sb-gallery-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  background: rgba(255, 143, 183, 0.9);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.sb-gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(255, 143, 183, 0.32);
}


































/* ===== ABOUT PAGE ===== */
.sb-about-hero {
  background: radial-gradient(circle at top left, rgba(255,183,217,0.35), transparent 55%),
              radial-gradient(circle at top right, rgba(173,220,255,0.3), transparent 55%);
}

.sb-about-photo-stack {
  position: relative;
  max-width: 360px;
  margin-inline: auto;
}

.sb-about-photo {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.sb-about-photo-main img,
.sb-about-photo-top img,
.sb-about-photo-bottom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sb-about-photo-main {
  height: 260px;
}

.sb-about-photo-top {
  position: absolute;
  width: 60%;
  height: 150px;
  top: -18px;
  right: -18px;
  transform: rotate(4deg);
}

.sb-about-photo-bottom {
  position: absolute;
  width: 55%;
  height: 150px;
  bottom: -18px;
  left: -10px;
  transform: rotate(-4deg);
}

.sb-about-stat {
  background: #ffffff;
  border-radius: 16px;
  padding: 0.7rem 0.9rem;
  border: 1px solid #f1d7e5;
}

.sb-about-stat-number {
  font-size: 1.4rem;
  font-weight: 600;
}

.sb-about-stat-label {
  font-size: 0.8rem;
  color: var(--sb-muted);
}

/* timeline */
.sb-timeline {
  position: relative;
  padding-left: 1.4rem;
  margin-top: 0.5rem;
}

.sb-timeline::before {
  content: "";
  position: absolute;
  left: 0.45rem;
  top: 0.2rem;
  bottom: 0.2rem;
  width: 2px;
  background: linear-gradient(to bottom, #ff9ac7, #ffd2e7);
}

.sb-timeline-item {
  position: relative;
  margin-bottom: 1.4rem;
}

.sb-timeline-dot {
  position: absolute;
  left: -0.1rem;
  top: 0.1rem;
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #ff9ac7;
}

.sb-timeline-content {
  margin-left: 1.4rem;
}

.sb-timeline-year {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--sb-muted);
}

/* values */
.sb-about-values {
  background: linear-gradient(145deg, #fff4fa, #fdfbff);
}

.sb-about-value-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 0.9rem 0.9rem;
  border: 1px solid #f1d7e5;
  height: 100%;
  box-shadow: 0 10px 24px rgba(0,0,0,0.03);
}

.sb-about-value-icon {
  font-size: 1.3rem;
  margin-bottom: 0.3rem;
}

.sb-about-mini-img {
  width: 120px;
  height: 80px;
  object-fit: cover;
  border-radius: 18px;
  border: 2px solid #ffe1f1;
}

/* CTA card */
.sb-about-cta {
  background: radial-gradient(circle at top left, #ffe5f4, #fff);
  border: 1px solid #f3c7dd;
}

/* responsive tweaks */
@media (max-width: 991.98px) {
  .sb-about-photo-top,
  .sb-about-photo-bottom {
    display: none;
  }

  .sb-about-photo-main {
    height: 240px;
  }
}
























/* ===== CONTACT PAGE ===== */
.sb-contact-hero {
  background: radial-gradient(circle at top right, rgba(255, 200, 220, 0.35), transparent 50%),
              radial-gradient(circle at top left, rgba(180, 220, 255, 0.3), transparent 50%);
  padding-bottom: 1rem;
}

.sb-contact-hero-img img {
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.sb-contact-card {
  background: #fff;
  border-radius: 18px;
  padding: 1.2rem 1.1rem;
  border: 1px solid #f1d7e5;
  text-align: left;
  box-shadow: 0 12px 30px rgba(0,0,0,0.04);
  transition: all 0.18s ease;
}

.sb-contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(255,143,183,0.25);
}

.sb-contact-icon {
  font-size: 2rem;
  margin-bottom: 0.4rem;
}

#sbFormStatus {
  min-height: 18px;
}

/* inline links */
.sb-inline-link {
  color: var(--sb-pink-deep);
  text-decoration: none;
}

.sb-inline-link:hover {
  text-decoration: underline;
}
