/* ***** fonts ***** */
@font-face {
  font-family: "baloo-bold";
  src: url("../font/Baloo_2/Baloo2-Bold.ttf");
}
@font-face {
  font-family: "baloo-medium";
  src: url("../font/Baloo_2/Baloo2-Medium.ttf");
}
@font-face {
  font-family: "baloo-regular";
  src: url("../font/Baloo_2/Baloo2-Regular.ttf");
}
@font-face {
  font-family: "handwriting";
  src: url("../font/Charm/Charm-Regular.ttf");
}
@font-face {
  font-family: "logo";
  src: url("../font/Coiny/Coiny-Regular.ttf");
}
body {
  overflow-x: hidden;
}
/* root declarations */
:root {
  --sidebar-width: 280px;
  --side-transition: transform 300ms ease-out;
}

.sidebar {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  width: var(--sidebar-width);
  background: #fff;
  /* start off‑screen to the right */
  transform: translateX(100%);
  transition: var(--side-transition);
  will-change: transform;
  /* prevent the sidebar itself from scrolling away */
  overflow-y: auto;
  z-index: 1000;
}

/* when open, slide into view */
.sidebar.open {
  transform: translateX(0);
}

/* optional overlay to dim page */
#page-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms ease-out;
}
#page-overlay.visible {
  opacity: 1;
  pointer-events: all;
}

/* ***** common ***** */
html {
  scroll-behavior: smooth;
}

* {
  font-family: "baloo-regular";
}
.navigation {
  background-color: #95274e;
  width: 100vw;
  height: 5rem;
  padding-left: 2rem;
  padding-right: 2rem;
  a {
    color: #fff;
  }
}
.badge-brown {
  background-color: #95274e;
  color: #fff;
}
.section-title {
  text-align: center;
  font-family: "baloo-bold";
  color: #95274e;
  margin-bottom: 50px;
}
#space-banner {
  height: 9vh;
  /* position: ; */
}
body {
  background-image: url("../images/background-main.svg");
  /* ba */
  /* background-size: cover;
  background-position: center;  */
}
/* ***** navigation ***** */
.icon-light {
  color: #000;
  -webkit-text-stroke: 0.6px #edeee8;
  -moz-text-stroke: 0.6px #edeee8;
  -ms-text-stroke: 0.6px #edeee8;
  font-size: 1.2rem;
  vertical-align: middle;
}
.icon-light-white {
  color: #000;
  -webkit-text-stroke: 0.6px #fff;
  -moz-text-stroke: 0.6px #fff;
  -ms-text-stroke: 0.6px #fff;
  font-size: 1.1rem;
}
.btn-cart .icon-light {
  font-size: 1.4rem;
}
.menu {
  padding-top: 15px;
  padding-bottom: 15px;
}
.affix {
  padding-top: 5px;
  padding-bottom: 5px;
  background-color: #fff;
  box-shadow: 0 8px 4px -6px #ddd;
  transition: 0.3s ease;
}
.menu .navbar-brand,
.menu .navbar-brand span {
  font-family: "logo";
  font-weight: bold;
  font-size: clamp(1.3rem, 100%, 1.6rem);
  letter-spacing: 2px;
  color: #fff;
}
.fa-search {
  color: white;
}
.navbar {
  background-color: #95274e;
  padding-left: 2rem;
}
.menu .navbar-brand {
  background: #fff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.menu .nav-link {
  font-size: 1.1rem;
  margin-right: 20px;
  color: #fff;
  font-family: "baloo-medium";
  position: relative;
}
.menu .nav-link:after {
  content: "";
  position: absolute;
  height: 2px;
  width: 100%;
  left: 0;
  bottom: 0;
  visibility: hidden;
  background-color: #fff;
  -webkit-transition: all 0.1s ease;
  transition: all 0.3s ease;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
}
.menu .active .nav-link:after {
  content: "";
  position: absolute;
  height: 2px;
  width: 100%;
  left: 0;
  bottom: 0;
  visibility: visible;
  background-color: #95274e;
  transform: scaleX(1);
}
.menu .nav-link:hover:after {
  visibility: visible;
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
}
.menu #searchbox,
.menu #searchbox:focus {
  border: 0;
  outline: 0;
  border-bottom: 1px solid #4e2a14;
}
.menu .btn-search:focus {
  box-shadow: none;
}

