@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display+SC:ital,wght@0,400;0,700;0,900;1,400;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cookie&display=swap");
:root {
  --black: #000000;
  --white: #fcffff;
  --dark-brown: #37241A;
  --brown: #703C03;
  --light-brown: #825930;
  --pink: #fbb1d4;
  --purple: #b9c2f9;
  --blue: #00adf6;
  --green: #7ff2f9;
  --yellow: #fdfcbb;
  --font: "Montserrat", sans-serif;
  --heading-font: "Playfair Display", serif;
  --headline-font: "Playfair Display SC", var(--heading-font);
  --script-font: "Cookie", serif;
  --body-font-size: 0.9rem;
  --h1-font-size: 2.5rem;
  --h2-font-size: 2rem;
  --h3-font-size: 1.5rem;
  --h4-font-size: 1.25rem;
  --h5-font-size: 1.1rem;
  --h6-font-size: 1rem;
  --large-font-size: 1rem;
  --small-font-size: 0.75rem;
  --container-width: 1400px;
  --container-max-width: 100%;
  --horizontal-spacer: 3rem;
  --vertical-spacer: 3rem;
  --transition: all ease-in-out .25s;
  --shadow: 1rem 1rem 1rem var(--black);
}
@media screen and (min-width: 768px) {
  :root {
    --body-font-size: 1rem;
    --h1-font-size: 3.5rem;
    --h2-font-size: 2.5rem;
    --h3-font-size: 2rem;
    --h4-font-size: 2.25rem;
    --h5-font-size: 1.5rem;
    --h6-font-size: 1.25rem;
    --large-font-size: 1.25rem;
    --small-font-size: 0.9rem;
  }
}
@media screen and (min-width: 992px) {
  :root {
    --body-font-size: 1rem;
    --h1-font-size: 4.5rem;
    --h2-font-size: 3.5rem;
    --h3-font-size: 2.5rem;
    --h4-font-size: 2rem;
    --h5-font-size: 1.75rem;
    --h6-font-size: 1.5rem;
    --large-font-size: 1.25rem;
    --small-font-size: 0.9rem;
  }
}

.bg-black {
  background-color: #000000;
}
.bg-white {
  background-color: #fcffff;
}
.bg-dark-brown {
  background-color: #37241A;
}
.bg-brown {
  background-color: #703C03;
}
.bg-light-brown {
  background-color: #825930;
}
.bg-pink {
  background-color: #fbb1d4;
}
.bg-purple {
  background-color: #b9c2f9;
}
.bg-blue {
  background-color: #00adf6;
}
.bg-green {
  background-color: #7ff2f9;
}
.bg-yellow {
  background-color: #fdfcbb;
}

.text-black {
  color: #000000;
}
.text-white {
  color: #fcffff;
}
.text-dark-brown {
  color: #37241A;
}
.text-brown {
  color: #703C03;
}
.text-light-brown {
  color: #825930;
}
.text-pink {
  color: #fbb1d4;
}
.text-purple {
  color: #b9c2f9;
}
.text-blue {
  color: #00adf6;
}
.text-green {
  color: #7ff2f9;
}
.text-yellow {
  color: #fdfcbb;
}

.menu-wrapper .header-buttons a, header .header-buttons ul a, button,
a.button, .homepage-hero .button, a.button-lg {
  display: inline-flex;
  position: relative;
  top: 0;
  padding: 0.5rem 1rem;
  border: 0.25rem solid var(--purple);
  border-radius: 1rem;
  background-color: var(--yellow);
  color: var(--dark-brown);
  font-family: var(--script-font);
  font-size: 2rem;
  font-weight: normal;
  line-height: 1;
  text-align: center;
  text-shadow: none;
  box-shadow: -0.25rem -0.25rem 0 var(--pink), 0.25rem 0.25rem 0 var(--green);
  text-decoration: none;
  cursor: pointer;
}
.menu-wrapper .header-buttons a:focus, header .header-buttons ul a:focus, button:focus,
a.button:focus, .homepage-hero .button:focus, a.button-lg:focus, .menu-wrapper .header-buttons a:hover, header .header-buttons ul a:hover, button:hover,
a.button:hover, .homepage-hero .button:hover, a.button-lg:hover {
  border-color: var(--purple);
  background-color: var(--purple);
  color: var(--yellow);
}

