* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  background-color: #fff;
}

.container {
  width: 90%;
  margin: 0 auto;
}

.head-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.8rem;
  margin: 9.6rem 0 4.8rem 0;
}

.head-flex h2 {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: normal;
  font-size: 3.2rem;
  color: #00394b;
  text-align: center;
}

.head-flex .head-line {
  height: 0.3rem;
  background-color: #9b2847;
  width: 5%;
  border-radius: 0.2rem;
}

.top-header {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  background-color: #9b2847;
  font-weight: 300;
  color: #fff;
  letter-spacing: 0.1rem;
  padding: 0.6rem;
  font-size: 1.4rem;
}

.toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 100;
}

.toast {
  display: inline-block;
  background-color: #fff9ff;
  color: #9b2847;
  font-size: 1.6rem;
  padding: 1.2rem 2.4rem;
  border-radius: 2.4rem;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.3s, transform 0.3s;
  box-shadow: 0 0 3rem 0.5rem rgba(34, 34, 34, 0.1);
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
  margin: 0 1.2rem;
}

.toast:hover {
  background-color: #9b2847;
  color: #fff9ff;
}

.toast a:link,
.toast a:visited {
  color: #9b2847;
  text-decoration: none;
}

/* SEARCH AND SHOP LEFT SIDEBAR */

.shop-body {
  margin: 9.6rem 0;
}

.filter-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 4.8rem auto;
  padding: 0 2.4rem;
}

.filter-flex .filters .left-sidebar {
  padding: 2.4rem;
}

.filter-flex .filters .left-sidebar form h4 {
  font-size: 2.2rem;
  padding-bottom: 2.4rem;
  color: #00394b;
}

.filter-flex .filters .left-sidebar form .filter-input {
  display: flex;
  flex-direction: column;
  padding-bottom: 1.2rem;
  font-size: 1.6rem;
  color: #00394b;
}
.filter-flex .filters .left-sidebar form .filter-input input {
  padding: 0.6rem 1.2rem;
  border-radius: 0.6rem;
  outline: none;
  border: 1px solid #c1c1c1;
  transition: all 0.2s ease-in;
  background-color: #fff9ff;
  font-size: 1.6rem;
  font-weight: 500;
}
.filter-flex .filters .left-sidebar form .filter-input input:focus {
  border: 1px solid #9b2847;
}

.filter-flex .filters .left-sidebar form button {
  margin-top: 2.4rem;
  outline: none;
  border: none;
  padding: 1.2rem 2.4rem;
  border-radius: 5rem;
  font-size: 1.6rem;
  font-weight: 500;
  cursor: pointer;
  background-color: #cc9bc9;
  color: #fff;
  transition: all 0.2s ease-in;
}

.filter-flex .filters .left-sidebar form button:hover {
  box-shadow: inset 0 0 0px 2px #9b2847;
  background-color: #e6afe2;
  color: #222;
}

.filter-flex form select {
  padding: 1.2rem 2.4rem;
  border: 1px solid #7288a2;
  outline: none;
  border-radius: 0.6rem;
  cursor: pointer;
  color: #7288a2;
}

.filter-flex form select option {
  border: 1px solid #9b2847;
  padding: 1.2rem 2.4rem;
  outline: none;
}

.filter-flex form select option:hover {
  background-color: #9b2847 !important;
}

.left-sidebar {
  position: fixed;
  top: 0;
  left: -30rem;
  width: 30rem;
  height: 100%;
  background-color: #fff9ff;
  transform: translateX(-100%);
  box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.2);
  transition: left 0.3s ease;
  overflow-y: auto;
  transition: transform 0.3s ease;
}

.filter-button {
  background-color: #fff;
  color: #7288a2;
  border: none;
  padding: 1rem;
  cursor: pointer;
}

.filter-button:hover {
  color: #444;
}

/* Show the sidebar when it's open */
.left-sidebar.open {
  left: 0;
  transform: translateX(0);
  z-index: 9999;
}

/* Overlay styles */
.page-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 9999;
}

.page-overlay.active {
  display: block;
}

/* END SEARCH AND SHOP LEFT SIDEBAR */

/* NAVIGATION BAR */

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff9ff;
  box-shadow: 0 1.2rem 3.2rem rgba(0, 0, 0, 0.03);
  position: relative;
  z-index: 9999;
}

.mobile-bottom-navbar {
  display: none;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 62%;
}

.navbar-brand:link,
.navbar-brand:visited {
  color: #cc9bc9;
  text-decoration: none;
  transition: all 0.3s ease;
}

.navbar-brand:hover,
.navbar-brand:active {
  color: #9b2847;
}