/* ***** navigation - animated toggle [ref: https://codepen.io/dicson/pen/waKPgQ] ***** */
.animate-toggler {
  border: none;
  outline: none;
  background-color: transparent;
  cursor: pointer;
  width: 40px;
  height: 26px;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.animate-toggler i {
  background-color: #fff;
  border-radius: 2px;
  content: "";
  display: block;
  width: 100%;
  height: 4px;
}
.animate-toggler i:nth-child(1) {
  -webkit-animation: outT 0.8s backwards;
  animation: outT 0.8s backwards;
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}
.animate-toggler i:nth-child(2) {
  margin: 5px 0;
  -webkit-animation: outM 0.8s backwards;
  animation: outM 0.8s backwards;
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}
.animate-toggler i:nth-child(3) {
  -webkit-animation: outBtm 0.8s backwards;
  animation: outBtm 0.8s backwards;
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}
.animate-toggler.active i:nth-child(1) {
  -webkit-animation: inT 0.8s forwards;
  animation: inT 0.8s forwards;
}
.animate-toggler.active i:nth-child(2) {
  -webkit-animation: inM 0.8s forwards;
  animation: inM 0.8s forwards;
}
.animate-toggler.active i:nth-child(3) {
  -webkit-animation: inBtm 0.8s forwards;
  animation: inBtm 0.8s forwards;
}

@-webkit-keyframes inM {
  50% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(45deg);
  }
}
@keyframes inM {
  50% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(45deg);
  }
}

@-webkit-keyframes outM {
  50% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(45deg);
  }
}
@keyframes outM {
  50% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(45deg);
  }
}

@-webkit-keyframes inT {
  0% {
    -webkit-transform: translateY(0px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(9px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(9px) rotate(135deg);
  }
}
@keyframes inT {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(9px) rotate(0deg);
  }
  100% {
    transform: translateY(9px) rotate(135deg);
  }
}

@-webkit-keyframes outT {
  0% {
    -webkit-transform: translateY(0px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(9px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(9px) rotate(135deg);
  }
}
@keyframes outT {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(9px) rotate(0deg);
  }
  100% {
    transform: translateY(9px) rotate(135deg);
  }
}

@-webkit-keyframes inBtm {
  0% {
    -webkit-transform: translateY(0px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(-9px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(-9px) rotate(135deg);
  }
}
@keyframes inBtm {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-9px) rotate(0deg);
  }
  100% {
    transform: translateY(-9px) rotate(135deg);
  }
}

@-webkit-keyframes outBtm {
  0% {
    -webkit-transform: translateY(0px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(-9px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(-9px) rotate(135deg);
  }
}
@keyframes outBtm {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-9px) rotate(0deg);
  }
  100% {
    transform: translateY(-9px) rotate(135deg);
  }
}

/* ***** banner ***** */
#banner {
  min-height: -webkit-fill-available;
  background-image: url("../images/background.svg");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 0 2rem 0 2rem;
}
#banner h1,
#banner .text-fresh {
  margin-top: 40%;
  font-family: "baloo-bold";
  font-size: 3rem;
  color: #95274e;
  margin-bottom: 7%;
  text-transform: uppercase;
}
#banner .text-fresh {
  overflow: hidden;
  background: linear-gradient(to right, #ae303f, #b43241 50%, #95274e 50%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 100%;
  background-position: 100%;
  transition: background-position 275ms ease;
}
#banner h1:hover .text-fresh {
  background-position: 0 100%;
}
.logo-and-drpdwn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* width: 100%;
   */
  width: min-content;
}
#banner .text-outline-white {
  color: #fff;
  -webkit-text-stroke: 1.2px #95274e;
  -moz-text-stroke: 1.2px #95274e;
  -ms-text-stroke: 1.2px #95274e;
}
@-webkit-keyframes shine {
  100% {
    left: 100%;
  }
}
@keyframes shine {
  100% {
    left: 100%;
  }
}
#banner img {
  width: 100%;
  margin-top: 20%;
  cursor: pointer;
}
.btn-brown {
  background-color: #fff;
  color: #8e0d00;
  padding: 10px 30px;
  border: 1px solid #8e0e00;
}
.btn-brown:hover i {
  transform: translateX(50%);
  transition: all 0.3s ease;
}
#banner .social-media,
#banner .social-media a {
  margin-top: 15%;
  color: #996259;
}

