@import url("https://fonts.googleapis.com/css2?family=Chivo:ital,wght@0,100..900;1,100..900&display=swap");

body {
  margin: 0;
  font-family: "Chivo", sans-serif;
}
.container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: #d6defc;
}
.header-wrap {
  display: flex;
  justify-content: space-between;
}
.menu-wrap {
  flex: 1 1 130px;
}
.logo {
  flex: 0 0 180px;
}
.logo img {
  max-width: 180px;
}
.nav-icons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
  flex: 1 1 130px;
}
.nav-icons svg {
  fill: none;
  stroke: #1c1d1d;
  width: 30px;
  height: 30px;
}
.banner {
  padding: 60px 0;
}
.banner-content {
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-container {
  max-width: 50%;
}
.swiper-slide img {
  width: 100%;
}
.product-info {
  padding-left: 45px;
  width: 50%;
}
.product-info h1 {
  font-size: 34px;
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}
.price {
  color: green;
  font-size: 24px;
}
.old-price {
  text-decoration: line-through;
  color: gray;
}
.features {
  margin: 20px 0;
  line-height: 1.6;
}
.features p {
  margin: 5px 0;
  display: flex;
  align-items: center;
}
.features img {
  width: 20px;
  margin-right: 10px;
  height: 20px;
}
.add-to-cart {
  margin: 25px 0;
  background: #14c740 !important;
  color: white;
  padding: 20px 2rem;
  border: none;
  font-size: 20px;
  border-radius: 5px;
  cursor: pointer;
  width: auto;
  font-weight: 600;
  letter-spacing: 0.05em;
  display: block;
  text-align: center;
  text-decoration: none;
}
.banner-price-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}
.sale-end {
  background-color: #e60000;
  color: white;
  padding: 2px 8px;
  font-weight: bold;
  border-radius: 6px;
  font-size: 12px;
}

@keyframes inventory-pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.92);
    opacity: 0.19;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.green-icon {
  position: relative;
  margin-right: 30px;
}

.green-icon::before,
.green-icon::after {
  background: #54c63a;
  border-radius: 9px;
  content: "";
  height: 9px;
  left: 0;
  margin: 8px;
  position: absolute;
  top: -3px;
  width: 9px;
}