.logo-font {
  font-size: 3.6rem;
  font-weight: 600;
  padding: 1.2rem 2.4rem;
  font-family: "Cedarville Cursive", cursive !important;
}

.navbar .nav-center ul {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style-type: none;
  gap: 4.8rem;
  font-size: 1.8rem;
  font-weight: 500;
}

.navbar .nav-center ul li a:link,
.navbar .nav-center ul li a:visited {
  display: inline-block;
  color: #cc9bc9;
  text-decoration: none;
  transition: all 0.3s ease-in;
}

.navbar .nav-center ul li a:hover,
.navbar .nav-center ul li a:active {
  color: #9b2847;
}

.navbar .nav-right {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.4rem;
}

.navbar .nav-right .nav-right-icons ul {
  list-style: none;
  display: flex;
  gap: 2.4rem;
}

.search-form-wrapper {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  width: 0;
  height: 100vh;
  background-color: #fff9ff;
  padding: 0;
  border: none;
  overflow: hidden;
  box-shadow: 0 0.2rem 0.4rem rgba(0, 0, 0, 0.03);
  transition: width 0.3s ease;
  z-index: 9999;
}

.search-form-wrapper.active {
  right: 0;
  width: 30rem;
}

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
}

.search-icon {
  cursor: pointer;
}

.icons,
.icons a:link,
.icons a:visited {
  cursor: pointer;
  font-size: 2rem;
  color: #cc9bc9;
  transition: all 0.3s ease-in;
}

.icons:hover,
.icons a:hover,
.icons a:active {
  color: #9b2847;
}