/* ***** Overview from home page ***** */
#about .about-heading {
  font-weight: bold;
  background: -webkit-linear-gradient(#8e0e00, #783a14);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
#about p {
  line-height: 2rem;
}
#about ul,
#about-us ul {
  padding: 0;
  margin: 0;
}
#about ul li,
#about-us ul li {
  list-style-type: none;
  margin-bottom: 14px;
}
#about ul li span,
#about-us ul li span {
  color: #8e0e00;
  margin-right: 10px;
}
#about .btn-brown {
  padding: 7px 30px;
}
/* -- about image animation -- */
#about .img-wrap {
  position: relative;
  img {
    filter: blur(2px);
  }
}

#about .img-wrap:before {
  background-color: rgba(0, 0, 0, 0.05);
  bottom: 0;
  content: "";
  display: block;
  position: absolute;
  top: 0;
  width: 100%;
}
#about .img-wrap:hover .slider-top-right::after,
#about .img-wrap:hover .slider-top-right::before {
  background: #a10101;
}
#about .img-wrap:hover .inner-block:before,
#about .img-wrap:hover .slider-top-right:after {
  height: 100%;
  background: #a10101;
}
#about .img-wrap:hover .inner-block:after,
#about .img-wrap:hover .slider-top-right:before {
  width: 100%;
  background: #a10101;
}
#about .img-wrap img {
  display: block;
  max-width: 100%;
}
.about-heading {
  background: url("../images/products/bg.svg");
}
#carouselExampleSlidesOnly {
  img {
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
  }
}
.slider-top-right:before,
.inner-block:after {
  height: 4px;
  transition: width 0.75s ease;
  width: 0%;
}
.slider-top-right:after,
.inner-block:before {
  height: 0%;
  transition: height 0.75s ease;
  width: 4px;
}
.inner-block:before,
.inner-block:after,
.slider-top-right:before,
.slider-top-right:after {
  background-color: #fff;
  content: "";
  display: block;
  position: absolute;
}
.inner-block {
  font-size: 2em;
  width: 90%;
  height: 90%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.inner-block:before {
  bottom: 0;
  left: 0;
}
.inner-block:after {
  bottom: 0;
  right: 0;
}
.block-content {
  position: absolute;
  top: 10%;
  left: 10%;
  padding: 0 1rem;
  color: #a10101;
  display: none;
}
.block-content h2 {
  font-family: "Kranky", sans-serif;
  font-weight: bold;
  font-style: normal !important;
}
.slider-top-right {
  position: relative;
  width: 100%;
  height: 100%;
}
.slider-top-right:before {
  top: 0;
  left: 0;
}
.slider-top-right:after {
  top: 0;
  right: 0;
}
#about .img-wrap:hover .block-content {
  display: block;
}