.green-icon::before {
  animation: inventory-pulse 2s linear infinite;
}
.star-rating {
  display: flex;
  align-items: center;
  font-size: 20px;
  margin: 10px 0;
}
.star {
  color: #ffa800;
}
.half {
  background: linear-gradient(to right, #ffa800 50%, #e0e0e0 50%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.reviews {
  margin-left: 8px;
  font-size: 16px;
  color: #333;
}
.product-slider {
  width: 100%;
  max-width: 600px;
}

.swiper-main {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.swiper-main img {
  width: 100%;
  height: auto;
}

.swiper-thumbs {
  display: flex;
  gap: 10px;
}

.swiper-thumbs .swiper-slide {
  width: 80px;
  height: 80px;
  cursor: pointer;
  border: 2px solid transparent;
  overflow: hidden;
}

.swiper-thumbs .swiper-slide-thumb-active {
  opacity: 1;
  border-color: #1c1d1d;
}

.swiper-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pink-headings {
  background-color: #fdd6d8;
  color: #000;
  padding: 20px;
  margin: 0;
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}

.feature-row {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 100px 0;
  gap: 180px;
}

.feature-row h2 {
  font-size: 34px;
  width: 300px;
  line-height: 1.3;
}

.feature-row img {
  width: 540px;
}

.what-cust {
  font-size: 32px;
  font-weight: bold;
  margin: 50px 0 10px 0;
}

.review-container {
  font-family: Arial, sans-serif;
  background: #fff;
  margin: 40px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.review-box {
  margin-top: 20px;
  width: 100%;
  max-width: 600px;
  border: 1px solid #ccc;
  border-radius: 12px;
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.profile-pic {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.review-header .info {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  width: 100%;
}

.review-header .info .name {
  font-weight: bold;
  margin-left: 20px;
}

.review-header .info .verified {
  color: #ff69b4;
  display: flex;
  align-items: center;
}

.stars {
  margin-top: 8px;
  color: #fbc02d;
  font-size: 16px;
  margin-left: 35px;
}

.review-body {
  font-size: 15.7px;
  color: #333;
  line-height: 1.5;
  margin-top: 15px;
  text-align: center;
}

.review-footer {
  border-top: 1px solid #eee;
  padding-top: 12px;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.reactions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.reactions span {
  font-size: 13px;
  color: #555555;
}

.review-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.review-actions img {
  width: 100%;
  max-width: 300px;
  cursor: pointer;
}

.verify-icon {
  width: 16px;
  height: 16px;
  margin-right: 5px;
}

.three-dots {
  font-size: 24px;
  color: #888;
  pointer-events: none;
}
.name-dots {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.days-ago {
  color: #888;
  font-size: 13px;
  margin-top: 5px;
  margin-left: 35px;
}

.card-container {
  display: flex;
  gap: 20px;
  margin-top: 40px;
  overflow-x: auto;
  padding: 10px 0;
}

.review-card {
  flex: 0 0 auto;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 15px;
  width: 100%;
  max-width: 320px;
  text-align: center;
  font-family: Arial, sans-serif;
  box-sizing: border-box;
}

.review-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 10px;
}

.review-title {
  font-size: 18px;
  color: #333;
  margin: 10px 0;
}

.review-subtitle {
  font-size: 18px;
}

.review-text {
  font-size: 14px;
  color: #555;
}

.gray-reviews-box h2 {
  text-align: center;
}

.gray-reviews-box {
  width: 100%;
  max-width: 692px;
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  flex-direction: column;
}

.gray-rating-summary {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.gray-rating-score {
  font-size: 28px;
  font-weight: bold;
  margin-right: 8px;
}

.gray-stars {
  color: #ffa500;
  font-size: 16px;
  margin-left: 5px;
}

.gray-review-count {
  font-size: 12px;
  color: #555;
  margin-left: 8px;
}

.gray-review-card {
  background: #f9f9f9;
  padding: 10px;
  border-radius: 6px;
  margin-bottom: 8px;
}

.gray-review-card-header {
  font-size: 13px;
  font-weight: bold;
  margin-bottom: 5px;
  color: #222;
  text-align: center;
}

.gray-verified {
  color: green;
  font-weight: bold;
  font-size: 12px;
  margin-left: 5px;
}

.gray-review-stars {
  font-size: 14px;
  color: #ffa500;
  margin: 5px 0;
  text-align: center;
}

.gray-review-text {
  font-size: 14px;
  color: #333;
  margin-bottom: 5px;
  text-align: center;
}

.gray-review-images {
  display: flex;
  gap: 5px;
  margin-top: 5px;
}

.gray-review-images img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 4px;
}

/* Cart page CSS */

.cart-section {
  padding: 60px 0;
  max-width: 1000px;
  margin: auto;
}

.notice {
  background: #fff1d6;
  padding: 1rem;
  border-radius: 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  font-weight: 200;
}
.notice span {
  font-weight: 600;
}
#timer {
  color: #e60000;
  font-weight: 500;
}

.cart-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
}

.cart-container {
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  padding: 30px 0;
}

.cart-row {
  grid-gap: 30px;
  display: grid;
  grid-template-columns: 150px 1fr;
}
.cart-img img {
  width: 100%;
}
.cart-product {
  align-items: center;
  display: grid;
  grid-column: 2;
  grid-template-columns: 2fr 90px 1fr;
}
.product-name {
  font-weight: 200;
}

.cart-product img {
  width: 80px;
  border-radius: 5px;
}

.quantity-control {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #f0f1f3;
  gap: 0.5rem;
}

.quantity-control button {
  width: 30px;
  height: 30px;
  font-size: 18px;
  background: #fff;
  border: none;
  cursor: pointer;
}

.quantity-control span {
  font-size: 16px;
  width: 30px;
  text-align: center;
}

.subtotal {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin: 20px 0;
}
.subtotal-label {
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.2em;
}
.subtotal-wrap img {
  width: 100%;
  margin-top: 40px;
}
.checkout-btn {
  width: 100%;
}
.checkout-btn a {
  display: block;
  background: #00d62f;
  color: white;
  font-size: 24px;
  font-weight: bold;
  padding: 1rem;
  text-align: center;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
}

.labels-container {
  grid-gap: 30px;
  display: grid;
  grid-template-columns: 150px 1fr;
  grid-template-rows: 1fr;
  padding-bottom: 30px;
}
.labels-container .label-wrap {
  align-items: center;
  display: grid;
  grid-column: 2;
  grid-template-columns: 2fr 90px 1fr;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 13.6px;
  font-weight: 600;
}
.text-right {
  text-align: right !important;
}
.grid-column-2 {
  grid-column: 2;
}
.subtotal-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-left: auto;
  width: 50%;
}
.cart-red {
  position: relative;
}
.cart-red::after {
  content: "";
  background-color: #ff4f33;
  border: 2px solid;
  border-color: #ffffff;
  border-radius: 50%;
  display: block;
  height: 10px;
  position: absolute;
  right: -4px;
  top: 0;
  width: 10px;
}

/* Footer CSS */

.footer {
  background: #bae4fc;
  padding-bottom: 40px;
  padding-top: 80px;
}
.footer-row {
  display: flex;
  justify-content: space-around;
}
.footer-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.footer-col p {
  font-weight: 200;
  font-size: 15px;
  color: #2c2c2c;
}
.footer-col p a {
  text-decoration: none;
  font-weight: 200;
  font-size: 15px;
  color: #2c2c2c;
}
.footer-copyright p {
  font-size: 12px;
  color: #2c2c2c;
  font-weight: 200;
  text-align: center;
  margin-top: 40px;
}

/* newcontainercss  */

.top-testimonials-container {
  margin: 100px 0;
}

.top-testimonials-container h2 {
  font-size: 30px;
  width: 1220px;
  margin: 0 auto 30px;
}

.testimonials-container {
  width: 1220px;
  margin: 0 auto;
  padding: 10px;
  background: linear-gradient(to bottom right, #effafd, #d3f2f6);
  border-radius: 12px;
  text-align: center;
}

.testimonials-carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 20px;
  padding-bottom: 20px;
  -webkit-overflow-scrolling: touch;
}

.testimonial-card {
  flex: 0 0 300px;
  scroll-snap-align: start;
  border-radius: 8px;
  overflow: hidden;
}

.testimonial-image {
  height: 542px;
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.verified-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  font-size: 0.9em;
  color: #2563eb;
  font-weight: bold;
}

.verified-badge .verified-icon {
  width: 16px;
  height: 16px;
  margin-right: 5px;
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #6b7280;
  cursor: pointer;
}

.indicator.active {
  background-color: #2563eb;
}

/* newcontainercss  */

/*  Modal CSS  */

/* Overlay background */
#promoOverlay {
  display: none; /* Hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

#promoModal {
  position: relative;
  background: white;
  max-width: 780px;
  margin: auto;
  padding: 40px 50px;
  border-radius: 8px;
  text-align: center;
  font-family: sans-serif;
  transition: all 0.3s ease-in-out;
  transform: scale(1);
  box-shadow: 0 10px 24px 0 rgba(54, 61, 77, 0.15);
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 24px;
  width: 11px;
  cursor: pointer;
  transition: transform 300ms, opacity 200ms;
  opacity: 0.5;
}
.modal-close:hover {
  transform: rotate(90deg);
  opacity: 1;
}

/* Modal content styles */
#promoModal h2 {
  font-size: 20px;
  margin-bottom: 10px;
  font-style: italic;
  font-weight: 900;
}

#promoModal .sub-heading {
  margin-top: 10px;
  font-size: 24px;
  font-weight: 700;
  color: #444;
}

#promoModal .highlight {
  font-weight: bold;
  font-size: 24px;
}
.modal-product-img {
  width: 100px;
  margin: 10px 0;
}

