/* Root variables */
:root {
  --bg: #fff7fb;
  --panel: #fff;
  --muted: #8b6b78;
  --accent-1: #f7c6d6;
  --accent-2: #f2a6c2;
  --ink: #2b1f25;
  --radius: 14px;
  --card-shadow: 0 12px 36px rgba(43, 31, 37, 0.06);
  --glow: 0 12px 40px rgba(242, 166, 194, 0.12);
  --transition: 300ms cubic-bezier(.2, .9, .3, 1);
  --max-width: 1200px;
}

/* Base */
* {
  box-sizing: border-box
}

html,
body {
  height: 100%
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial;
  background: linear-gradient(180deg, var(--bg) 0%, #fff0f6 100%);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.45;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 28px
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden
}

.skip-link:focus {
  left: 12px;
  top: 12px;
  width: auto;
  height: auto;
  padding: 8px 12px;
  background: #fff;
  border-radius: 8px;
  z-index: 1000
}

/* Header */
.site-header {
  background: transparent;
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(6px)
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink)
}

.logo-wrap {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  box-shadow: var(--glow);
  transition: transform var(--transition)
}

.logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.logo-wrap.small {
  width: 56px;
  height: 56px;
  border-radius: 12px
}

.brand-text {
  display: flex;
  flex-direction: column
}

.brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700
}

.brand-tag {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600
}

/* Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 12px
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  font-size: 20px
}

.nav-list {
  display: flex;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0
}

.nav-list a {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 10px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  transition: all var(--transition);
  position: relative
}

.nav-list a::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  bottom: 6px;
  width: 70%;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--accent-2), var(--accent-1));
  transition: transform var(--transition)
}

.nav-list a:hover {
  transform: translateY(-3px);
  color: var(--accent-2)
}

.nav-list a:hover::after {
  transform: translateX(-50%) scaleX(1)
}

.cta {
  background: linear-gradient(90deg, var(--accent-2), var(--accent-1));
  color: #fff;
  padding: 10px 14px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(242, 166, 194, 0.14)
}

/* Hero */
.hero-section {
  padding: 28px 0
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 28px;
  align-items: start
}

.hero-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.98));
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(43, 31, 37, 0.03)
}

.hero-card h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 5vw, 44px);
  margin: 0 0 12px
}

.lead {
  color: var(--muted);
  margin: 0 0 18px
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap
}

/* Featured aside */
.featured-card {
  background: linear-gradient(180deg, #fff, #fff);
  padding: 12px;
  border-radius: 12px;
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch
}

.featured-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px
}

.featured-meta h3 {
  margin: 0;
  font-family: 'Playfair Display', serif
}

.featured-meta .muted {
  font-size: 13px
}

.featured-actions {
  display: flex;
  gap: 8px
}

/* Collections */
.collections-section {
  padding: 18px 0
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px
}

/* Filter Enhancements */
.filters {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.filter-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.filter {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.filter label {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.filter select,
.filter input {
  background: var(--panel);
  border: 1px solid rgba(43, 31, 37, 0.1);
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 14px;
  color: var(--ink);
  transition: border-color var(--transition);
  min-width: 160px;
}

.filter select:focus,
.filter input:focus {
  border-color: var(--accent-2);
  outline: none;
}

.search-input-inner {
  position: relative;
  display: flex;
  align-items: center;
}

.search-input-inner i {
  position: absolute;
  left: 14px;
  color: var(--muted);
  pointer-events: none;
}

.search-input-inner input {
  padding-left: 38px;
  width: 300px;
}

/* Product Grid Responsiveness */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

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

  .search-input-inner input {
    width: 100%;
  }

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

.card {
  background: var(--panel);
  border-radius: 12px;
  padding: 12px;
  box-shadow: var(--card-shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: visible
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 60px rgba(43, 31, 37, 0.12)
}

.img-wrap {
  width: 100%;
  height: 220px;
  border-radius: 10px;
  overflow: hidden;
  background: #f8f4f6
}

.img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition)
}

.card:hover .img-wrap img {
  transform: scale(1.03)
}

.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(90deg, var(--accent-2), var(--accent-1));
  color: #fff;
  padding: 6px 8px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 13px;
  box-shadow: 0 8px 24px rgba(242, 166, 194, 0.12)
}

.card h3 {
  margin: 10px 0 6px;
  font-family: 'Playfair Display', serif
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px
}

.meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px
}