/* ***** products ***** */
#products .owl-carousel .item {
  padding-right: 10px;
  padding-left: 10px;
}
#products .owl-carousel .item h5,
#newarrival .div-explanation h5,
#bakers h5,
#review h5,
#about-us h3,
#contact h5,
#product-list h5,
#checkout h5 {
  color: #333;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 1.15em;
  margin-bottom: 15px;
}
#products .owl-carousel .item p,
#bakers p,
#product-list .item p {
  letter-spacing: 2px;
  margin-bottom: 5px;
}
#products .owl-carousel .item .img-wrap,
#product-list .img-wrap {
  position: relative;
}
#products .owl-carousel .item .img-wrap .btn-addtocart d-none,
#product-list .img-wrap .btn-addtocart d-none {
  background-color: var(--primary-color);
  border: none;
  color: white;
  padding: 10px 25px;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(60px);
  opacity: 0;
  white-space: nowrap;
  cursor: pointer;
}
#products .owl-carousel .item:hover .btn-addtocart d-none,
#product-list .item:hover .btn-addtocart d-none {
  opacity: 1;
  transition: all 0.5s ease;
}
#products .review,
#product-list .review {
  font-size: 0.8em;
  color: #95274e;
}
#products .owl-carousel .item .img-wrap .btn-addtocart d-none:hover,
#product-list .item .img-wrap .btn-addtocart d-none:hover {
  background: #333 radial-gradient(circle, transparent 1%, #333 1%)
    center/15000%;
}
#products .owl-carousel .item .img-wrap .btn-addtocart d-none:active,
#product-list .item .img-wrap .btn-addtocart d-none:active {
  background-color: #999;
  background-size: 100%;
  transition: background 0s;
}
#products .owl-nav {
  margin-top: 20px;
  text-align: center;
}
#products .owl-nav button.owl-prev,
#products .owl-nav button.owl-next {
  background-color: #f9f9f9;
  padding: 5px 20px !important;
  margin-right: 5px;
  margin-left: 5px;
  font-size: 1.5em;
  color: #333;
}
#products .owl-nav button.owl-prev:active,
#products .owl-nav button.owl-next:active {
  outline-color: #333 !important;
}

/* ***** newarrival ***** */
#newarrival {
  background-color: rgba(237, 238, 232, 0.5);
}
#newarrival .nav .nav-link {
  background-color: #fff;
  border-radius: 100%;
  margin-bottom: 30px;
  width: 85%;
  margin-right: auto;
  margin-left: auto;
  border: 10px solid rgba(237, 238, 232, 0.5);
  box-shadow: 0 0 0 2px rgba(237, 238, 232, 0.5);
}
#newarrival .nav .active {
  box-shadow: 0 0 0 2px #4e2a14;
  transition: 0.2s ease;
}
#newarrival .div-explanation {
  position: relative;
  border: 8px solid #f1f1f1;
  box-shadow: 0 0 0 2px rgba(237, 238, 232, 0.5);
}
#newarrival .col-image1 {
  background-image: url("../images/products/n1.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
#newarrival .col-image2 {
  background-image: url("../images/products/n2.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
#newarrival .col-image3 {
  background-image: url("../images/products/n3.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
#newarrival .price {
  font-size: 1.7em;
  font-weight: bolder;
  background: -webkit-linear-gradient(#8e0e00, #783a14);
  background: linear-gradient(#8e0e00, #783a14);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
#newarrival .div-explanation .ribbon {
  line-height: 0.8em;
  font-size: 2em;
  text-transform: uppercase;
  text-align: center;
  font-weight: bold;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.15);
  display: block;
  width: 6rem;
  height: 4rem;
  background-color: #95274e;
  color: white;
  position: absolute;
  padding-top: 0.8em;
  top: 3px;
  right: 30px;
  -webkit-filter: drop-shadow(0 0.5rem 0.3em rgba(0, 0, 0, 0.2));
  transform: translate3d(0, 0, 0);
}
#newarrival .div-explanation .ribbon:after {
  content: "";
  width: 0;
  height: 0;
  border-right: 3rem solid transparent;
  border-left: 3rem solid transparent;
  border-top: 1.5rem solid #95274e;
  position: absolute;
  top: 4rem;
  left: 0;
}

/* ***** bakers ***** */
#bakers .img-wrap {
  background-color: #fff;
  width: 80%;
  border: 5px solid #f1f1f1;
  position: relative;
  transition: all 0.4s ease-in-out 0s;
}
#bakers .img-wrap:after,
#bakers .img-wrap:before {
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transform: scale(0);
  transition: all 0.4s ease-in-out 0s;
  width: 100%;
  z-index: 3;
}
#bakers .img-wrap:before {
  border-bottom: 2px solid rgba(255, 204, 92, 0.7);
  border-left: 2px solid rgba(255, 204, 92, 0.7);
  transform-origin: 0 100% 0;
}

