@import url("https://fonts.googleapis.com/css2?family=Bellefair&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  background: #fef9ff;
  min-height: 100vh;
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;

}

/* Mobile-first: Navigation */
.navbar {
  width: 80%;
  background: #fff;
  border-bottom: 1px solid #ccc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* -webkit-box-pack: justify; */
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 11.28vw;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0 auto;
  padding: 1.5rem;
  border-radius: 1rem;
  /* margin-top: 2rem; */
  position: fixed;
  top: 3vw;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 10;
}
.navbar .logo img {
  width: 7vw;
}
.navbar .cart {
  font-size: 1em;
  cursor: pointer;
  color: #f493c1;
  margin-right: 2rem;
}
.navbar .menu {
  color: #f493c1;
}
.navbar .icon,
.navbar .close-btn {
  font-size: 1em;
  cursor: pointer;
}
.navbar #toggler {
  display: none;
}
.navbar .links-wrapper {
  position: absolute;
  top: 0;
  left: -120%;
  width: 100%;
  /* height: 100%; */
  padding: 1rem;
  border-radius: 2rem;
  background: #ffffff;
  /* z-index: 10; */
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.navbar .links-wrapper .links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  list-style: none;
  text-align: center;
  gap: 4rem;
  font-family: "Lato", serif, 400;
  font-weight: 600;
}
.navbar .links-wrapper .links li {
  margin-bottom: 20px;
}
.navbar .links-wrapper .links li a {
  text-decoration: none;
  color: #F493C1;
  font-size: 1.5em;
  letter-spacing: -0.5px;
}
.navbar .links-wrapper .links li a:hover {
  padding: 1rem;
  border-radius: 1rem;
  color: #fffbfd;
  background-color: #F493C1;
  width: 105%;
}
.navbar .links-wrapper .close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.8em;
}
.navbar input#toggler:checked ~ .links-wrapper {
  left: 0;
}
.navbar .backdrop {
  display: none;
  -webkit-animation: 0.4s ease-in-out fadeIn forwards;
          animation: 0.4s ease-in-out fadeIn forwards;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
}
.navbar input#toggler:checked ~ .backdrop {
  display: block;
}
.navbar .end {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

@media (min-width: 940px) {
  .navbar {
    padding: 10px 30px;
    height: 8vh;
  }
  .navbar .logo img {
    width: 4.5vw;
  }
  .navbar .cart {
    font-size: 2em;
  }
  .navbar .links-wrapper {
    position: static;
    width: auto;
    height: auto;
    background: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-flex: 2;
        -ms-flex-positive: 2;
            flex-grow: 2;
  }
  .navbar .links-wrapper .links {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .navbar .links-wrapper .links li {
    margin-right: 24px;
    margin-bottom: 0;
  }
  .navbar .links-wrapper .links li a {
    font-size: 1em;
  }
  .navbar .links-wrapper .close-btn {
    display: none;
  }
  .navbar .icon {
    display: none;
  }
  .navbar #toggler {
    display: none;
  }
  .card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .card h2, .card h3 {
    text-align: center;
    font-size: 2vw;
  }
  .card h3 {
    font-size: 1.3vw;
    line-height: 2vw;
  }
  .card p {
    text-align: center;
    font-size: 1.2vw;
  }
}
.hero {
  position: relative;
  margin-bottom: 1.6rem;
}
.hero img {
  width: 100%;
  height: auto;
}
.hero .hero-overlay {
  position: absolute;
  top: 55%;
  left: 10%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #fffbfd;
}
.hero .hero-overlay h1 {
  font-family: "Bellefair", serif;
  color: #F493C1;
  font-size: 5vw;
  text-align: center;
  margin-bottom: 2.5vw;
  font-weight: normal;
}
.hero .hero-overlay .btn-primary {
  margin-left: 11vw;
  background-color: #F493C1;
  color: #fffbfd;
  padding: 1.2vw 2vw;
  border: none;
  border-radius: 3vw;
  cursor: pointer;
  font-family: "Bellefair", serif;
  font-size: 1.8vw;
}

.card-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 2rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 80%;
  margin: 0 auto;
}