.price {
  color: var(--accent-2);
  font-weight: 800
}

/* Buttons */
.btn {
  padding: 12px 24px;
  border-radius: var(--radius);
  border: 0;
  cursor: pointer;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  font-size: 15px
}

.btn-ghost {
  background: rgba(43, 31, 37, 0.03);
  border: 1px solid rgba(43, 31, 37, 0.1);
  color: var(--ink)
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-2), var(--accent-1));
  color: #fff;
  box-shadow: var(--glow)
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(242, 166, 194, 0.2)
}

.btn-ghost:hover {
  background: rgba(43, 31, 37, 0.06);
  border-color: var(--accent-2);
  color: var(--accent-2)
}

/* Link Reset */
a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition)
}

.contact-list a:hover,
.footer-right a:hover {
  color: var(--accent-2)
}

a[href^="tel"],
a[href^="mailto"] {
  color: var(--ink);
  font-weight: 600
}

a[href^="tel"]:hover,
a[href^="mailto"]:hover {
  color: var(--accent-2)
}

/* Accessibility & Tooltips */
[data-tooltip] {
  position: relative;
  cursor: help;
}

[data-tooltip]::before {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  padding: 8px 12px;
  background: var(--ink);
  color: #fff;
  font-size: 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s;
  z-index: 100;
}

[data-tooltip]:hover::before {
  opacity: 1;
  visibility: visible;
}

/* Responsive Grid Improvements */
@media (max-width: 1200px) {
  .container {
    padding: 20px;
  }
}

@media (max-width: 768px) {

  .hero-inner,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }

  .modal-card {
    grid-template-columns: 1fr;
  }
}


/* About & Contact */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 18px;
  align-items: center
}

.about-image {
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, rgba(242, 166, 194, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  padding: 40px;
  position: relative;
}

.about-image img {
  width: 100%;
  max-width: 320px;
  border-radius: 50%;
  object-fit: cover;
  mix-blend-mode: darken;
  filter: contrast(1.1) brightness(1.05) drop-shadow(0 10px 25px rgba(242, 166, 194, 0.25));
  transition: transform var(--transition), filter var(--transition);
}

.about-image img:hover {
  transform: scale(1.05) translateY(-5px);
  filter: contrast(1.15) brightness(1.1) drop-shadow(0 15px 35px rgba(242, 166, 194, 0.35));
}


.contact-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 18px
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #efe6ea;
  margin-bottom: 12px;
  font-size: 14px
}

/* Footer */
.site-footer {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.98));
  border-top: 1px solid rgba(43, 31, 37, 0.03);
  padding: 28px 0
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start
}

.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(242, 166, 194, 0.08), rgba(255, 255, 255, 0.6));
  color: var(--ink);
  margin-right: 8px;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition)
}

.socials a:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(242, 166, 194, 0.14)
}

.footer-credit {
  margin-top: auto;
  padding-top: 32px;
  text-align: left
}

.footer-image {
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, rgba(242, 166, 194, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  padding: 40px;
  position: relative;
}

.footer-image img {
  width: 100%;
  max-width: 320px;
  border-radius: 50%;
  object-fit: cover;
  mix-blend-mode: darken;
  filter: contrast(1.1) brightness(1.05) drop-shadow(0 10px 25px rgba(242, 166, 194, 0.25));
  transition: transform var(--transition), filter var(--transition);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 18px;
  align-items: center;
}

.footer-left {
  text-align: left;
  display: flex;
  flex-direction: column;
}

.credit-link {
  font-size: 8px;
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(242, 166, 194, 0.35);
  transition: color var(--transition), text-shadow var(--transition), transform var(--transition)
}

.credit-link:hover {
  color: var(--accent-2);
  text-shadow: 0 0 8px rgba(242, 166, 194, 0.85), 0 0 12px rgba(242, 166, 194, 0.6);
  transform: translateY(-2px)
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(43, 31, 37, 0.45);
  z-index: 90;
  padding: 20px
}

.modal.open {
  display: flex
}

.modal-card {
  width: 100%;
  max-width: 980px;
  background: var(--panel);
  border-radius: 12px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 0;
  box-shadow: 0 30px 80px rgba(43, 31, 37, 0.18)
}

.modal-left {
  padding: 18px
}

.modal-main {
  width: 100%;
  height: 420px;
  border-radius: 10px;
  overflow: hidden;
  background: #f8f4f6
}

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

.thumbs {
  display: flex;
  gap: 8px;
  overflow: auto;
  padding-top: 8px
}

.thumbs img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform var(--transition), border-color var(--transition)
}