.nav-right-sidebar-flex {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

.nav-right-sidebar-flex h5 {
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  font-weight: 300;
  font-size: 1.8rem;
  color: #fff9ff;
  padding: 1.2rem;
  background-color: #222;
}

.nav-right-sidebar-flex form {
  margin: 0 auto;
}

.nav-right-sidebar-flex form select {
  width: 25rem;
  margin: 2.4rem auto 0 auto;
  padding: 0.6rem 1.2rem;
  font-size: 1.6rem;
  border-radius: 2rem;
  outline: none;
  border: 1px solid #7288a2;
  background-color: #fff9ff;
  color: #7288a2;
  font-weight: 300;
  transition: all 0.2s ease;
}

.nav-right-sidebar-flex form select option {
  background-color: #fff9ff;
  color: #7288a2;
  font-weight: 300;

  padding: 0.6rem 1.2rem;
}

.nav-right-sidebar-flex form select:focus {
  border: 1px solid #9b2847;
}

.nav-right-sidebar-flex .search-form {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 1.2rem;
  justify-content: center;
  color: #7288a2;
  border-radius: 2rem;
  margin-bottom: 2.4rem;
}

.nav-right-sidebar-flex .search-form input {
  position: relative;
  display: block;
  padding: 0.9rem 3.6rem 0.9rem 1.8rem;
  font-size: 1.6rem;
  font-weight: 300;
  border-radius: 3.6rem;
  outline: none;
  border: none;
  border: 1px solid #7288a2;
  color: #7288a2;
  background-color: #fff9ff;
  transition: all 0.2s ease;
}

.nav-right-sidebar-flex .search-form input:focus {
  border: 1px solid #9b2847;
}

.nav-right-sidebar-flex .search-form button {
  position: absolute;
  outline: none;
  border: none;
  cursor: pointer;
  font-size: 1.6rem;
  background-color: rgba(255, 249, 255, 0);
  right: 4rem;
  top: 16rem;
  color: #7288a2;
}

.nav-right-sidebar-flex .nav-right-sidbar-bottom {
  color: #7288a2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 45rem;
}

.nav-right-sidebar-flex .nav-right-sidbar-bottom h6 {
  text-align: center;
  font-size: 1.4rem;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  font-weight: 300;
  color: #7288a2;
  border-bottom: 0.1rem solid #e9e9e9;
  padding: 1.2rem;
}

.nav-right-sidebar-flex .nav-right-sidbar-bottom .fetch-products {
  padding: 1.2rem;
  height: 35rem;
  overflow: auto;
  border-bottom: 0.1rem solid #e9e9e9;
}

.nav-right-sidebar-flex .nav-right-sidbar-bottom .navbar-product-grid {
  display: grid;
  grid-template-rows: repeat(4, 1fr);
  gap: 2.4rem;
}

.nav-right-sidebar-flex
  .nav-right-sidbar-bottom
  .navbar-product-grid
  .navbar-products {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 1.2rem;
  align-items: start;
  justify-items: start;
  transition: all 0.2s ease;
}

.nav-right-sidebar-flex
  .nav-right-sidbar-bottom
  .navbar-product-grid
  .navbar-products:hover {
  background-color: rgba(155, 40, 71, 0.1);
  border-radius: 0.4rem;
}

.nav-right-sidebar-flex
  .nav-right-sidbar-bottom
  .navbar-product-grid
  .navbar-products
  .navbar-product-inner {
  padding: 0;
}

.nav-right-sidebar-flex
  .nav-right-sidbar-bottom
  .navbar-product-grid
  .navbar-products
  .navbar-product-inner
  a
  img {
  width: 8rem;
  height: 8rem;
  border-radius: 0.6rem;
}
.nav-right-sidebar-flex
  .nav-right-sidbar-bottom
  .navbar-product-grid
  .navbar-products
  .navbar-product-info {
  font-size: 1.4rem;
  padding: 1.2rem 0;
}

.nav-right-sidebar-flex
  .nav-right-sidbar-bottom
  .navbar-product-grid
  .navbar-products
  .navbar-product-info
  span {
  font-size: 1.3rem;
  font-weight: 600;
  color: #9b2847;
}

.nav-right-sidebar-flex .nav-right-sidbar-bottom a:link,
.nav-right-sidebar-flex .nav-right-sidbar-bottom a:visited {
  display: inline-block;
  text-decoration: none;
  padding: 1.2rem;
  font-size: 1.4rem;
  color: #7288a2;
  text-align: center;
}

.nav-right-sidebar-flex .nav-right-sidbar-bottom a:hover,
.nav-right-sidebar-flex .nav-right-sidbar-bottom a:active {
  color: #9b2847;
  text-decoration: underline;
}

/* MOBILE */
.btn-mobile-nav {
  border: none;
  background: none;
  cursor: pointer;

  display: none;
}

.icon-mobile-nav {
  height: 4.8rem;
  width: 4.8rem;
  color: #333;
}

.icon-mobile-nav[name="close-outline"] {
  display: none;
}

/* STICKY NAVIGATION */
.sticky .header {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 10rem;
  padding-top: 0;
  padding-bottom: 0;
  background-color: rgba(255, 249, 255, 0.97);
  z-index: 10;
  box-shadow: 0 1.2rem 3.2rem rgba(0, 0, 0, 0.03);
}

.sticky .sticky-navbar {
  margin-top: 9.6rem;
}

/* END NAVIGATION BAR */

/* HERO BANNER */

.hero-wrapper {
  position: relative;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.hero-banner {
  display: flex;
  transition: transform 0.3s ease;
}

.hero__photo {
  opacity: 0;
  position: absolute;
  top: 0;
  width: 100%;
  margin: auto;
  padding: 1rem 4rem;
  z-index: 1;
  transition: transform 0.5s, opacity 0.5s, z-index 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-item {
  margin: 0 auto;
}

.banner-item img {
  width: 100%;
  display: inline-block;
  margin: 0 auto;
}

.hero__photo.initial,
.hero__photo.hero-active {
  opacity: 1;
  position: relative;
  z-index: 4;
}

.hero__photo.hero-prev,
.hero__photo.hero-next {
  z-index: 3;
}

.hero__photo.hero-prev {
  transform: translateX(-100%);
}

.hero__photo.hero-next {
  transform: translateX(100%);
}

.hero__button--next,
.hero__button--prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.4rem;
  color: #fff;
  background-color: rgba(34, 34, 34, 0.7);
  padding: 1.2rem 2.4rem;
  border-radius: 50%;
  cursor: pointer;
  z-index: 5;
  transition: all 0.3s ease-in;
}

.hero__button--next:hover,
.hero__button--prev:hover {
  background-color: #444;
}

.hero__button--next {
  left: 95%;
}

.hero__button--prev {
  right: 95%;
}

/* END HERO BANNER */

/* CATEGORIES */

.cover-images {
  margin-bottom: 9.6rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-items: center;
  align-items: center;
  grid-row-gap: 5.2rem;
}

.cover-images .cover-image {
  overflow: hidden;
  position: relative;
}

.cover-images .cover-image a {
  display: block;
  width: 100%;
}

.cover-images .cover-image p {
  position: absolute;
  top: 90%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(204, 155, 201, 0.9);
  color: #222;
  padding: 1rem 2rem;
  border-radius: 2rem;
  opacity: 1;
  transition: opacity 0.6s ease;
  z-index: 5;
  font-weight: 500;
  letter-spacing: 0.1rem;
  font-size: 1.6rem;
  transition: all 0.6s ease-in-out;
}

.cover-images .cover-image:hover p {
  background-color: rgba(155, 40, 71, 0.9);
  color: #fff;
}

.cover-images .cover-image a img {
  display: block;
  width: 42rem;
  height: 40rem;
  border-radius: 0.6rem;
  transition: all 0.6s ease-in-out;
}

.cover-images .cover-image img:hover {
  transform: scale(1.1);
}

/* END CATEGORIES */

/* FEATURING */

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-items: center;
  align-items: center;
  row-gap: 4.8rem;
  column-gap: 2.4rem;
}

.product-grid .products {
  min-width: 100%;
  display: grid;
  grid-template-rows: 5fr 1fr;
  align-items: start;
  justify-content: center;
  /* display: flex;
  flex-direction: column; */
  margin: 0 auto;
}

.product-grid .products .product-inner img {
  width: 32rem;
  height: 32rem;
  transition: opacity 0.6s ease;
}

.product-inner {
  position: relative;
  display: inline-block;
  transition: opacity 0.3s ease;
}

.product-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 98%;
  background-color: rgba(0, 0, 0, 0.9);
  opacity: 0;
}