#promoModal a {
  margin-top: 20px;
  background-color: #00c232;
  color: white;
  border: none;
  padding: 15px 25px;
  font-size: 24px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  display: block;
  text-decoration: none;
}

#promoModal a:hover {
  background-color: #00a52b;
}
.w-100 {
  width: 100%;
}

/* Checkout CSS */

.checkout-section {
  overflow: hidden;
}

.checkout-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1070px;
  margin: 0 auto;
  padding: 0 20px;
}

.form-section,
.summary-section {
  padding: 20px;
}

.form-section {
  flex: 1.3;
  border-right: 1px solid #ccc;
  padding-right: 6%;
}

.summary-section {
  position: relative;
  flex: 1;
  padding-left: 4%;
}
.summary-section::after {
  content: "";
  display: block;
  width: 200%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  background: #fafafa;
  z-index: -1;
  -webkit-box-shadow: 0 -1px 0 #e1e1e1 inset;
  box-shadow: 0 -1px 0 #e1e1e1 inset;
}
.step-heading {
  font-size: 22px;
  color: #433a3a;
  margin: 30px 0 0;
}

.input-group {
  margin: 30px 0;
}
.discount-code {
  display: flex;
  gap: 15px;
  padding: 30px 50px;
  align-items: center;
  justify-content: center;
  border-top: 1px solid #ececec;
  border-bottom: 1px solid #ececec;
}
.discount-code .btn {
  background-color: #c8c8c8;
  color: #fff;
  padding: 10px 18px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  line-height: 24px;
}
.input-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 5px;
  font-size: 17px;
  color: #545454;
}