.card {
  background-color: #FAEDFF;
  border-radius: 8px;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 40%;
          flex: 1 1 40%;
}
.card img {
  max-width: 20%;
  border-radius: 8px;
  height: auto;
}
.card h2, .card h3 {
  font-weight: normal;
  margin: 10px 0;
  text-align: center;
  font-family: "Bellefair", serif;
  font-size: 3vw;
  color: #F493C1;
}
.card h3 {
  font-size: 1.3vw;
  line-height: 2vw;
}
.card p {
  text-align: center;
  margin: 10px 0;
  font-family: "Lato", serif, 400;
  font-size: 1.4vw;
}
.card .icon-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  width: 100%;
  gap: 2vw;
}
.card .icon-container .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
.card .icon-container .icon img {
  margin-bottom: 5px;
}

.image img {
  width: 100%;
  height: auto;
}

/*Best Sellers*/
.best-sellers-container {
  width: 80%;
  margin: 0 auto;
  margin-top: 2vw;
}
.best-sellers-container #title-box h1 {
  font-weight: 400;
  text-align: center;
  font-family: "Bellefair", serif;
  font-size: 6vw;
  margin-top: 6vw;
  margin-bottom: 2vw;
  color: #F493C1;
  background-color: #FAEDFF;
  padding: 1vw;
  border-radius: 0.3rem;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.best-sellers-container .products-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.6rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.best-sellers-container .products-grid .product-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #FAEDFF;
  border-radius: 8px;
  padding: 20px;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  width: 100%;
}
.best-sellers-container .products-grid .product-card img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
}
.best-sellers-container .products-grid .product-card h3 {
  font-weight: 400;
  font-family: "Bellefair", serif;
  font-size: 5vw;
  color: black;
  margin-top: 1vw;
  text-align: center;
}
.best-sellers-container .products-grid .product-card p {
  font-family: "Bellefair", serif;
  font-size: 5vw;
  text-align: center;
  margin-top: 1vw;
}
.best-sellers-container .products-grid .product-card .btn-primary {
  margin-top: 4vw;
  background-color: #F493C1;
  color: #fffbfd;
  padding: 2vw 4vw;
  border: none;
  border-radius: 3vw;
  cursor: pointer;
  font-family: "Bellefair", serif;
  font-size: 3.8vw;
}

/* General Styles */
.box-container {
  width: 80%;
  margin: 0 auto;
  margin-top: 2vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2vw;
}
.box-container #title-box h1 {
  font-weight: 400;
  text-align: center;
  font-family: "Bellefair", serif;
  font-size: 6vw;
  margin-top: 6vw;
  margin-bottom: 2vw;
  color: #F493C1;
  background-color: #FAEDFF;
  padding: 1vw;
  border-radius: 0.3rem;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.box-container .box h2 {
  font-family: "Bellefair", serif;
  color: #F493C1;
  font-size: 4vw;
  text-align: center;
  margin-bottom: 2vw;
  font-weight: normal;
  line-height: 10vw;
}
.box-container .box {
  background-size: cover;
  background-position: center;
  border-radius: 1rem;
  padding: 3rem;
  width: 100%;
  height: auto;
  color: white;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.box-container .box.baked-fresh-daily {
  background-image: url("../images/fresh.jpg");
}
.box-container .box.customs {
  background-image: url("../images/custom.jpg");
}
.box-container .box.delivery {
  background-image: url("../images/delivery.jpg");
}
.box-container .box.occasions {
  background-image: url("../images/occasions.jpg");
}
.box-container .box .btn-primary {
  background-color: #F493C1;
  color: #fffbfd;
  padding: 1.2vw 2vw;
  border: none;
  border-radius: 3vw;
  cursor: pointer;
  font-family: "Bellefair", serif;
  font-size: 2.8vw;
}
.box-container .box .btn-primary:hover {
  background-color: #ffffff;
  color: #ff7fbb;
}
.box-container .box-content h3 {
  font-family: "Bellefair", serif;
  color: #F493C1;
  font-size: 4vw;
  text-align: center;
  margin-bottom: 2vw;
  font-weight: normal;
  line-height: 5vw;
}
.box-container .box-content p {
  font-family: "Lato", serif, 400;
  color: #fffbfd;
  font-size: 1.6vw;
  text-align: center;
  line-height: 2.6vw;
  font-weight: 300;
  margin-bottom: 3vw;
}

.footer {
  background: linear-gradient(165deg, #fff2ff, #F3DCF9);
  padding: 3vw 0;
  text-align: center;
  color: black;
  margin-top: 3rem;
}
.footer .footer-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2vw;
}
@media (min-width: 768px) {
  .footer .footer-container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.footer .footer-container .footer-logo img {
  width: 12vw;
  height: auto;
}
.footer .footer-container .footer-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  width: 80%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2vw;
}
.footer .footer-container .footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer .footer-container .footer-nav ul li {
  margin-bottom: 1vw;
}
.footer .footer-container .footer-nav ul li a {
  font-family: "Lato", serif, 400;
  color: black;
  font-size: 1.2vw;
  text-align: center;
  text-decoration: none;
}
.footer .footer-container .footer-nav ul li a:hover {
  text-decoration: underline;
  color: #F493C1;
}
.footer .footer-social {
  margin-top: 2vw;
}
.footer .footer-social ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2vw;
}
.footer .footer-social ul li a img {
  width: 3vw;
  height: auto;
}
.footer .footer-social ul li a img:hover {
  opacity: 0.8;
}