#bakers .img-wrap:after {
  border-right: 2px solid rgba(255, 204, 92, 0.7);
  border-top: 2px solid rgba(255, 204, 92, 0.7);
  transform-origin: 100% 0 0;
}
#bakers .img-wrap:hover {
  border: 5px solid rgba(255, 204, 92, 0.7);
}
#bakers .img-wrap:hover::after,
#bakers .img-wrap:hover::before {
  transform: scale(1);
}
#bakers .social-media {
  color: #f1f1f1;
}
#bakers .social-media a {
  color: #444;
}
#bakers .social-media a:hover {
  text-decoration: none;
  color: #95274e;
}

/* ***** reviews ***** */
#review {
  background-image: url("../images/illustration.svg");
  background-repeat: no-repeat;
  /* background-position: ter; */
  background-size: cover;
}
#review h4 {
  color: #444;
  font-size: 1.8rem;
  line-height: 3rem;
  font-family: "handwriting";
}
#review h4 i {
  color: #bbb;
  font-style: italic;
}
#review .review {
  color: #ffc547;
}
#review .people .img {
  width: 90px;
  height: 90px;
  margin-right: auto;
  margin-left: auto;
  border: 2px solid #edeee8;
  box-shadow: 0 0 0 7px rgba(0, 0, 0, 0.1);
}
#review .people .image1 {
  background-image: url("../images/r1.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
#review .people .image2 {
  background-image: url("../images/r2.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
#review .people .image3 {
  background-image: url("../images/r3.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

/* ***** faq ***** */
#faq .card-header {
  padding: 0;
  background: #fff;
  border-left: 4px solid #95274e;
  border-bottom: 1px dotted rgba(0, 0, 0, 0.125);
}
#faq .card-header button {
  padding: 15px 20px;
  position: relative;
  font-size: 1.3rem;
}
#faq .card-header button:active,
#faq .card-header button:focus {
  outline: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
#faq button span {
  position: absolute;
  top: 18px;
  right: 20px;
}
#faq .card-body {
  font-size: 1.2rem;
}
.arrow1,
.arrow2,
.arrow3,
.arrow4 {
  -moz-transition: all 0.5s linear;
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
}
.arrow1.down,
.arrow2.down,
.arrow3.down,
.arrow4.down {
  -moz-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

/* Footer background and text styling */
footer {
  background: url("../images/footer-bg.svg") no-repeat;
  background-size: cover;
  background-position: center;
  bottom: 0;
  background-color: #95274e; /* Footer background color */
  color: #fff;
  position: relative;
  /* border-top: 3px solid #95274e; */
}

/* Title and subtitle styling */
footer h3 {
  font-family: "handwriting", sans-serif;
  letter-spacing: 1.5px;
  color: #ddd;
}

/* Horizontal divider line */
footer hr {
  border: 0.5px solid #95274e;
  width: 15%;
  margin: 30px auto;
  background-color: #95274e;
}

/* Styling for Address, Opening Hours, Company, bakers, Support */
footer h4 {
  text-transform: uppercase;
  color: #fff;
  font-weight: bold;
  font-size: 1.2em;
  letter-spacing: 1px;
  margin-top: 10px;
  margin-bottom: 20px;
}

footer p,
footer .opening-hour {
  color: #ddd;
}

footer .footer-ul {
  padding-left: 0;
  list-style: none;
}

footer .footer-ul li {
  margin-bottom: 10px;
}

footer .footer-ul a {
  color: #fff;
  text-decoration: none;
}

footer .footer-ul a:hover {
  color: #ffc008;
}

/* Social Media Icons Styling */
footer .social-media a {
  color: #fff;
  margin-right: 15px;
  font-size: 24px;
}

footer .social-media a:hover {
  color: #ffc008;
}

/* Facebook iframe styling */
footer .bread-shaped-container {
  background-color: #942f3b;
  height: 400px;
  border-radius: 15px;
  overflow: hidden;
  margin: 0 auto;
  padding: 10px 0px;
}

footer .bread-shaped-container iframe {
  width: 400px;
  height: 100%;
}

/* Footer Copyright Section */
.div-footer {
  /* background-color: #95274e; */
  color: #ccc;
  font-style: italic;
  font-size: 0.9em;
}

/* Opening hours layout */
footer .opening-hour .row {
  margin-bottom: 5px;
}

footer .opening-hour .col-5 {
  font-weight: bold;
}

footer .opening-hour .col-7 {
  text-align: right;
}
.navbar-expand-lg {
  align-items: center;
}
/* Responsive Design */
@media (max-width: 768px) {
  .logo-and-drpdwn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 95vw;

    /* width: min-content; */
  }
  footer .container-fluid {
    padding-left: 10px;
    padding-right: 10px;
  }
  .navbar {
    /* padding-left: 1rem; */
    justify-content: center;
  }
  footer .col-md-4 {
    text-align: center;
  }

  footer .bread-shaped-container {
    height: 250px;
  }

  footer .btn-light {
    margin-top: 10px;
  }

  footer .social-media {
    text-align: center;
    margin-top: 20px;
  }
}
/* ***** log in modal ***** */
#loginModal .nav-pills .nav-link.active {
  background-color: #edeee8;
  color: #212529;
}
#loginModal .nav-pills .nav-link {
  color: #212529;
}