.thumbs img.active {
  border-color: var(--accent-2);
  transform: translateY(-4px)
}

.modal-right {
  padding: 18px
}

.close-btn {
  background: transparent;
  border: 0;
  font-size: 20px;
  color: var(--muted);
  cursor: pointer
}

/* Utilities */
.muted {
  color: var(--muted)
}

.sr-only {
  position: absolute;
  left: -9999px
}

.small {
  font-size: 13px
}

/* Responsive breakpoints */
@media (max-width:1024px) {
  .hero-inner {
    grid-template-columns: 1fr
  }

  .about-grid {
    grid-template-columns: 1fr
  }

  .contact-grid {
    grid-template-columns: 1fr
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .modal-card {
    grid-template-columns: 1fr
  }

  .modal-main {
    height: 320px
  }
}

@media (max-width:720px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start
  }

  .menu-toggle {
    display: inline-block
  }

  .nav-list {
    display: none;
    position: absolute;
    right: 12px;
    top: 84px;
    background: var(--panel);
    padding: 12px;
    border-radius: 12px;
    box-shadow: var(--card-shadow)
  }

  .nav-list.show {
    display: flex;
    flex-direction: column;
    gap: 8px
  }

  .logo-wrap {
    width: 64px;
    height: 64px
  }

  .product-grid {
    grid-template-columns: 1fr
  }

  .modal-main {
    height: 260px
  }
}

/* ============================================================
   MOTHERS' DAY CAROUSEL
   ============================================================ */

.carousel-section {
  padding: 80px 0 70px;
  background: linear-gradient(160deg, #fff0f6 0%, #fdf6fa 40%, #fff7fb 100%);
  position: relative;
  overflow: hidden;
}

.carousel-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 20% 0%, rgba(247, 198, 214, 0.35) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 80% 100%, rgba(242, 166, 194, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

/* Header */
.carousel-header {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
}

.carousel-eyebrow {
  display: inline-block;
  font-family: Inter, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-2);
  background: rgba(242, 166, 194, 0.12);
  border: 1.5px solid rgba(242, 166, 194, 0.4);
  border-radius: 100px;
  padding: 6px 20px;
  margin-bottom: 18px;
  animation: eyebrowPulse 3s ease-in-out infinite;
}

@keyframes eyebrowPulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(242, 166, 194, 0.4);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(242, 166, 194, 0);
  }
}

.carousel-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 14px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  background: linear-gradient(135deg, #2b1f25 0%, #c06080 60%, #e8839e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: titleShimmer 4s ease-in-out infinite alternate;
}

@keyframes titleShimmer {
  0% {
    filter: brightness(1);
  }

  100% {
    filter: brightness(1.15);
  }
}

.carousel-subtitle {
  font-family: Inter, sans-serif;
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Carousel wrapper */
.carousel-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}

.carousel-track-outer {
  flex: 1;
  overflow: hidden;
  border-radius: var(--radius);
}

.carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 500ms cubic-bezier(0.35, 0.9, 0.25, 1);
  will-change: transform;
}

/* Slides */
.carousel-slide {
  flex: 0 0 var(--slide-width, 280px);
  min-width: 0;
}

.carousel-card {
  background: var(--panel);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  border: 1.5px solid rgba(247, 198, 214, 0.35);
  transition: transform 300ms ease, box-shadow 300ms ease;
  cursor: pointer;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.carousel-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 48px rgba(200, 100, 140, 0.16);
  border-color: rgba(242, 166, 194, 0.6);
}

.carousel-img-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #fdf2f6;
}

.carousel-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 400ms ease;
}

.carousel-card:hover .carousel-img-wrap img {
  transform: scale(1.06);
}

.carousel-card-body {
  padding: 14px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.carousel-card-label {
  font-family: Inter, sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  margin: 0;
  line-height: 1.4;
}

.carousel-card-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent-2);
}


