html {
    box-sizing: border-box;
  }

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


  
  /* textarea,select,input[type=file],input[type=text],input[type=email] {
      box-shadow: none;
      appearance: none;
      padding: 7px;
      border: 1px solid black;
      border-radius: 6px;
      margin: 14px;
      font-size: 16px;
      margin-top: 7px;
      margin-bottom: 14px;
      background: #ffffff;
      width: calc(100% - 28px);
      border: none;
      box-shadow: 0 0 0 1px black,0 2px 4px 0 rgb(0 0 0/7%),0 1px 1.5px 0 rgb(0 0 0/5%)
  } */
  
  body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, "system-ui", "Segoe UI", sans-serif;
  }

  h2 {
    font-size: 36px;
    font-weight: 600;
    margin: 0;
    padding: 0;
  }

/* Header styles */
.site-header {
  background-color: #c71585;
  color: #ffffff;
  position: relative;
  margin-bottom: 4rem;
}

.site-header__top {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
}

.site-header__logo svg {
  width: 150px;
  fill: #ffffff;
  display: block;
}

.site-header__tagline {
  text-align: center;
  margin: 0;
  padding: 0;
}

.site-header__contact {
  margin: 0;
  padding: 0;
  text-align: right;
}

.site-header__contact a {
  color: #ffffff;
  text-decoration: none;
  margin: 0 5px;
}

nav {
  width: 100%;
  background-color: #e8e8e8;
  padding: 2rem;
  text-align: center;
}