@media (min-width: 940px) {
  .box-container .box {
    padding: 4rem;
  }
  .box-container .box .btn-primary {
    font-family: "Bellefair", serif;
    font-size: 2.4vw;
  }
  .best-sellers-container .products-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 2rem 1fr 2rem 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .best-sellers-container .products-grid .product-card {
    width: 100%;
  }
  .best-sellers-container .products-grid .product-card h3 {
    font-size: 2vw;
    font-weight: 400;
  }
  .best-sellers-container .products-grid .product-card p {
    font-size: 1.5vw;
  }
  .best-sellers-container .products-grid .product-card .btn-primary {
    margin-top: 2vw;
    background-color: #F493C1;
    color: #fffbfd;
    padding: 1vw 3vw;
    border: none;
    border-radius: 1.4vw;
    cursor: pointer;
    font-family: "Bellefair", serif;
    font-size: 1.8vw;
  }
}
.hero {
  position: relative;
  margin-bottom: 1.6rem;
}
.hero img {
  width: 100%;
  height: auto;
}
.hero .hero-overlay {
  position: absolute;
  top: 55%;
  left: 10%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #fffbfd;
}
.hero .hero-overlay h1 {
  font-family: "Bellefair", serif;
  color: #F493C1;
  font-size: 5vw;
  text-align: center;
  margin-bottom: 2.5vw;
  font-weight: normal;
}
.hero .hero-overlay .btn-primary {
  margin-left: 11vw;
  background-color: #F493C1;
  color: #fffbfd;
  padding: 1.2vw 2vw;
  border: none;
  border-radius: 3vw;
  cursor: pointer;
  font-family: "Bellefair", serif;
  font-size: 1.8vw;
}

.image img {
  width: 100%;
  height: auto;
}