.product-inner:hover::before {
  opacity: 1;
}

.product-inner:hover a img {
  opacity: 0.8;
}

.hover-new-arrival {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: #f05a22;
  color: #fff;
  font-size: 1.4rem;
  padding: 0.5rem 1rem;
  border-radius: 0.4rem;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.hover-sold-out {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: rgba(34, 34, 34, 0.6);
  color: #fff;
  font-size: 1.4rem;
  padding: 0.5rem 1rem;
  border-radius: 0.4rem;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.hover-icons {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
  font-size: 2rem;
  transition: bottom 0.3s ease;
  z-index: 1;
  opacity: 0;
  cursor: pointer;
}

.hover-icons .buy {
  color: #222;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 1.2rem 1.8rem;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.hover-icons .buy:hover {
  color: #fff;
  background-color: rgba(34, 34, 34, 0.8);
}

.hover-icons .wishlist {
  color: #9b2847;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 1.2rem 1.8rem;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.hover-icons .wishlist:hover {
  color: #ffc2fb;
  background-color: rgba(34, 34, 34, 0.8);
}

.product-inner:hover .hover-icons {
  bottom: 30%;
  opacity: 1;
}

.product-grid .products .product-info {
  text-align: center;
  color: #00394b;
  font-size: 1.6rem;
  letter-spacing: 0.07rem;
}

.product-grid .products .product-info p {
  color: #9b2847;
  font-size: 1.5rem;
  font-weight: 500;
}

.recent-visited-margin {
  margin-bottom: 9.6rem;
}

.recent-visited-margin .no-recently-products {
  text-align: center;
  font-size: 1.6rem;
  color: #00394b;
  font-weight: 500;
}

/* END FEATURING */

/* SERVICES */

.service {
  margin: 9.6rem auto;
  padding: 3.6rem 4.8rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  justify-items: center;
  gap: 1.8rem;

  background: linear-gradient(120deg, #cc9bc9, #f39fb5);
  color: #00394b;
  letter-spacing: 0.07rem;
}

.service .services {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
}

.service .services i {
  font-size: 2.4rem;
  color: #9b2847;
}

.service .services .service-desc h5 {
  font-size: 1.4rem;
}

.service .services .service-desc p {
  font-size: 1.6rem;
}

/* END SERVICES */

/* FOOTER */

footer {
  background-color: #fff9ff;
  display: flex;
  flex-direction: column;
  padding-bottom: 6.4rem;
}

footer .newsletter {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}

footer .newsletter p {
  font-size: 1.4rem;
  font-style: italic;
  color: #7288a2;
}

footer .newsletter form {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
}

footer .newsletter form input {
  font-size: 1.8rem;
  font-weight: 500;
  padding: 0.8rem 1.2rem;
  color: #7288a2;
  background-color: #fff9ff;
  border: 1px solid #c1c1c1;
  outline: none;
  transition: all 0.3s ease-in;
}

footer .newsletter form input:focus {
  border: 1px solid #7288a2;
}

footer .newsletter form button {
  outline: none;
  border: none;
  cursor: pointer;
  padding: 1.2rem 2.4rem;
  color: #fff9ff;
  text-transform: uppercase;
  background-color: #222;
  font-size: 1.6rem;
  font-weight: 500;
  transition: all 0.3s ease-in;
}

footer .newsletter form button:hover {
  color: #fff;
  background-color: #444;
}

footer .foot-links {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  width: 80%;
  margin: 0 auto;
  padding-top: 6.4rem;
  color: #7288a2;
}

footer .foot-links .categories .categories-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: start;
  justify-items: start;
  column-gap: 1.8rem;
  /* row-gap: 1.2rem; */
}

footer .foot-links .categories p,
footer .foot-links .important-links p,
footer .foot-links .information p {
  font-size: 1.8rem;
  font-weight: 500;
  text-transform: uppercase;
  padding-bottom: 2.4rem;
}

footer .foot-links .categories ul,
footer .foot-links .important-links ul,
footer .foot-links .information ul {
  list-style-type: none;
}

footer .foot-links .categories ul li,
footer .foot-links .important-links ul li,
footer .foot-links .information ul li {
  font-size: 1.5rem;
  padding-bottom: 1.2rem;
}

footer .foot-links .categories ul li a:link,
footer .foot-links .categories ul li a:visited,
footer .foot-links .important-links ul li a:link,
footer .foot-links .important-links ul li a:visited,
footer .foot-links .information ul li a:link,
footer .foot-links .information ul li a:visited {
  color: #7288a2;
  text-decoration: none;
  font-size: 1.5rem;
}

footer .foot-links .categories ul li a:hover,
footer .foot-links .categories ul li a:active,
footer .foot-links .important-links ul li a:hover,
footer .foot-links .important-links ul li a:active,
footer .foot-links .information ul li a:hover,
footer .foot-links .information ul li a:active {
  color: #222;
  text-decoration: underline;
}

footer .foot-links .information ul .social-links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  padding-bottom: 1.2rem;
}

footer .foot-links .information ul .social-links a:link,
footer .foot-links .information ul .social-links a:visited {
  font-size: 1.6rem;
  color: #7288a2;
}

footer .foot-links .information ul .social-links a:hover,
footer .foot-links .information ul .social-links a:active {
  color: #222;
}

.bottom-footer-text {
  text-align: center;
  padding: 1.6rem;
  background-color: #fff;
  color: #7288a2;
  font-size: 1.4rem;
  font-weight: normal;
}

/* END FOOTER */

/* ABOUT US PAGE */

.about-us {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4.8rem;
  margin: 4.8rem auto 9.6rem auto;
}

.about-us img {
  width: 60rem;
  height: 60rem;
  padding: 2.4rem;
}

.about-us .about-info {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 1.8rem;
  color: #7288a2;
}

.about-us .about-info h2 {
  text-decoration: underline;
  font-size: 2.4rem;
  letter-spacing: 0.1rem;
  line-height: 1.2;
  color: #00394b;
}

.about-us .about-info p {
  font-weight: 500;
  letter-spacing: 0.1rem;
  line-height: 1.8;
  font-size: 1.6rem;
  padding-bottom: 3.6rem;
}

.about-us .about-info a:link,
.about-us .about-info a:visited {
  font-size: 1.6rem;
  padding: 1.2rem 2.4rem;
  background-color: #9b2847;
  color: #fff9ff;
  border-radius: 0.4rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}

.about-us .about-info a:hover,
.about-us .about-info a:active {
  background-color: #fff9ff;
  color: #9b2847;
  box-shadow: inset 0 0 0 0.2rem #9b2847;
}

/* END ABOUT US PAGE */

/* USER PROFILE DASHBOARD */

.welcome-top {
  margin: 4.8rem 0 3.6rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #00394b;
}

.welcome-top h2 {
  font-size: 1.6rem;
}

.welcome-top a:link,
.welcome-top a:visited {
  font-size: 1.4rem;
  padding: 1.2rem 2.4rem;
  background-color: #ffc2fb;
  color: #222;
  text-decoration: none;
  border-radius: 0.4rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.welcome-top a:hover,
.welcome-top a:active {
  background-color: #fff9ff;
  color: #222;
  box-shadow: inset 0 0 0 0.2rem #9b2847;
}

.user-profile h4,
.manage-address h4,
.latest-orders h4 {
  font-size: 1.8rem;
  letter-spacing: 0.07rem;
  color: #00394b;
  font-weight: 300;
  text-transform: uppercase;
  padding-bottom: 4.8rem;
  text-align: center;
}

.exisiting-address {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.exisiting-address .addresses {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.4rem;
}

.exisiting-address .addresses .address {
  position: relative;
  background-color: #fff9ff;
  padding: 2.4rem 3.6rem;
  border-radius: 0.3rem;
  transition: all 0.2s ease;
  color: #00394b;
}

.exisiting-address .addresses .address:hover {
  background-color: rgba(155, 40, 71, 0.197);
  color: #9b2847;
}

.exisiting-address .operation-btns {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  font-size: 2rem;
  color: #00394b;
  opacity: 0;
  transition: opacity 0.3s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
}

.exisiting-address .addresses .address:hover .operation-btns {
  opacity: 1;
}

.exisiting-address
  .addresses
  .address
  .operation-btns
  .update-address-hover
  form
  label {
  font-size: 1.3rem;
}

.exisiting-address
  .addresses
  .address
  .operation-btns
  form
  .address-delete-btn {
  color: #00394b;
  background-color: rgba(34, 34, 34, 0);
  outline: none;
  border: none;
  cursor: pointer;
}

.exisiting-address
  .addresses
  .address
  .operation-btns
  form
  .address-delete-btn:hover {
  color: #9b2847;
}

.exisiting-address .addresses .address h5 {
  font-size: 1.6rem;
  padding-bottom: 1.2rem;
  letter-spacing: 0.04rem;
}
.exisiting-address .addresses .address p {
  font-size: 1.5rem;
  padding-bottom: 12px;
  letter-spacing: 0.04rem;
}

.exisiting-address .addresses .create-address {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5.2rem;
  background-color: rgba(155, 40, 71, 0.197);
  color: #00394b;
  border-radius: 0.3rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.exisiting-address .addresses .create-address:hover {
  color: #9b2847;
  background-color: #fff9ff;
}

.exisiting-address .addresses .create-address .create-more-address {
  padding: 2.4rem;
}

.exisiting-address .addresses .create-address .create-more-address .fa-plus {
  transition: transform 0.4s ease-in-out;
}

.exisiting-address
  .addresses
  .create-address:hover
  .create-more-address
  .fa-plus {
  transform: rotate(180deg);
}

.add-address {
  color: #555;
  background-color: #fff9ff;
  border-radius: 0.9rem;
  max-height: 0;
  overflow: hidden;
  margin: 4.8rem 0;
  transition: max-height 0.3s ease, opacity 0.3s ease;
}

.add-address.active {
  animation: fadeIn 0.3s forwards;
  max-height: 100rem;
  padding: 3.6rem 4.8rem;
  box-shadow: 0 0 3rem 0.5rem rgba(34, 34, 34, 0.1);
}

.add-address.inactive {
  animation: fadeOut 0.3s forwards;
  max-height: 0;
  opacity: 0;
  padding: 3.6rem 4.8rem;
}

@keyframes fadeIn {
  from {
    max-height: 0;
    opacity: 0;
  }
  to {
    max-height: 100rem;
    opacity: 1;
  }
}

@keyframes fadeOut {
  from {
    max-height: 100rem;
    opacity: 1;
  }
  to {
    max-height: 0;
    opacity: 0;
  }
}

.add-address h4 {
  padding-bottom: 4.8rem;
  color: #00394b;
  font-size: 1.8rem;
  letter-spacing: 0.07rem;
}

.add-address form {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3.6rem;
}

.add-address form .address-input-box {
  display: flex;
  flex-direction: column;
  color: #00394b;
  gap: 1.2rem;
  font-size: 1.6rem;
  letter-spacing: 0.07rem;
}

.add-address form .address-input-box .error {
  color: #9b2847;
  font-weight: 500;
}

.add-address form .address-input-box input {
  padding: 0.6rem 1.2rem;
  border-radius: 0.6rem;
  outline: none;
  border: 1px solid #c1c1c1;
  transition: all 0.2s ease-in;
  background-color: #fff9ff;
  font-size: 1.6rem;
  font-weight: 500;
}

.add-address form .address-input-box input:focus {
  border: 1px solid #9b2847;
}

.add-address form .address-input-submit input {
  margin-top: 2.4rem;
  outline: none;
  border: none;
  padding: 1.2rem 2.4rem;
  border-radius: 5rem;
  font-size: 1.6rem;
  font-weight: 500;
  cursor: pointer;
  background-color: #cc9bc9;
  color: #fff;
  transition: all 0.2s ease-in;
}

.add-address form .address-input-submit input:hover {
  box-shadow: inset 0 0 0 0.2rem #9b2847;
  background-color: #e6afe2;
  color: #222;
}

/* USER PROFILE */

/* .user-profile h4 {
  text-align: center;
} */

.profile-info {
  width: 80%;
  margin: 0 auto 4.8rem auto;
}

.profile-info .profile-info-list {
  display: grid;
  align-items: start;
  justify-items: start;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.profile-info .profile-info-left,
.profile-info .profile-info-right {
  list-style: none;
  padding: 2.4rem;
  margin: 0;
  font-size: 1.8rem;
  color: #7288a2;
  letter-spacing: 0.07rem;
}

.profile-info .profile-info-right {
  color: #00394b;
}

.profile-info li {
  margin-bottom: 2.4rem;
}

/* END USER PROFILE */

/* LATEST ORDERS */
.latest-orders {
  margin-bottom: 9.6rem;
}

/* .latest-orders h4 {
  padding-bottom: 24px;
  text-align: center;
} */

.order-status {
  margin: 9.6rem 0;
}

.order-status .order-status-headings {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  font-size: 1.6rem;
  justify-content: center;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.07rem;
}

.order-status .order-status-headings .order-tab {
  color: #00394b;
  background-color: #fff9ff;
  padding: 0.6rem 1.2rem;
  border-radius: 0.6rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.order-status .order-tab.active {
  background-color: #9b2847;
  color: #fff9ff;
}

.order-status .order-status-pending,
.order-status .order-status-cancelled,
.order-status .order-status-history {
  display: none;
  transition: opacity 0.3s ease-in-out;
  opacity: 0;
}

.order-status .order-status-pending.active,
.order-status .order-status-cancelled.active,
.order-status .order-status-history.active {
  display: block;
  opacity: 1;
}

.user-orders-history {
  margin-bottom: 9.6rem;
}

.user-orders-history h4 {
  padding: 4.8rem 0;
  text-align: center;
  text-transform: capitalize;
  font-weight: 500;
  font-size: 1.6rem;
  color: #7288a2;
}

.user-orders-history p {
  font-size: 1.4rem;
  text-align: center;
  color: #00394b;
}

.orders-history {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.4rem;
  align-items: center;
  justify-items: center;
}

.orders-history .order-history img {
  width: 30rem;
  height: 30rem;
}

.orders-history .order-history h5,
.orders-history .order-history p {
  text-align: center;
  font-size: 1.5rem;
  color: #00394b;
  letter-spacing: 0.07rem;
}

.orders-history .order-history h5 {
  font-size: 1.4rem;
  padding-top: 1.2rem;
}

.orders-history .order-history p {
  font-size: 1.5rem;
  color: #9b2847;
  font-weight: 500;
}

/* END USER PROFILE DASHBOARD */

/* LOGIN PAGE */
.login {
  background-color: #fff9ff;
  margin: 6.4rem auto;
  width: 30%;
  border-radius: 1.2rem;
  box-shadow: 0 0 1.5rem 0.3rem rgba(9, 9, 9, 0.2);
}

/* .register {
  width: 50%;
} */

.login .log-bottom {
  display: flex;
  flex-direction: column;
  padding: 1.2rem 2.4rem;
  gap: 2.4rem;
}

.login .log-bottom h2 {
  text-align: center;
  color: #7288a2;
  font-size: 2.4rem;
  padding-bottom: 1.2rem;
  letter-spacing: 0.07rem;
  text-transform: uppercase;
}

.login .log-bottom form {
  display: flex;
  gap: 1.2rem;
  flex-direction: column;
  letter-spacing: 0.05rem;
}

.login .log-bottom form .register-flex {
  display: flex;
  gap: 2.4rem;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
}

.login .log-bottom form .register-flex .log-input,
.login .log-bottom form .log-input {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  color: #666;
  font-size: 1.4rem;
  width: 100%;
}
.login .log-bottom form .log-input label,
.login .log-bottom form .register-flex .log-input label {
  color: #7288a2;
}

.login .log-bottom form .register-flex .log-input input,
.login .log-bottom form .log-input input {
  padding: 0.6rem 1.2rem;
  border-radius: 0.6rem;
  outline: none;
  border: 1px solid #c1c1c1;
  transition: all 0.2s ease-in;
  background-color: #fff9ff;
  font-size: 1.6rem;
  font-weight: 500;
}

.login .log-bottom form .register-flex .log-input input:focus,
.login .log-bottom form .log-input input:focus {
  border: 1px solid #9b2847;
}

.login .log-bottom form .log-input .error,
.login .log-bottom form .register-flex .error {
  color: #9b2847;
  font-weight: 500;
}

.login .log-bottom form .register-flex .log-btn,
.login .log-bottom form .log-btn {
  margin-top: 2.4rem;
  outline: none;
  border: none;
  padding: 1.2rem 2.4rem;
  border-radius: 5rem;
  font-size: 1.6rem;
  font-weight: 500;
  cursor: pointer;
  background-color: #cc9bc9;
  color: #fff;
  transition: all 0.2s ease-in;
}

.login .log-bottom form .register-flex .log-btn:hover,
.login .log-bottom form .log-btn:hover {
  box-shadow: inset 0 0 0px 2px #9b2847;
  background-color: #e6afe2;
  color: #222;
}

.login .log-bottom p {
  text-align: center;
  color: #7288a2;
  font-size: 1.6rem;
}

.login .log-bottom p a:link,
.login .log-bottom p a:visited {
  color: #9b2847;
  text-decoration: none;
}

.login .log-bottom p a:hover,
.login .log-bottom p a:active {
  color: #bc3b59;
  text-decoration: none;
}

/* END LOGIN PAGE */

/* POLICY PAGE */
.policy {
  width: 70%;
  margin: 0 auto 9.6rem auto;
  color: #7288a2;
}

.policy .policy-item {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 2.4rem;
  letter-spacing: 0.07rem;
}

.policy .policy-item h3 {
  font-size: 2.4rem;
  color: #00394b;
}

.policy .policy-item p {
  font-size: 1.6rem;
}

/* END POLICY PAGE */

/* PAGINATION */

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.4rem;
  margin: 9.6rem auto 0 auto;
}

.pagination .active {
  background-color: #7288a2;
  color: #fff9ff;
  padding: 0.3rem 1rem;
  width: 3rem;
  height: 3rem;
  font-size: 1.6rem;
  border-radius: 50%;
}

.pagination a:link,
.pagination a:visited {
  background-color: #fff9ff;
  color: #9b2847;
  text-decoration: none;
  padding: 0.3rem 1rem;
  width: 3rem;
  font-size: 1.6rem;
  height: 3rem;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.pagination a:hover,
.pagination a:active {
  background-color: #9b2847;
  color: #fff9ff;
}

/* END PAGINATION */

/* CHECKOUT */

.checkout {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 2.4rem;
}

.checkout .cart-table th {
  font-size: 1.6rem;
  font-weight: 500;
  color: #00394b;
}

.checkout form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding: 2.4rem;
}

.checkout form h4 {
  font-size: 1.8rem;
  text-transform: uppercase;
  font-weight: 300;
  color: #00394b;
}

.checkout .selected-address-flex {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  padding: 2.4rem;
  border-radius: 0.6rem;
  transition: all 0.2s ease;
}

.checkout .selected-address-flex:hover {
  background-color: #fff9ff;
  box-shadow: 0 0 1rem 0.5rem rgba(0, 0, 0, 0.097);
}

.checkout-each-address {
  position: relative;
  color: #00394b;
  letter-spacing: 0.07rem;
}

.checkout-default-address {
  position: absolute;
  top: 0;
  right: 1rem;
  text-transform: uppercase;
  display: inline-block;
  font-size: 1.2rem;
  background-color: #f1c40f;
  color: #fff;
  padding: 0.2rem 0.5rem;
  border-radius: 0.3rem;
  margin-right: 0.5rem;
}

.checkout-each-address-name {
  font-size: 1.6rem;
  padding-bottom: 1rem;
  font-weight: 600;
}

.checkout-each-address-info {
  font-size: 1.6rem;
  color: #7288a2;
}

.checkout form button {
  font-size: 1.6rem;
  width: 25rem;
  margin-top: 2rem;
  outline: none;
  border: none;
  padding: 1rem 2rem;
  border-radius: 5rem;
  font-weight: 500;
  cursor: pointer;
  background-color: #cc9bc9;
  color: #fff;
  transition: all 0.2s ease-in;
}

.checkout form button:hover {
  box-shadow: inset 0 0 0 0.2rem #9b2847;
  background-color: #e6afe2;
  color: #222;
}
/* END CHECKOUT */

/* SHIPPING INFO */

.shipping-info {
  margin: 9.6rem 0;
  color: #00394b;
  letter-spacing: 0.07rem;
  background-color: #fff9ff;
  padding: 2.4rem;
  box-shadow: 0 0 3rem 0.5rem rgba(34, 34, 34, 0.1);
  border-radius: 1.2rem;
}

.shipping-info h2 {
  font-size: 1.8rem;
  padding: 2.4rem 0;
}

.shipping-info .shipping-info-selected-add {
  font-size: 1.6rem;
  padding-bottom: 3.6rem;
}

.shipping-info form {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3.6rem;
}

.shipping-info .address-input-box {
  display: flex;
  flex-direction: column;
  color: #00394b;
  gap: 1.2rem;
  font-size: 1.6rem;
  letter-spacing: 0.07rem;
}

.shipping-info .address-input-box input,
.shipping-info .address-input-box select {
  padding: 0.6rem 1.2rem;
  border-radius: 0.6rem;
  outline: none;
  border: 1px solid #c1c1c1;
  transition: all 0.2s ease-in;
  background-color: #fff9ff;
  font-size: 1.6rem;
  font-weight: 500;
}

.shipping-info .address-input-box input:focus,
.shipping-info .address-input-box select:focus {
  border: 1px solid #9b2847;
}
.payment-notice {
  text-align: center;
  padding-top: 2.4rem;
  font-size: 1.4rem;
  color: #999;
}