.homepage-hero .button, a.button-lg {
  padding: 0.5rem 1.5rem;
  font-size: 3rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
}

#root,
#__next {
  isolation: isolate;
}

html {
  background-color: var(--white);
}

body {
  position: relative;
  min-height: 100vh;
  margin: 0;
  color: var(--dark-brown);
  font-family: var(--font);
  font-size: 1.1rem;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
nav a {
  text-decoration: none;
}

section {
  padding: 6rem 0;
}

.container {
  position: relative;
  margin: auto;
  padding: 0 1.5rem;
  width: var(--container-width);
  max-width: var(--container-max-width);
}
.container--full {
  padding: 0;
  width: 100%;
}

hr {
  margin: 2.5rem 0;
  border-style: inset;
  border: 2px solid var(--purple);
}
hr:nth-of-type(3n-1) {
  border-color: var(--pink);
}
hr:nth-of-type(3n) {
  border-color: var(--green);
}

body {
  font-size: var(--body-font-size);
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  margin-bottom: 1rem;
  color: var(--brown);
  font-family: var(--heading-font);
  line-height: 1.25;
  word-wrap: break-word;
}

h1,
.h1 {
  font-size: var(--h1-font-size);
  font-family: var(--headline-font);
  font-weight: 900;
}

h2,
.h2 {
  font-size: var(--h2-font-size);
}

h3,
.h3 {
  font-size: var(--h3-font-size);
}

h4,
.h4 {
  font-size: var(--h4-font-size);
}

h5,
.h5 {
  font-size: var(--h5-font-size);
}

h6,
.h6 {
  font-size: var(--h6-font-size);
}

.large, .testimonials .testimonial--content {
  font-size: var(--large-font-size);
}

.small, .product--description, .disclaimer {
  font-size: var(--small-font-size);
}

.headline {
  font-weight: 900;
}

.script {
  font-family: var(--script-font);
  font-weight: normal;
  font-size: var(--h5-font-size);
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--blue);
  text-underline-offset: 3px;
}
a:focus, a:hover {
  color: var(--pink);
}

a,
button {
  transition: var(--transition);
}

.center {
  text-align: center;
}