/* General Styles */
.box-container {
  width: 80%;
  margin: 0 auto;
  margin-top: 2vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2vw;
}
.box-container #title-box h1 {
  font-weight: 400;
  text-align: center;
  font-family: "Bellefair", serif;
  font-size: 6vw;
  margin-top: 6vw;
  margin-bottom: 2vw;
  color: #F493C1;
  background-color: #FAEDFF;
  padding: 1vw;
  border-radius: 0.3rem;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.box-container .box h2 {
  font-family: "Bellefair", serif;
  color: #F493C1;
  font-size: 4vw;
  text-align: center;
  margin-bottom: 2vw;
  font-weight: normal;
  line-height: 10vw;
}
.box-container .box {
  background-size: cover;
  background-position: center;
  border-radius: 1rem;
  padding: 3rem;
  width: 100%;
  height: auto;
  color: white;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.box-container .box.baked-fresh-daily {
  background-image: url("../images/fresh.jpg");
}
.box-container .box.customs {
  background-image: url("../images/custom.jpg");
}
.box-container .box.delivery {
  background-image: url("../images/delivery.jpg");
}
.box-container .box.occasions {
  background-image: url("../images/occasions.jpg");
}
.box-container .box .btn-primary {
  background-color: #F493C1;
  color: #fffbfd;
  padding: 1.2vw 2vw;
  border: none;
  border-radius: 3vw;
  cursor: pointer;
  font-family: "Bellefair", serif;
  font-size: 2.8vw;
}
.box-container .box .btn-primary:hover {
  background-color: #ffffff;
  color: #ff7fbb;
}
.box-container .box-content h3 {
  font-family: "Bellefair", serif;
  color: #F493C1;
  font-size: 4vw;
  text-align: center;
  margin-bottom: 2vw;
  font-weight: normal;
  line-height: 5vw;
}
.box-container .box-content p {
  font-family: "Lato", serif, 400;
  color: #fffbfd;
  font-size: 1.6vw;
  text-align: center;
  line-height: 2.6vw;
  font-weight: 300;
  margin-bottom: 3vw;
}

/* Categories Pages */
.category-section {
  background-color: #FAEDFF;
  margin: 9vh auto 3vh;
  width: 80%;
  border-radius: 1rem;
  padding: 1.3rem 1.3rem 1.3rem 2rem;
  text-decoration: none;
}
.category-section .container {
  width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.category-section .category-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 2vw;
}
.category-section .image-box {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}
.category-section .image-box img {
  width: 100%;
  border-radius: 1rem;
}
.category-section .text-box {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-family: "Lato", serif, 400;
  padding: 1vw;
}
.category-section .text-box h2 {
  font-family: "Bellefair", serif;
  color: #F493C1;
  font-size: 5vw;
  margin-bottom: 1vw;
  font-weight: 400;
}
.category-section .text-box h3 {
  font-family: "Bellefair", serif;
  color: #F493C1;
  font-size: 3vw;
  margin-bottom: 2vw;
  font-weight: 400;
}
.category-section .text-box p {
  font-family: "Lato", serif, 400;
  font-size: 1.8vw;
  margin-bottom: 1vw;
}
.category-section .text-box .btn-primary {
  background-color: #F493C1;
  color: #fffbfd;
  padding: 1.2vw 2vw;
  border: none;
  border-radius: 2vw;
  cursor: pointer;
  font-size: 1.8vw;
}

@media (min-width: 940px) {
  .category-section {
    margin-top: 15vh;
  }
  .category-section .image-box img {
    width: 80%;
    border-radius: 1rem;
  }
  .category-section .text-box h2 {
    font-size: 4vw;
  }
  .category-section .text-box h3 {
    font-size: 2vw;
  }
  .category-section .text-box p {
    font-size: 1.2vw;
    margin-bottom: 1rem;
  }
}
.cat-card {
  width: 80%;
  margin: 0 auto;
}
.cat-card #title-box h1 {
  font-weight: 400;
  text-align: center;
  font-family: "Bellefair", serif;
  font-size: 6vw;
  margin-top: 6vw;
  margin-bottom: 2vw;
  color: #F493C1;
  background-color: #FAEDFF;
  padding: 1vw;
  border-radius: 0.3rem;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.category-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 2vw;
  width: 90%;
  margin: 0 auto;
  padding: 2vw;
}
.category-grid .category-card {
  background-color: #FAEDFF;
  border-radius: 8px;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-align: center;
  overflow: hidden;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  text-decoration: none;
}
.category-grid .category-card:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.category-grid .category-card img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.category-grid .category-card .category-title {
  background-color: #F493C1;
  color: #fffbfd;
  font-family: "Bellefair", serif;
  font-size: 5vw;
  padding: 3vw;
}

@media (min-width: 940px) {
  .category-grid {
    -ms-grid-columns: 1fr 3vw 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 3vw;
  }
  .category-grid .category-card .category-title {
    font-size: 1.8vw;
  }
}
.price-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 80%;
  margin: 8vh auto 4vh;
  padding: 1rem 0 0.5rem 0;
  background-color: #FAEDFF;
  border-radius: 1.5rem;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.price-section .price-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 0.8rem 0 0.8rem 0;
  color: #F493C1;
}
.price-section .price-card img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1rem;
}
.price-section .price-card .price {
  font-family: "Bellefair", serif;
  font-size: 2.5vw;
  margin-top: 2vw;
}
.price-section .price-card .description {
  font-family: "Bellefair", serif;
  font-size: 3vw;
  margin-top: 1vw;
}