.carousel-order-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100%;
  margin-top: 12px;
  padding: 10px 14px;
  background: linear-gradient(135deg, #f2a6c2 0%, #e8739e 100%);
  color: #fff;
  border: 2px solid rgba(242, 166, 194, 0.7);
  border-radius: 100px;
  font-family: Inter, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  animation: orderBtnBounce 2s ease-in-out infinite;
  box-shadow: 0 4px 16px rgba(232, 115, 158, 0.35), 0 0 0 0 rgba(242, 166, 194, 0.5);
  transition: background 220ms ease, box-shadow 220ms ease;
}

@keyframes orderBtnBounce {

  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 4px 16px rgba(232, 115, 158, 0.35), 0 0 0 0 rgba(242, 166, 194, 0.4);
  }

  30% {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(232, 115, 158, 0.45), 0 0 0 7px rgba(242, 166, 194, 0.15);
  }

  60% {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(232, 115, 158, 0.3), 0 0 0 3px rgba(242, 166, 194, 0.08);
  }
}

.carousel-order-btn:hover {
  background: linear-gradient(135deg, #e8739e 0%, #d4567e 100%);
  border-color: rgba(212, 86, 126, 0.8);
  animation-play-state: paused;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(212, 86, 126, 0.45), 0 0 0 5px rgba(242, 166, 194, 0.2);
}

.carousel-order-btn:active {
  animation-play-state: paused;
  transform: translateY(0);
  box-shadow: 0 3px 10px rgba(232, 115, 158, 0.3);
}

.carousel-order-btn .fa-whatsapp {
  font-size: 1rem;
  flex-shrink: 0;
}

@media (max-width: 599px) {
  .carousel-order-btn {
    font-size: 0.78rem;
    padding: 9px 12px;
  }
}


/* Nav buttons */
.carousel-btn {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(242, 166, 194, 0.5);
  background: var(--panel);
  color: var(--accent-2);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(242, 166, 194, 0.15);
  transition: background 250ms ease, color 250ms ease, transform 200ms ease, box-shadow 250ms ease;
  z-index: 2;
}

.carousel-btn:hover {
  background: var(--accent-2);
  color: #fff;
  border-color: var(--accent-2);
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(242, 166, 194, 0.35);
}

.carousel-btn:active {
  transform: scale(0.96);
}

.carousel-btn:disabled {
  opacity: 0.35;
  cursor: default;
  transform: none;
}

/* Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(242, 166, 194, 0.35);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 250ms ease, transform 250ms ease, width 250ms ease;
}

.carousel-dot.active {
  background: var(--accent-2);
  transform: scale(1.25);
  width: 24px;
  border-radius: 100px;
}


/*START OF CODE FOR CAROUSEL CTA BUTTON*/
.carousel-cta {
  text-align: center;
  margin-top: 40px;
}

.carousel-cta .btn {
  font-size: 1rem;
  padding: 14px 36px;
  border-radius: 100px;
  box-shadow: 0 8px 28px rgba(242, 166, 194, 0.35);
  animation: ctaBounce 2.5s ease-in-out infinite;
}

@keyframes ctaBounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

/*END OF CODE FOR CAROUSEL CTA BUTTON*/


/* Responsive: show 3 slides on desktop, 2 on tablet, 1 on phone */
@media (min-width: 1024px) {
  .carousel-slide {
    --slide-width: calc((100% - 40px) / 3);
    flex-basis: calc((100% - 40px) / 3);
  }

  .carousel-btn {
    width: 54px;
    height: 54px;
    font-size: 1.1rem;
  }
}

@media (min-width: 600px) and (max-width: 1023px) {
  .carousel-slide {
    --slide-width: calc((100% - 20px) / 2);
    flex-basis: calc((100% - 20px) / 2);
  }
}

@media (max-width: 599px) {
  .carousel-section {
    padding: 56px 0 52px;
  }

  .carousel-slide {
    --slide-width: 85vw;
    flex-basis: 85vw;
  }

  .carousel-wrapper {
    gap: 6px;
  }

  .carousel-btn {
    width: 38px;
    height: 38px;
    font-size: 0.85rem;
  }

  .carousel-header {
    margin-bottom: 32px;
  }
}


/* footer credit css code*/
.compact-footer {
  padding: 10px 0;
  font-size: 13px;
  color: #666;
}

.compact-footer .footer-credit {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

.compact-footer .credit-link {
  color: inherit;
  text-decoration: none;
}

.compact-footer .powered-by {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 6px;
  color: inherit;
  text-decoration: none;
}

.compact-footer .gh-mark {
  display: inline-block;
  vertical-align: middle;
  color: #24292f;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* end of footer credit code */