#custom-form .group {
  position: relative;
  margin-top: 40px;
  margin-bottom: 40px;
  width: 100%;
}
#custom-form input {
  font-size: 16px;
  padding: 10px 10px 10px 5px;
  display: block;
  border: none;
  border-bottom: 1px solid #999;
  width: 100%;
}
#custom-form input:focus {
  outline: none;
}
#custom-form label {
  color: #ccc;
  font-size: 16px;
  font-weight: normal;
  position: absolute;
  pointer-events: none;
  left: 5px;
  top: 10px;
  transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all;
}
#custom-form input:focus ~ label,
#custom-form input:valid ~ label {
  top: -20px;
  font-size: 14px;
  color: #212529;
}
#custom-form .bar {
  position: relative;
  display: block;
  width: 100%;
}
#custom-form .bar:before,
#custom-form .bar:after {
  content: "";
  height: 2px;
  width: 0;
  bottom: 1px;
  position: absolute;
  background: #555;
  transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all;
}
#custom-form .bar:before {
  left: 50%;
}
#custom-form .bar:after {
  right: 50%;
}
#custom-form input:focus ~ .bar:before,
#custom-form input:focus ~ .bar:after {
  width: 50%;
}
#custom-form .highlight {
  position: absolute;
  height: 60%;
  width: 100px;
  top: 25%;
  left: 0;
  pointer-events: none;
  opacity: 0.5;
}
#custom-form input:focus ~ .highlight {
  -webkit-animation: inputHighlighter 0.3s ease;
  -moz-animation: inputHighlighter 0.3s ease;
  animation: inputHighlighter 0.3s ease;
}
#custom-form .btn-facebook {
  color: #3b5998;
}
#custom-form .btn-google {
  color: #db3236;
}

/* ANIMATIONS ================ */
@-webkit-keyframes inputHighlighter {
  from {
    background: #555;
  }
  to {
    width: 0;
    background: transparent;
  }
}
@-moz-keyframes inputHighlighter {
  from {
    background: #555;
  }
  to {
    width: 0;
    background: transparent;
  }
}
@keyframes inputHighlighter {
  from {
    background: #555;
  }
  to {
    width: 0;
    background: transparent;
  }
}

/* ***** contact ***** */
#contact a:hover {
  color: #95274e !important;
  transition: 0.3s;
  text-decoration: none;
}

/* ***** product list ***** */
#product-list .list-group a {
  color: #222;
}
#product-list .list-group a.active {
  color: #95274e;
}
#amount:focus,
#amount:active {
  box-shadow: none;
  outline: 0;
  border: 0;
}

.contact-top-section {
  width: 100%;
  background-color: #f5eae4;
  min-height: 20vh;
}

@media (min-width: 1080px) {
  #banner {
    min-height: 80vh;
  }
  .product-prooo {
    padding: 0 5rem;
  }
}
/* ***** for responsive ***** */

/* -- tablet -- */