.title-box {
  width: 80%;
  margin: 3.2rem auto 0.8rem;
  font-weight: 400;
  text-align: center;
  font-family: "Bellefair", serif;
  font-size: 4vw;
  font-weight: 400;
  color: #F493C1;
  background-color: #FAEDFF;
  padding: 1vw;
  border-radius: 0.3rem;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.holiday {
  background-color: #FFEAD8;
}

.festivals {
  background-color: #FAEDFF;
}

.title-box h1 {
  font-weight: 400;
  text-align: center;
  font-family: "Bellefair", serif;
  font-size: 4vw;
  font-weight: 400;
  color: #F493C1;
}

.catalog-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 80%;
  margin: 2rem auto;
  padding: 1rem 0;
}
.catalog-header h1 {
  font-weight: 400;
  font-size: 2rem;
  background-color: #fef9ff;
  padding: 1rem;
  border-radius: 0.5rem;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Cupcake Grid */
.cupcake-grid {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  width: 80%;
  margin: 2rem auto;
  padding: 1rem;
}

.cupcake-card {
  background-color: #fff;
  border-radius: 0.5rem;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  -webkit-transition: -webkit-transform 0.2s ease-in-out;
  transition: -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  text-align: center;
}
.cupcake-card:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.cupcake-card img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
}
.cupcake-card h3 {
  font-weight: 400;
  font-size: 1.5rem;
  margin: 1rem 0;
  color: #F493C1;
}
.cupcake-card .cupcake-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
}
.cupcake-card .cupcake-info .quantity-control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}
.cupcake-card .cupcake-info .quantity-control button {
  background-color: #F493C1;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
}
.cupcake-card .cupcake-info .quantity-control button:hover {
  background-color: #ff7fbb;
}
.cupcake-card .cupcake-info .quantity-control .quantity-display {
  font-size: 1.2rem;
  color: #333;
}
.cupcake-card .cupcake-info .add-cart-btn {
  background-color: #F493C1;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
}
.cupcake-card .cupcake-info .add-cart-btn:hover {
  background-color: #ff7fbb;
}

/* Pagination */
.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 2rem auto;
}
.pagination button {
  background-color: #F493C1;
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  margin: 0 0.5rem;
  border-radius: 1rem;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
}
.pagination button:hover {
  background-color: #ff7fbb;
}

@media (min-width: 940px) {
  .price-section {
    padding: 6vw;
    margin-top: 14vh;
  }
  .price-section .price-card img {
    width: 60%;
  }
  .price-section .price-card .price {
    font-size: 1.5vw;
  }
  .price-section .price-card .description {
    font-size: 2vw;
  }
}
.about-hero {
  position: relative;
}
.about-hero img {
  width: 100%;
  height: auto;
}
.about-hero .hero-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #fffbfd;
}
.about-hero .hero-overlay h1 {
  font-family: "Bellefair", serif;
  font-size: 6vw;
  font-weight: 400;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
}

.about-page {
  width: 80%;
  margin: 4vh auto;
}