header {
  background-color: var(--purple);
}
header a {
  text-decoration: none;
}
header .header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 1.5rem;
}
header .logo {
  margin-bottom: 0;
  font-family: var(--headline-font);
  font-weight: 900;
}
header .logo a {
  display: flex;
  align-items: center;
  gap: 2rem;
  color: inherit;
}
header .logo img {
  width: 50px;
  max-width: 100%;
}
header .primary-menu {
  display: none;
  margin-left: auto;
}
@media screen and (min-width: 992px) {
  header .primary-menu {
    display: block;
  }
}
header .primary-menu > ul {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
header .primary-menu > ul .menu-item a {
  padding: 1rem 0;
  color: var(--dark-brown);
  font-weight: 500;
}
header .primary-menu > ul .menu-item-has-children {
  position: relative;
}
header .primary-menu > ul .menu-item-has-children::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-size: 0.75rem;
  font-weight: 900;
  -webkit-font-smoothing: antialiased;
}
header .primary-menu > ul .menu-item-has-children .sub-menu {
  display: none;
  position: absolute;
  z-index: 100;
  overflow: hidden;
  top: 2rem;
  left: 0;
  width: 12rem;
  padding: 0.5rem 0;
  border-radius: 0.5rem;
  background-color: var(--pink);
}
header .primary-menu > ul .menu-item-has-children .sub-menu > li a {
  display: flex;
  padding: 0.5rem 1rem;
  border-left: 0 solid var(--brown);
}
header .primary-menu > ul .menu-item-has-children .sub-menu > li a:hover {
  border-left-width: 0.5rem;
  background-color: var(--green);
}
header .primary-menu > ul .menu-item-has-children:hover .sub-menu {
  display: block;
}
header .header-buttons {
  display: none;
}
@media screen and (min-width: 992px) {
  header .header-buttons {
    display: block;
  }
}
header .header-buttons ul {
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media screen and (min-width: 992px) {
  header .menu-toggle {
    display: none;
  }
}
header .open-nav {
  padding: 1.5rem 1rem;
}

footer {
  background-color: var(--purple);
}

.footer-wrapper {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  text-align: center;
}

.disclaimer {
  margin: 0.5rem 0;
}

.menu-wrapper {
  display: flex;
  flex-direction: column;
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  width: 500px;
  max-width: 100%;
  height: 100vh;
  overflow: auto;
  transform: translateX(100%);
  background-color: var(--yellow);
}
.menu-wrapper .close-nav {
  display: block;
  margin-left: auto;
  cursor: pointer;
}
.menu-wrapper .menu-item > a {
  display: inline-block;
  margin-bottom: 0;
  color: var(--dark-brown);
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.2;
}
.menu-wrapper .menu-item > a:focus, .menu-wrapper .menu-item > a:hover {
  color: var(--purple);
}
.menu-wrapper .menu-item-has-children > a {
  cursor: unset;
}
.menu-wrapper .menu-item-has-children > a:focus, .menu-wrapper .menu-item-has-children > a:hover {
  color: var(--dark-brown);
}
.menu-wrapper .sub-menu {
  margin-top: 1rem;
  padding-left: 1rem;
}
.menu-wrapper .primary-menu-wrapper {
  margin-bottom: 6rem;
  padding: 2rem 4rem;
}
.menu-wrapper .primary-menu-wrapper .menu-item {
  margin-bottom: 1rem;
}
.menu-wrapper .social-menu-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
  padding: 2rem 4rem;
  background-color: var(--purple);
}
.menu-wrapper .social-menu-wrapper span {
  color: var(--dark-brown);
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.2;
}
.menu-wrapper .social-menu-wrapper .menu {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.menu-wrapper .social-menu-wrapper .menu-item > a:focus, .menu-wrapper .social-menu-wrapper .menu-item > a:hover {
  color: var(--green);
}

.homepage-hero,
.page-hero {
  position: relative;
  background-attachment: fixed;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.homepage-hero {
  text-align: center;
}
.homepage-hero .hero-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}
@media screen and (min-width: 768px) {
  .homepage-hero .hero-grid {
    flex-wrap: nowrap;
  }
}
@media screen and (min-width: 992px) {
  .homepage-hero .hero-grid {
    gap: 6rem;
  }
}
@media screen and (min-width: 768px) {
  .homepage-hero .hero-img {
    width: 33.333%;
  }
}
@media screen and (min-width: 768px) {
  .homepage-hero .hero-content {
    width: 66.666%;
  }
}
.homepage-hero .headline span {
  font-family: var(--script-font);
  font-size: 7rem;
  font-weight: normal;
  line-height: 0;
}
.homepage-hero .button {
  margin-top: 2rem;
}

.buckets .buckets-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .buckets .buckets-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 992px) {
  .buckets .buckets-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}
.buckets .buckets-grid .bucket {
  padding: 1rem;
  border-radius: 0.5rem;
  background: linear-gradient(135deg, var(--purple), var(--yellow), var(--green));
  text-decoration: none;
}
.buckets .buckets-grid .bucket .bucket--image {
  margin-bottom: 0.5rem;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.buckets .buckets-grid .bucket .bucket--title {
  margin-bottom: 0;
}

.featured-products .headline {
  margin-bottom: 4rem;
}
.featured-products .product-slider {
  padding-bottom: 6rem;
}
.featured-products .product-slider .swiper-wrapper {
  align-items: stretch;
}
.featured-products .product-slider .swiper-slide {
  height: unset;
}
.featured-products .product-slider .product-slider-pagination {
  bottom: 0;
}
.featured-products .product-slider .product-slider-pagination .swiper-pagination-bullet {
  width: 1.125rem;
  height: 1.125rem;
  opacity: 1;
  background-color: var(--purple);
  transition: var(--transition);
}
.featured-products .product-slider .product-slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  transform: scale(1.5);
  border: 4px double var(--purple);
  background-color: var(--yellow);
}
.featured-products .product {
  padding: 2rem;
  background-color: var(--yellow);
}
.featured-products .product .product--image-wrapper {
  margin-bottom: 2rem;
}

.cta--grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6rem;
}
@media screen and (min-width: 768px) {
  .cta--grid {
    flex-wrap: nowrap;
  }
}
.cta--content {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .cta--content {
    width: 55%;
  }
}
.cta--img {
  padding: 1rem;
  width: 100%;
  background: linear-gradient(135deg, var(--pink), var(--yellow), var(--green));
}
@media screen and (min-width: 768px) {
  .cta--img {
    width: 45%;
  }
}

.newsletter-signup {
  padding: 8rem 0;
}