/* Mobile styles */
@media only screen and (max-width: 768px) {
  .site-header {
    margin-bottom: 16px;
  }

  .site-header__top {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 0.5rem;
  }

  .site-header__logo svg {
    max-width: 150px;
    width: 100%;
  }

  .site-header__tagline,
  .site-header__contact {
    text-align: center;
    margin: 0;
    padding: 0;
  }

  .site-header__tagline {
    margin: 0 0 16px 0;
    padding: 0 0.5rem;
  }

  .site-header__contact {
    display: none;
  }

  nav li {
    display: block;
    margin: 0.5rem 0;
  }
  
  nav a {
    width: 80%;
    max-width: 250px;
    margin: 0 auto;
  }
}

  nav ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  nav li {
    display: block;
    margin: 0;
  }
  
  nav a {
    color: #292929;
    background-color: #ffffff;
    padding: 10px 30px;
    border-radius: 1.5rem;
    font-size: 1.5rem;
    text-decoration: none;
    display: inline-block;
    min-width: 160px;
    text-align: center;
  }
  
  /* Hover effect */
  nav a:hover {
    background-color: #f0f0f0;
  }
  
  @media only screen and (max-width: 768px) {
    .top_bar__content,
    .top_bar__contact {
        text-align: center;
        display: block;
        margin: 0.5rem auto;
        padding: 0.5rem;
    }
    nav li {
        display: block;
        margin: 0.5rem 0;
    }
  }
  
  .reasons {
    max-width: 1200px;
    padding: 0 2rem;
    margin: 0 auto 4rem auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.reasons p {
    width: 100%;
    padding: 0 1rem;
    margin: 0;
    box-sizing: border-box;
    text-align: center;
}

/* Medium devices such as tablets */
@media only screen and (min-width: 991px) and (max-width: 1024px) {
    .reasons p {
        font-size: 0.8em;
    }
}

/* Small devices such as phones */
@media only screen and (max-width: 768px) { 
    .reasons {
      grid-template-columns: 1fr;
      margin-bottom: 16px;
    }

  .reasons p {
    font-size: 0.8rem;
    line-height: 1.15;
    padding: 0.45rem 0.65rem;
  }
}
  
  .card-container {
    text-align:center;
  }
  
  /* Small devices such as tablets (1024px or lesser) */
  @media only screen and (max-width: 768px) {
     
  }
  
   .card {
    text-align: left;
						width:calc(calc(100% / 3) - (28px * 4));
						display:inline-block;
						overflow:hidden;
						margin:14px;
						border: 1px solid var(--global-border-color);
						border-radius: 18px;
    }
  
  @media only screen and (max-width: 768px) {
     .card {
      width: calc(100% - 20px);
    
    }
  }
  
  .card .content {
    background-color: #F8FFF8;
    border-radius: 3px;
    box-shadow: 0 0 5px rgba(0,0,0,0.5);
  }
  
  .card h2,
  .card p {
      padding: 0.5rem;
  }
  
  .card img {
    width: 100%;
  }
  
  .button {
    background:#c71585;
      border:2px solid #ff4742;
      color:#fff;
      border-radius:12px;
      text-align:center;
    padding: 0.5rem;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  
  .quote {
    background-color: #FFE0ED;
    margin-bottom: 4rem;
  }
  
  .quote-container {
     max-width: 700px;
     margin: 0 auto;
     padding: 1rem 2rem;
  }

  .quote-container p {
    font-size: 18px;
  }



  .feature.cards {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
.feature .card {
    position: relative;
    width: 100%;
    margin: 0;
    text-align: left;
    border-radius: 1rem 1rem 0 0;
    height: 100%;
    overflow: hidden;
    border: 1px solid #e0e0e0;
  }
  
  .feature .card img {
    width:100%;
    height: 361px;
    object-fit: cover;
    border-radius:12px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    width: 100%;
  }
  .feature .card .label {
    padding:14px;
    display:block;
    margin-bottom: 50px;
  }
  .feature.cards .output_image {
    cursor:zoom-in;
  }
  .feature.cards .output_image:hover {
    opacity:0.75;
  }
  .feature.cards .output_image:active {
    opacity:0.5;
  }
  .cards-wrapper {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
    text-align: left;
  }
  @media (max-width:600px) {
    .feature .card {
      width: 350px;
    }
    .feature.cards {
      margin:14px;
    }
  }
  

  .card-button {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: #c71585;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    text-align: center;
    width: calc(100% - 30px); /* Full width minus padding */
    box-sizing: border-box;
}

/* Optional hover effect */
.card-button:hover {
    background: #d81b60;
}

.reviews {
  background-color: #FFE0ED;
}

.reviews__wrap {
  max-width: 1120px;
  margin: auto;
  padding: 2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.review {
  width: 100%;
  padding: 20px;
  border-radius: 1.5rem;
  background-color: rgba(255, 255, 255, .7);
  margin-bottom: 20px;
  box-sizing: border-box;
}

.review .header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 1.5em;
}

.review .header img {
  border-radius: 1.5rem;
}

.review .header h3 {
  margin: 0;
  line-height: 20px;
}

/* Desktop styles */
@media screen and (min-width: 56.25em) { 
  .review {
      width: 100%;
  }
}

/* Mobile styles */
@media screen and (max-width: 56.25em) {
  .reviews__wrap {
      grid-template-columns: 1fr;
  }

  .review {
      width: 100%;
  }
}

.stars {
  color: gold;
  font-size: 20px;
  margin-bottom: 5px;
}


.footer {
  background-color: #c71585;
  color: #ffffff;
  padding: 2rem 0;
  overflow: hidden;
}

.footer__wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.footer__content p {
  margin: 0.5rem 0;
}

.footer__contact {
  margin-top: 1rem;
}

.footer__contact a {
  color: #ffffff;
  text-decoration: none;
  margin: 0 5px;
  display: inline-block;
}

.footer__contact .separator {
  color: #ffffff;
  margin: 0 5px;
}

@media only screen and (max-width: 768px) {
  .footer__contact a {
      display: block;
      margin: 0.5rem 0;
  }
  .footer__contact .separator {
      display: none; /* Hide the + on mobile */
  }
}



.product.cards {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.cards-wrapper {
  max-width: 100%; /* 350px * 3 + 20px margins */
  margin: 0 auto;
  text-align: left;
}
.product .card {
  position: relative;
  width: 100%;
  margin: 0;
  text-align: left;
  border-radius: 1rem 1rem 0 0;
  height: 100%;
  overflow: hidden;
  border: 1px solid #e0e0e0;
}

.product .card img {
  width: 100%;
  height: 361px;
  object-fit: cover;
  border-radius: 12px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  width: 100%;
  border-bottom: 1px solid #e0e0e0;
}
.product .card .label {
  padding:14px;
  display:block;
  margin-bottom: 50px;
}
.product.cards .output_image {
  cursor:zoom-in;
}
.product.cards .output_image:hover {
  opacity:0.75;
}
.product.cards .output_image:active {
  opacity:0.5;
}
.cards-wrapper {
display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  text-align: left; /* This aligns cards left within wrapper */
}
@media (max-width:600px) {
  .product .card,
  .feature .card {
    margin: 0 auto 20px auto;
  }
  .cards-wrapper {
      text-align: center;
      grid-template-columns: 1fr;
    }
  .product.cards {
    margin:14px;
  }
}

.order.product {
  background-color: #FFE0ED;
  padding: 2rem;
  margin-top: -86px;
  position: relative;
}

.order-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: grid;
  grid-template-columns: minmax(220px, 340px) 1fr;
  gap: 2rem;
  position: relative;
}

.order-container .preview {
  width: 100%;
  position: relative;
  box-sizing: border-box;
}

.order-container .preview img {
    width:100%;
    height: 350px;
    object-fit: cover;
    border-radius:12px;
    width: 100%;
}

.order-container .content {
  width: 100%;
  padding-left: 2rem;
  position: relative;
  box-sizing: border-box;
}

/* Mobile responsive */
@media only screen and (max-width: 768px) {
  .order-container {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .order-container .preview,
  .order-container .content {
    width: 100%;
    padding: 1rem 0;
  }
}

.order-container .content h1 {
  margin-top: 0;
}

.order-request-form {
  position: relative; 
    background: #ffffff;
    padding: 2rem;
    border-radius: 1.5rem;
    margin: 2rem auto;
    max-width: 800px; 
}

.order-request-form .form {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}


.order-request-form .form .group {
  margin-bottom: 1.5rem;
  box-sizing: border-box;
}

.order-request-form .form .group.full-width {
  width: 100%;
  grid-column: 1 / -1;
}

.order-request-form .form .group.half-width {
  width: 100%;
}

/* .group.half-width:not(.group.half-width + .group.half-width) {
  margin-right: 10px;
} */



.form .group input[type="text"],
.form .group input[type="tel"],
.form .group input[type="email"],
.form .group select {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 1.5rem;
    font-size: 1rem;
    box-sizing: border-box;
    margin-bottom: 0.5rem;
}

.order-request-form .form input[type="submit"] {
  position: relative;
  background: #c71585;
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  text-align: center;
  width: calc(100% - 30px);
  box-sizing: border-box;
  border: none;
  cursor: pointer;
  margin: 0 15px; /* Add margin to match the width calc */
  font-size: 16px;
}

.form__error {
  color: red;
  font-size: 12px;
  margin-top: 5px;
}

/* Optional hover effect */
.order-request-form .form input[type="submit"]:hover {
  background: #d81b60;
}


.ordered.product {
  background-color: #FFE0ED;
  padding: 2rem;
  position: relative;
}

.ordered-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
  border: 1px solid #e0e0e0;
  margin-bottom: 4rem;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
  border: 1px solid #e0e0e0;
  margin-bottom: 4rem;
}

/* Add these admin-specific styles */

.admin {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Make tables responsive */
.admin table {
    width: 100%;
    margin: 20px 0;
    border-collapse: collapse;
}

/* Add horizontal scrolling for tables on mobile */
@media screen and (max-width: 768px) {
    .admin table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
    
    /* Stack form elements on mobile */
    .admin form input[type="text"],
    .admin form input[type="file"],
    .admin form select,
    .admin form textarea {
        width: 100%;
        margin: 10px 0;
    }
    
    /* Make buttons full width on mobile */
    .admin a.button,
    .admin input[type="submit"] {
        display: block;
        width: 100%;
        margin: 10px 0;
        padding: 12px;
        text-align: center;
    }
    
    /* Improve spacing for action links */
    .admin a {
        display: block;
        padding: 15px;  /* Increased padding */
        margin: 10px 0; /* Increased margin */
        background: #f5f5f5;
        border-radius: 8px;
        text-decoration: none;
        font-size: 18px;  /* Larger font size */
        text-align: center;
        min-height: 44px; /* Minimum touch target size */
        line-height: 1.2;
        color: #333;
        box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    }
    
    .admin a:active {
        background: #e5e5e5;
    }

    /* Special styling for action links */
    .admin a[href*="action"] {
        background: #c71585;
        color: white;
    }

    .admin a[href*="action"]:active {
        background: #b01373;
    }

    /* Add space between groups of links */
    .admin a + br + br + a {
        margin-top: 20px;
    }
    
    /* Adjust preview container */
    .admin__item__preview {
        margin: 20px 0;
    }
    
    .admin__item__preview img {
        max-width: 100%;
        height: auto;
    }
}

/* Improve form layout */
.admin form {
    max-width: 600px;
    margin: 0 auto;
}

.admin form label {
    display: block;
    margin: 10px 0 5px;
}

.admin form input[type="text"],
.admin form input[type="file"],
.admin form select,
.admin form textarea {
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

/* Style the preview section */
.admin__item__preview {
    position: relative;
    width: 350px;
    margin: 0 10px 4rem 10px;
    text-align: left;
    border-radius: 1rem 1rem 0 0;
    height: 670px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

.admin__item__preview img {
    width: 100%;
    height: 361px;
    object-fit: cover;
    border-radius: 12px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    width: 100%;
}

@media (max-width: 600px) {
    .admin__item__preview {
        width: 350px;
    }
}

/* Ribbon styling */
.ribbon {
    position: absolute;
    left: 0px;
    top: 0px;
    z-index: 1;
    overflow: hidden;
    width: 150px;
    height: 150px;
    text-align: right;
}

.ribbon span {
    font-size: 14px;
    font-weight: bold;
    color: #FFF;
    text-align: center;
    line-height: 30px;
    transform: rotate(-45deg);
    width: 200px;
    display: block;
    background: #c71585;
    background: linear-gradient(#c71585 0%, #c71585 100%);
    box-shadow: 0 3px 10px -5px rgba(0, 0, 0, 1);
    position: absolute;
    top: 35px;
    left: -45px;
}

.ribbon span::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 100%;
    z-index: -1;
    border-left: 3px solid #8F0E5F;
    border-right: 3px solid transparent;
    border-bottom: 3px solid transparent;
    border-top: 3px solid #8F0E5F;
}

.ribbon span::after {
    content: "";
    position: absolute;
    right: 0px;
    top: 100%;
    z-index: -1;
    border-left: 3px solid transparent;
    border-right: 3px solid #8F0E5F;
    border-bottom: 3px solid transparent;
    border-top: 3px solid #8F0E5F;
}

:root {
  --pink-900: #9f125f;
  --pink-700: #c71585;
  --pink-600: #d81b7f;
  --pink-500: #ea4b9c;
  --pink-200: #ffd5ea;
  --pink-100: #ffe8f4;
  --cream-100: #fffaf6;
  --cream-200: #fff4ee;
  --text-900: #2f1f2a;
  --text-700: #5a4352;
  --line-soft: #f1d4e4;
  --surface: #ffffff;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 8px 20px rgba(124, 24, 74, 0.08);
  --shadow-md: 0 16px 32px rgba(124, 24, 74, 0.12);
  --cupcake-pattern: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'%3E%3Cg opacity='0.72'%3E%3Cpath fill='%23ef9fc7' d='M34 82c0-8 6-14 14-15 2-10 10-17 22-17 11 0 20 7 23 16 9 0 16 7 16 16H34z'/%3E%3Cpath fill='%23f6c6de' d='M47 82h46l-5 24H52z'/%3E%3Ccircle cx='70' cy='46' r='5' fill='%23e870aa'/%3E%3Cpath d='M56 91v10M67 91v10M78 91v10' stroke='%23ef9fc7' stroke-width='2' stroke-linecap='round'/%3E%3C/g%3E%3C/svg%3E");
}

body {
  font-family: "Outfit", "Segoe UI", sans-serif;
  color: var(--text-900);
  line-height: 1.6;
  background:
    radial-gradient(circle at 0% 10%, #ffe3f1 0%, rgba(255, 227, 241, 0) 45%),
    radial-gradient(circle at 100% 2%, #ffeede 0%, rgba(255, 238, 222, 0) 42%),
    linear-gradient(180deg, var(--cream-100) 0%, #fff 55%, #fff8fd 100%);
}

h1,
h2,
h3,
.quote-container p,
.about-container h2 {
  font-family: "Abhaya Libre", serif;
  letter-spacing: -0.02em;
  color: #3f2333;
}

.site-header {
  background:
    linear-gradient(125deg, #a90f67 0%, #c71585 50%, #de4298 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 16px 32px rgba(124, 24, 74, 0.2);
  margin-bottom: 1rem;
  padding: 0;
}

.site-header__top,
.site-nav {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.site-header__top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.55rem;
  padding: 0.4rem 0.8rem 0.25rem;
}

.site-header__logo svg {
  width: 116px;
  display: block;
  padding: 0;
}

.site-header__tagline,
.site-header__contact {
  text-align: left;
  margin: 0;
  padding: 0;
}

.site-header__tagline {
  color: #ffe9f6;
  font-size: 0.84rem;
  font-weight: 500;
  text-align: center;
}

.site-header__contact {
  font-size: 0.76rem;
  text-align: right;
}

.site-header__contact a {
  color: #fff7fc;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.55);
}

.site-nav {
  background: transparent;
  padding: 0 0.8rem 0.5rem;
}

.site-nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.site-nav li {
  display: block;
  margin: 0;
}

.site-nav a {
  min-width: 100px;
  padding: 0.42rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 600;
  backdrop-filter: blur(8px);
  transition: transform 180ms ease, background-color 180ms ease;
}

.site-nav a:hover,
.site-nav a.selected {
  background: #fff;
  color: var(--pink-900);
  border-color: #fff;
  transform: translateY(-1px);
}

.reasons,
.feature.cards,
.product.cards,
.quote-container,
.reviews__wrap,
.about-container,
.order-container,
.ordered-container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.reasons {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 3rem;
  padding: 0 1rem;
}

.reasons p {
  width: 100%;
  margin: 0;
  padding: 0.8rem 1rem;
  border-radius: 14px;
  background: linear-gradient(180deg, #fff6fb 0%, #ffffff 100%);
  border: 1px solid #f8d5e9;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.feature.cards,
.product.cards {
  padding: 0 1rem;
  margin-bottom: 1.25rem;
}

.feature.cards h2,
.product.cards h2,
.quote h2,
.about h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin-bottom: 1.1rem;
}

.cards-wrapper {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  text-align: initial;
}

.feature .card,
.product .card {
  width: 100%;
  margin: 0;
  height: auto;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #fff 0%, #fff9fc 100%);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  overflow: clip;
  animation: rise-in 420ms ease both;
}

.feature .card img,
.product .card img,
.admin__item__preview img {
  height: auto;
  aspect-ratio: 1 / 1;
  border-radius: 0;
  border-bottom: 1px solid var(--line-soft);
}

.feature .card .label,
.product .card .label {
  padding: 1rem 1rem 0.8rem;
  margin-bottom: 0;
}

.feature .card .label p,
.product .card .label p {
  color: var(--text-700);
}

.card-button {
  position: static;
  transform: none;
  width: auto;
  margin: auto 1rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--pink-700), var(--pink-500));
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 12px 24px rgba(177, 20, 110, 0.25);
  font-weight: 600;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.card-button:hover {
  background: linear-gradient(135deg, var(--pink-600), var(--pink-500));
  transform: translateY(-1px);
  box-shadow: 0 16px 28px rgba(177, 20, 110, 0.33);
}

.quote,
.reviews,
.about,
.order.product,
.ordered.product {
  background: linear-gradient(180deg, #ffe9f5 0%, #fff8fc 100%);
  border-top: 1px solid #f9dced;
  border-bottom: 1px solid #f9dced;
}

.quote,
.reviews,
.about {
  position: relative;
  isolation: isolate;
}

.quote::before,
.reviews::before,
.about::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(circle at 16% 24%, rgba(255, 255, 255, 0.7) 0, rgba(255, 255, 255, 0) 44%),
    radial-gradient(circle at 82% 12%, rgba(255, 255, 255, 0.56) 0, rgba(255, 255, 255, 0) 40%),
    var(--cupcake-pattern);
  background-size: cover, cover, 120px 120px;
  background-position: center, center, 0 0;
  background-repeat: no-repeat, no-repeat, repeat;
  opacity: 0.28;
}

.quote > *,
.reviews > *,
.about > * {
  position: relative;
  z-index: 1;
}

.quote {
  margin-top: 2rem;
  margin-bottom: 3rem;
}

.quote-container,
.about-container {
  padding: 2rem;
}

.quote-container p,
.about-container p,
.text {
  font-size: 1.1rem;
  color: var(--text-700);
}

.reviews__wrap {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.review {
  width: auto;
  margin: 0;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid #f6d7e8;
  box-shadow: var(--shadow-sm);
}

.review .header {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.review .header h3,
.stars {
  margin: 0;
  line-height: normal;
}

.stars {
  color: #efb11d;
}

.about-container,
.ordered-container,
.order-request-form {
  background: var(--surface);
  border-radius: var(--radius-xl);
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-sm);
}

.order.product,
.ordered.product {
  margin-top: 0;
}

.order-container {
  display: grid;
  grid-template-columns: minmax(260px, 360px) 1fr;
  gap: 1.5rem;
}

.order-container .content {
  width: 100%;
  padding-left: 0;
}

.order-request-form .form .group {
  margin-bottom: 1rem;
}

.form .group input[type="text"],
.form .group input[type="tel"],
.form .group input[type="email"],
.form .group select {
  border: 1px solid #ead0df;
  background: #fffcfe;
}

.order-request-form .form input[type="submit"] {
  background: linear-gradient(135deg, var(--pink-700), var(--pink-500));
  box-shadow: 0 14px 24px rgba(177, 20, 110, 0.28);
}

.footer {
  background: linear-gradient(125deg, #920f59 0%, #bb166f 100%);
}

.footer__wrap {
  padding-top: 2.3rem;
  padding-bottom: 2.3rem;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media only screen and (max-width: 992px) {
  .cards-wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reasons {
    grid-template-columns: 1fr;
  }

  .order-container {
    grid-template-columns: 1fr;
  }
}

@media only screen and (max-width: 768px) {
  .site-header__top {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 0.25rem;
    padding-top: 0.45rem;
  }

  .site-header__logo svg {
    width: 98px;
  }

  .site-header__contact {
    display: block;
    text-align: center;
  }

  .site-nav {
    padding-bottom: 0.45rem;
  }

  .site-nav a {
    min-width: 0;
    width: 100%;
  }

  .site-nav li {
    width: min(190px, 100%);
  }

  .cards-wrapper,
  .reviews__wrap {
    grid-template-columns: 1fr;
  }

  .feature .card,
  .product .card {
    max-width: 460px;
    margin-inline: auto;
  }

  .quote,
  .reviews,
  .about,
  .order.product,
  .ordered.product {
    margin-bottom: 1.5rem;
  }
}