.about-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3vw;
  margin-bottom: 6vw;
  border-radius: 2rem;
}
.about-container .about-text-box {
  -webkit-box-flex: 65%;
      -ms-flex: 65%;
          flex: 65%;
  padding: 2rem;
  background-color: #FAEDFF;
  border-radius: 1rem;
}
.about-container .about-text-box h2 {
  font-family: "Bellefair", serif;
  font-size: 6vw;
  color: #F493C1;
  margin-bottom: 2vw;
  font-weight: 400;
}
.about-container .about-text-box p {
  font-family: "Lato", serif, 400;
  font-size: 3vw;
  color: #333;
  line-height: 5vw;
}
.about-container .about-image-box {
  -webkit-box-flex: 35%;
      -ms-flex: 35%;
          flex: 35%;
}
.about-container .about-image-box img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
}
.about-container.reverse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
@media (min-width: 940px) {
  .about-container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .about-container .about-text-box h2 {
    font-size: 2.5vw;
  }
  .about-container .about-text-box p {
    font-size: 1.5vw;
    line-height: 2.5vw;
  }
  .about-container.reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

.gallery-section {
  width: 80%;
  margin: 0 auto;
  text-align: center;
  padding: 6vw 0;
}
.gallery-section h2 {
  font-weight: 300;
  font-family: "Bellefair", serif;
  color: #F493C1;
  font-size: 6vw;
  margin-bottom: 3vw;
  background: #FAEDFF;
  padding: 0.6rem;
  border-radius: 0.3em;
}
.gallery-section .grid-container {
  margin: 50px auto;
  width: 100%;
  height: 70vh;
  display: -ms-grid;
  display: grid;
  grid-auto-columns: 1fr;
  gap: 1em;
      grid-template-areas: "one one two five five" "one one three five five" "four four four five five";
}
.gallery-section .grid-item {
  border-radius: 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: white;
  background-size: cover;
  background-position: right;
}
.gallery-section .grid-item:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-row-span: 3;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-area: one;
  background-image: url("../images/aboutusbacky.jpg");
}
.gallery-section .grid-item:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 5;
  grid-area: two;
  background-image: url("../images/baker.jpg");
}
.gallery-section .grid-item:nth-child(3) {
  -ms-grid-row: 3;
  -ms-grid-column: 5;
  grid-area: three;
  background-image: url("../images/half-dozen.png");
}
.gallery-section .grid-item:nth-child(4) {
  -ms-grid-row: 5;
  -ms-grid-column: 1;
  -ms-grid-column-span: 5;
  grid-area: four;
  background-image: url("../images/abouts.jpg");
}
.gallery-section .grid-item:nth-child(5) {
  -ms-grid-row: 1;
  -ms-grid-row-span: 5;
  -ms-grid-column: 7;
  -ms-grid-column-span: 3;
  grid-area: five;
  background-image: url("../images/cupyback.jpg");
}
@media (max-width: 940px) {
  .gallery-section .grid-container {
        grid-template-areas: "one one two five five" "three three three five five" "four four four four four";
  }
  .gallery-section .grid-item:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
  }
  .gallery-section .grid-item:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .gallery-section .grid-item:nth-child(3) {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
  .gallery-section .grid-item:nth-child(4) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
    -ms-grid-column-span: 5;
  }
  .gallery-section .grid-item:nth-child(5) {
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    -ms-grid-column: 4;
    -ms-grid-column-span: 2;
  }
}
@media (max-width: 640px) {
  .gallery-section .grid-container {
        grid-template-areas: "one one two two two" "three three three five five" "four four four four four";
  }
  .gallery-section .grid-item:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
  }
  .gallery-section .grid-item:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
    -ms-grid-column-span: 3;
  }
  .gallery-section .grid-item:nth-child(3) {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
  .gallery-section .grid-item:nth-child(4) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
    -ms-grid-column-span: 5;
  }
  .gallery-section .grid-item:nth-child(5) {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 4;
    -ms-grid-column-span: 2;
  }
}
@media (max-width: 980px) {
  .gallery-section .grid-container {
        grid-template-areas: "one" "two" "three" "four" "five";
  }
  .gallery-section .grid-item:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }
  .gallery-section .grid-item:nth-child(2) {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }
  .gallery-section .grid-item:nth-child(3) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }
  .gallery-section .grid-item:nth-child(4) {
    -ms-grid-row: 4;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }
  .gallery-section .grid-item:nth-child(5) {
    -ms-grid-row: 5;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }
}

header {
  background-color: #FAEDFF;
  padding: 20px;
  text-align: center;
  width: 80%;
  margin: 10vh auto 0.5vh;
}
header h1 {
  color: #F493C1;
  font-size: 2.5rem;
  font-family: "Bellefair", serif;
  font-weight: 400;
}

main {
  width: 80%;
  padding: 20px;
  margin: 0 auto;
}
main .faq {
  max-width: 800px;
  margin: auto;
}
main .faq .faq-item {
  border: 1px solid #F493C1;
  border-radius: 5px;
  margin-bottom: 2rem;
  padding: 15px;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
main .faq .faq-item:hover {
  background-color: #fffbfd;
}
main .faq .faq-item .faq-question {
  font-family: "Bellefair", serif;
  text-align: center;
  margin-bottom: 20px;
  color: #F493C1;
  font-size: 1.6rem;
  font-weight: 400;
  cursor: pointer;
  margin: 0;
}
main .faq .faq-item .faq-answer {
  display: none;
  margin-top: 2rem;
  color: #F493C1;
  font-family: "Lato", serif, 400;
  font-size: 1rem;
  text-align: center;
}
main .faq .faq-item:hover .faq-answer {
  display: block;
}

#deliv {
  margin-top: 1vh;
}

.delivery {
  width: 80%;
  margin: 0 auto;
}
.delivery img {
  width: 100%;
  height: auto;
}

@media (min-width: 600px) {
  header {
    margin: 15vh auto 0.5vh;
  }
  h1 {
    font-size: 2rem;
  }
  .faq h2 {
    font-size: 1.5rem;
  }
  .faq-item {
    padding: 10px;
  }
  .faq-question {
    font-size: 1.2rem;
  }
}