@media (max-width: 1024px) {
  #products .owl-carousel .item .img-wrap .btn-addtocart d-none,
  #product-list .item .img-wrap .btn-addtocart d-none {
    opacity: 1;
    bottom: -25px;
  }
  #products .owl-carousel .item h5,
  #product-list .item h5 {
    margin-top: 45px;
    font-size: 1em;
  }
}

@media (max-width: 991px) {
  #myNav {
    background-color: #fff;
    border-radius: 0.8rem;
    text-align: center;
    box-shadow: 0 0 12px 4px #ffffff6e;
    margin-top: 1.5rem;
    width: 100%;
    border: 2px solid red;
    background-color: #ffffff30;
    backdrop-filter: blur(15px);
  }
  #myNav .navbar-text {
    width: 100%;
  }
  #myNav .btn-login {
    display: block;
    width: 100%;
    margin: 30px 0 30px;
  }
  #myNav .nav-link {
    padding-top: 30px;
    padding-bottom: 10px;
    margin-bottom: 20px;
    color: #000;
    margin: 0;
  }

  .menu #searchbox {
    width: 90%;
  }

  #banner h1,
  #banner .text-fresh {
    font-size: 2.4rem;
    line-height: 3rem;
    margin-top: 50%;
  }
  #banner img {
    margin-top: 35%;
  }

  #about .img-wrap:before,
  #about .img-wrap:hover .inner-block:after,
  #about .img-wrap:hover .slider-top-right:before {
    width: 70%;
    margin-left: 15%;
    margin-right: 15%;
  }
  #about img {
    margin-bottom: 45px;
    margin-top: 30px;
    width: 70%;
    margin-left: 15%;
  }

  #newarrival .div-explanation .ribbon {
    line-height: 0.6em;
    font-size: 1.2em;
    width: 4rem;
    height: 2rem;
    padding-top: 0.5em;
    right: 10px;
  }
  #newarrival .div-explanation .ribbon:after {
    border-right: 2rem solid transparent;
    border-left: 2rem solid transparent;
    border-top: 1rem solid #95274e;
    top: 2rem;
  }

  #bakers .img-wrap {
    width: 90%;
  }
}

/* -- phone -- */
@media (max-width: 768px) {
  #banner h1,
  #banner .text-fresh {
    font-size: 2rem;
    margin-top: 40%;
  }
  #banner .social-media {
    margin-top: 10%;
    color: #996259;
  }
  #banner img {
    margin-top: 20%;
    margin-left: auto;
    width: 70%;
  }
  #banner {
    background-image: url("../images/background.svg");
    background-repeat: no-repeat;
    background-size: cover;
  }
  #myNav ul li a,
  #myNav .navbar-text {
    color: #333 !important;
    margin-bottom: 0px !important;
    padding-top: 10px !important;
  }
  #myNav .navbar-text {
    display: none;
  }

  #about .btn-brown {
    width: 60%;
    display: block;
    margin: 30px auto 5px;
  }

  #newarrival .btn-brown {
    width: 100%;
    margin-left: 0 !important;
    display: block;
    margin-top: 30px;
  }
  #newarrival .nav .nav-link {
    width: 100%;
  }

  #review h4 {
    font-size: 1.3rem;
    line-height: 2rem;
  }
  #review .review {
    font-size: 0.8rem;
  }
  #review .people .img {
    width: 75px;
    height: 75px;
  }
}

@media (max-width: 400px) {
  .btn-brown {
    padding: 6px 20px;
  }
}
:root {
  --primary-color: #95274e;
  --secondary-color: #f6a2a4;
  --light-bg: #f5f5f0;
  --card-bg: #f9f9f9;
}

.section-title {
  color: var(--primary-color);
  font-weight: 300;
  font-size: 2.5rem;
  margin-bottom: 50px;
  text-align: center;
}

.item {
  /* background-color: var(--card-bg);
  border-radius: 15px;
  padding: 20px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
  border: 1px solid #db323533;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  min-height: 400px;
  display: flex;
  flex-direction: column;
  position: relative; */
}

.item:hover {
  /* transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1); */
}