.select-fields-wrap {
  display: grid;
  gap: 15px;
  grid-template-columns: 1fr 1fr 1fr;
}
.select-fields-wrap .input-group {
  margin: 0;
}
.select-fields-wrap select {
  color: #545454;
  padding-right: 15px;
}
.truck-img {
  width: 20px;
  margin-left: auto;
}
.input-group input,
.input-group select {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 18px;
  font-size: 16px;
  font-weight: 400;
  border: 1px solid #ced4da;
  border-radius: 5px;
}

.summary-box {
  padding-top: 100px;
}

.summary-box img {
  max-width: 80px;
  margin-right: 10px;
}

.product {
  display: grid;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  gap: 20px;
  grid-template-columns: 1fr 2.4fr 1fr;
}
.product p {
  color: #545454;
  font-weight: 200;
  font-size: 14px;
}
.product-img{
  position: relative;
}
.product-count{
  position: absolute;
  top: 0;
  border-radius: 50%;
  width: 15px;
  height: 15px;
  padding: 8px;
  color: #fff;
  background: #666666;
  text-align: center;
  right: -10px;
  z-index: 1;
  font-size: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.totals {
  margin-top: 20px;
}

.totals div {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}
.totals div span {
  font-weight: 500;
  font-size: 14px;
  color: #545454;
  font-family: "apple-system", "BlinkMacSystemFont", "Segoe UI", "Roboto",
    "Helvetica", "Arial", "sans-serif", "Apple Color Emoji", "Segoe UI Emoji",
    "Segoe UI Symbol", "sans-serif" !important;
}
.totals hr {
  background-color: #ececec;
  height: 1px;
  border: none;
  margin: 15px 0;
}
.totals #total {
  font-size: 18px;
  font-weight: 600;
}

.countdown {
  background: #ecf9f0;
  color: #333;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
#countdown {
  font-weight: 600;
}

.complete-btn {
  border-radius: 4px;
  background: #14c740;
  color: #fff;
  border: none;
  cursor: pointer;
  width: 100%;
  max-width: 300px;
  padding: 1.25em 1.75em;
  font-size: 20px;
  margin: 20px 0;
  font-weight: 600;
}

.outlet-img {
  width: 230px;
  display: flex;
  margin: auto;
  margin-bottom: 40px;
}

.payment-container {
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  padding: 15px;
  box-sizing: border-box;
  background-color: #fafafa;
}

.payment-container h2 {
  margin: 0;
  font-size: 20px;
  font-weight: bold;
}

.payment-container p {
  font-size: 14px;
}

.icons {
  margin-bottom: 12px;
}

.icons img {
  height: 24px;
  margin-right: 4px;
  vertical-align: middle;
}

.payment-container label {
  display: block;
  margin: 8px 0 8px;
  font-size: 14px;
  color: #545454 !important;
  text-align: center;
}