.about-cta--grid {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row-reverse;
  align-items: center;
  gap: 6rem;
}
@media screen and (min-width: 768px) {
  .about-cta--grid {
    flex-wrap: nowrap;
  }
}
.about-cta--content {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .about-cta--content {
    width: 55%;
  }
}
.about-cta--img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .about-cta--img {
    width: 45%;
  }
}

.testimonials .headline {
  margin-bottom: 4rem;
}
.testimonials .testimonial-slider {
  margin-bottom: 6rem;
  overflow: visible;
}
.testimonials .testimonial-slider .swiper-wrapper {
  align-items: center;
}
.testimonials .testimonial-slider .testimonial-slider-pagination {
  bottom: -6rem;
}
.testimonials .testimonial-slider .testimonial-slider-pagination .swiper-pagination-bullet {
  width: 1.125rem;
  height: 1.125rem;
  opacity: 1;
  background-color: var(--blue);
  transition: var(--transition);
}
.testimonials .testimonial-slider .testimonial-slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  transform: scale(1.5);
  border: 4px double var(--blue);
  background-color: var(--white);
}
@media screen and (min-width: 768px) {
  .testimonials .testimonial {
    padding: 0.5rem 8rem;
  }
}
.testimonials .testimonial--content {
  padding: 3rem;
  border: 0.5rem solid var(--purple);
  background: var(--white);
  box-shadow: -0.5rem -0.5rem 0 var(--pink), 0.5rem 0.5rem 0 var(--green);
}

.page-content .about--img {
  width: 33.333%;
  margin: -5rem 0 4rem 4rem;
  float: right;
}

.about--img {
  position: relative;
  z-index: 10;
}
.about--img .about--img-shadow {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 1rem solid var(--green);
  border-radius: 100%;
}
.about--img .about--img-shadow:first-of-type {
  z-index: -1;
  top: -0.7rem;
  left: -0.7rem;
  border: 1rem solid var(--pink);
}
.about--img .about--img-shadow:last-of-type {
  z-index: -2;
  top: 0.7rem;
  left: 0.7rem;
  border: 1rem solid var(--green);
}
.about--img .about--img-wrapper {
  position: relative;
  aspect-ratio: 1;
  border: 1rem solid var(--purple);
  border-radius: 100%;
  background-color: var(--white);
}
.about--img .about--img-wrapper img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%) rotate(2deg);
  width: 100%;
}

.cakes {
  position: relative;
}
.cakes--grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  align-items: flex-start;
  gap: 5rem;
}
@media screen and (min-width: 768px) {
  .cakes--grid {
    grid-template-columns: repeat(10, 1fr);
  }
}
@media screen and (min-width: 768px) {
  .cakes--content {
    grid-column: 5/span 6;
  }
}
@media screen and (min-width: 768px) {
  .cakes--img {
    position: sticky;
    top: 0;
    padding: 5rem 0;
    grid-column: 1/span 4;
  }
}

.cake-options--grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  align-items: flex-start;
  gap: 3rem;
}
@media screen and (min-width: 992px) {
  .cake-options--grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.cake-svg {
  overflow: visible;
}
.cake-svg--top-tier {
  opacity: 0;
}
.cake-svg .st1,
.cake-svg .st2 {
  opacity: 0;
}

.product-archive .headline {
  margin-bottom: 6rem;
}
.product-archive .product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}
@media screen and (min-width: 768px) {
  .product-archive .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 992px) {
  .product-archive .product-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.product {
  display: flex;
  flex-direction: column;
}
.product--image-wrapper {
  position: relative;
  margin-bottom: 1rem;
}
.product--image-shadow:first-of-type {
  position: absolute;
  z-index: 2;
  top: -0.5rem;
  left: -0.5rem;
  width: 100%;
  height: 100%;
  border: 0.5rem solid var(--pink);
}
.product--image-shadow:last-of-type {
  position: absolute;
  z-index: 1;
  top: 0.5rem;
  left: 0.5rem;
  width: 100%;
  height: 100%;
  border: 0.5rem solid var(--green);
}
.product--image, .product--image-placeholder {
  position: relative;
  z-index: 3;
  width: 100%;
  border: 0.5rem solid var(--purple);
  aspect-ratio: 1;
  object-fit: cover;
}
.product--price {
  margin-top: auto;
  margin-bottom: 0;
}

/*# sourceMappingURL=style.css.map */