.img-wrap {
  text-align: center;
  margin-bottom: 25px;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.img-wrap img {
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.item:hover .img-wrap img {
  transform: scale(1.05);
}

.text-wrap {
  text-align: center;
  margin-top: auto;
}

.text-wrap h5 {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 10px;
  line-height: 1.4;
}

.text-wrap p {
  margin-bottom: 8px;
  color: #666;
  font-size: 0.9rem;
}

.text-center {
  color: var(--secondary-color);
  font-weight: bold;
  font-size: 1.2rem;
}

.review {
  color: #ffb400 !important;
  margin-bottom: 20px !important;
}

.btn-addtocart d-none {
  background-color: var(--primary-color);
  border: none;
  color: white;
  padding: 10px 25px;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(60px);
  opacity: 0;
  white-space: nowrap;
  cursor: pointer;
}

.item:hover .btn-addtocart d-none {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.btn-addtocart d-none:hover {
  background-color: var(--primary-color);
  transform: translateX(-50%) translateY(-2px) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.item:hover {
  .btn-addtocart d-none {
    background-color: var(--primary-color);
    transform: translateX(-50%) translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }
}

.btn.btn-outline-dark {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  padding: 12px 40px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn.btn-outline-dark:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Toast notification styles */
.toast-container {
  position: fixed;
  top: 90%;
  right: 20px;
  z-index: 1050;
  border-radius: 1rem;
  overflow: hidden;
  width: 27rem;
  height: 4rem;
}

.custom-toast {
  background-color: var(--secondary-color);
  color: white;
  border: none;
  border-radius: 1rem;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .section-title {
    font-size: 2.2rem;
    margin-bottom: 40px;
  }

  .item {
    min-height: 380px;
  }

  .img-wrap {
    height: 180px;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .item {
    padding: 15px;
    margin-bottom: 25px;
    min-height: 350px;
  }
  .img-wrap {
    height: 160px;
    margin-bottom: 20px;
  }

  .text-wrap h5 {
    font-size: 1rem;
  }

  .text-center {
    font-size: 1.1rem;
  }

  .btn-addtocart d-none {
    padding: 8px 20px;
    font-size: 0.9rem;
    bottom: 15px;
    transform: translateX(-50%) translateY(50px);
  }

  .item:hover .btn-addtocart d-none {
    transform: translateX(-50%) translateY(0);
  }

  .toast-container {
    width: calc(100% - 40px);
    right: 20px;
    left: 20px;
    height: auto;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 1.8rem;
    margin-bottom: 25px;
  }

  .item {
    padding: 12px;
    margin-bottom: 20px;
    min-height: 320px;
  }

  .img-wrap {
    height: 140px;
    margin-bottom: 15px;
  }

  .text-wrap h5 {
    font-size: 0.95rem;
    margin-bottom: 8px;
  }

  .text-wrap p {
    font-size: 0.85rem;
    margin-bottom: 6px;
  }

  .text-center {
    font-size: 1rem;
  }

  .btn-addtocart .d-none {
    padding: 8px 20px;
    font-size: 0.85rem;
    max-width: 180px;
  }

  .btn.btn-outline-dark {
    padding: 10px 30px;
    font-size: 0.9rem;
  }

  .toast-container {
    top: auto;
    bottom: 20px;
    width: calc(100% - 20px);
    right: 10px;
    left: 10px;
  }
}
/* Add this CSS for the carousel container */
.carousel-container {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch; /* For smooth scrolling on iOS */
  gap: 10px; /* Adjust the gap between items as needed */
  padding: 10px;
}

/* Add this CSS for each carousel item */
.carousel-item {
  flex: 0 0 auto;
  scroll-snap-align: start;
  /* Adjust the width as needed */
  width: 80%;
}

/* Ensure the carousel items are displayed correctly on mobile */
@media (max-width: 768px) {
  .carousel-item {
    width: 85%; /* Adjust the width for mobile devices */
  }
}

/* Hide scrollbar for a cleaner look (optional) */
.carousel-container::-webkit-scrollbar {
  display: none;
}

.carousel-container {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