.payment-container input {
  font-size: 18px;
  padding: 15px;
  height: 45px;
  width: 100%;
  border-radius: 5px;
  border: 1px solid #ced4da;
  box-sizing: border-box;
  outline: none;
}
.terms-condition {
  margin: 20px 0;
  color: #545454;
}
.terms-condition a {
  color: #05547c;
  text-decoration: none;
  font-weight: 200;
}
.pay-with-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
}
.pay-with-wrap input {
  width: 20px;
  height: 20px;
  accent-color: #000;
}
.pay-with-wrap > div {
  display: flex;
  align-items: center;
  gap: 10px;
}
.green-text {
  color: #267c07;
  font-size: 14px;
}
.shipping-component {
  border: 1px solid rgb(217, 217, 217);
  border-radius: 5px;
  padding: 0 15px;
}
.form-check {
  margin: 20px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.form-check input {
  accent-color: #000;
  width: 25px;
  height: 25px;
}
.card-number {
  background: url("./images/padlock.png") no-repeat center right 12px;
  background-size: 12px;
}
.footer-logos {
  border-top: 1px solid #ccc;
  padding: 20px 0;
  display: flex;
  justify-content: center;
}
.footer-logos img {
  width: 250px;
}
.secure-payment-lock {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  align-items: center;
}
.secure-payment-lock span {
  margin-left: 7px;
  color: #6b6b6b !important;
  font: 14px;
}
.secure-payment-lock svg {
  margin-bottom: 2px;
}
.billingadd input {
  height: 13px;
  width: 13px;
  margin: 0;
}

.billingadd {
  display: flex;
  margin-top: 15px;
  align-items: center;
}
.billingadd span {
  margin-left: 10px;
  color: #545454 !important;
  font: 14px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
  .cart-section .container {
    width: auto;
  }
  header {
    padding: 15px 0;
  }
  .logo {
    flex: 0 0 100px;
  }
  .logo img {
    max-width: 100px;
  }
  .nav-icons {
    gap: 10px;
  }
  .subtotal-wrap {
    width: 100%;
  }
  .labels-container {
    display: none;
  }
  .cart-row {
    grid-gap: 20px;
    grid-template-columns: 90px 1fr;
  }
  .cart-product {
    grid-column: 2;
    grid-template-columns: 90px 1fr;
  }
  .product-name {
    grid-column: 1 / span 2;
  }
  .cart-section {
    padding: 25px 0;
  }
  .account-link {
    display: none;
  }
  .footer {
    padding-top: 40px;
  }
  .footer .container {
    width: auto;
  }
  .footer-row {
    flex-direction: column;
    gap: 20px;
  }
  .banner-content {
    flex-direction: column;
  }
  .feature-row img {
    width: 100%;
  }
  .feature-row {
    gap: 20px;
    flex-direction: column;
    margin: 30px 0;
    padding: 0 30px;
  }
  .slider-container {
    max-width: 100%;
  }
  .product-info {
    padding-left: 0px;
    width: 100%;
  }
  .banner .container {
    width: auto;
  }
  .add-to-cart {
    width: auto;
  }
  .review-container {
    margin: 40px 20px;
  }
  .gray-reviews-box {
    width: auto;
    padding: 20px;
  }
  .modal-product-img {
    width: 200px;
  }
  #promoModal {
    margin: auto 10px;
  }

  .top-testimonials-container h2 {
    width: auto;
    padding: 0 20px;
  }
  .testimonials-container {
    width: auto;
  }
}

.thankyoucontainer {
  background-color: #f4f4f4;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  height: 100vh;
}

.message-container {
  background-color: #ffffff;
  padding: 60px 40px;
  width: 100%;
  max-width: 800px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  text-align: center;
  border-radius: 12px;
  box-sizing: border-box;
}

.message-container h1 {
  font-size: 28px;
  color: #2e7d32;
  margin-bottom: 30px;
}

.message-container p {
  font-size: 20px;
  color: #333333;
  line-height: 32px;
  margin: 20px 0;
}

.shoplink {
  color: #2e7d32;
  text-decoration: none;
}

.shoplink:hover {
  color: #000000;
  text-decoration: underline;
}

.scroller-container {
  display: none;
}
/* Responsive Styles */
@media (max-width: 768px) {
  .thankyoucontainer {
    padding: 10px;
  }
  .message-container {
    padding: 40px 20px;
  }

  .message-container h1 {
    font-size: 24px;
  }

  .message-container p {
    font-size: 18px;
    line-height: 28px;
  }
  .scroller-container {
    background-color: black;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    height: 37px;
    padding: 2px 0;
    display: block;
  }

  .scroller-track {
    display: inline-block;
    white-space: nowrap;
    animation: scroll-left 20s linear infinite;
  }

  .scroller-track img {
    height: 40px;
    margin: 0 30px;
    vertical-align: middle;
  }

  @keyframes scroll-left {
    0% {
      transform: translateX(0%);
    }
    100% {
      transform: translateX(-100%);
    }
  }

  .form-section {
    border-right: none;
    padding-right: 0;
    padding-left: 0;
  }
  .summary-box {
    padding-top: 0;
  }
  .complete-btn {
    max-width: 100%;
  }
  .select-fields-wrap {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .thankyoucontainer {
    padding: 10px;
  }
  .mes .message-container {
    padding: 30px 15px;
  }

  .message-container h1 {
    font-size: 22px;
  }

  .message-container p {
    font-size: 16px;
    line-height: 26px;
  }
}
