* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}

h1 {
  font-weight: normal;
  font-size: inherit;
  font-family: "Playfair Display";
}

a {
  color: rgb(26, 26, 26);
  text-decoration: none;
}

.text-black {
  color: #222222;
}

.heading-text {
  font-family: "Playfair Display";
  font-weight: 400;
  color: #222222;
  font-size: 24px;
}

.primary-button {
  height: 45px;
  width: 70px;
  background-color: rgb(174, 132, 95);
  color: white;
  outline: none;
  border: none;
  font-size: 14px;
}
.primary-button:hover {
  background-color: var(--text-dark-grey);
  cursor: pointer;
}

.m0 {
  margin: 0 !important;
}

.m1 {
  margin: 1rem !important;
}

.nb {
  border: none !important;
}

.inline {
  display: inline !important;
}

.primary-color-btn {
  background-color: #AE845F;
  color: white;
  text-align: center;
  padding: 2ex;
  font-size: 14px;
  letter-spacing: 0.12px;
}

input {
  border: 1px solid #DDD;
  padding: 8px;
}
input:focus {
  outline: none;
}

.radio-set {
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.radio-set * {
  margin-top: 10px;
}
.radio-set label {
  cursor: pointer;
}
.radio-set input {
  accent-color: #AE845F;
  width: 15px;
  height: 15px;
}

button, .btn-caution, .btn-primary {
  border: none;
  outline: none;
  cursor: pointer;
}

.flex {
  display: flex;
}

/* Banner  */
.banner {
  height: 256px;
  width: 100%;
  padding-top: 71px;
  padding-bottom: 76px;
  background-image: url("/static/images/banner_raw.png");
}

.banner .shop {
  height: 256px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.banner .shop .page-title {
  font-family: "Playfair Display";
  font-weight: 500;
  color: white;
  font-size: 55px;
  text-align: center;
}

.banner .shop .page-breadcrumbs {
  margin-top: 20px;
  text-align: center;
  color: white;
  line-height: 25px;
  font-weight: 400;
  font-size: 14px;
  font-family: "Roboto";
}

.banner .shop .page-breadcrumbs .heading {
  color: white;
  text-decoration: none;
}

.banner .shop .page-breadcrumbs .heading:hover {
  color: #ffbc00;
}

img {
  object-fit: cover;
}

.next-page-container {
  text-align: center;
}
.next-page-container .next-page-btn {
  color: white;
  background-color: #AE845F;
  border: 1px solid #AE845F;
  font-size: 14px;
  font-weight: 400;
  justify-content: center;
  width: 40px;
  line-height: 36px;
}

.error-message {
  color: red;
  font-size: 1rem;
}

.dropdown {
  padding: 0;
  margin: 0;
}
.dropdown ul {
  padding: 0;
  margin: 0;
  overflow-y: scroll;
  height: 250px;
}
.dropdown li {
  list-style: none;
  padding: 2.5px 0 2.5px 0;
  cursor: pointer;
}
.dropdown li:hover {
  background-color: #DDD;
}

.text-active {
  color: rgb(174, 132, 95);
}

/* Media Query Mixin */
nav {
  position: relative;
  z-index: 30;
  border-bottom: 1px solid;
  border-color: #EEE;
}
@media screen and (max-width: 1200px) {
  nav {
    max-width: 95%;
    margin-inline: auto;
  }
}
@media screen and (max-width: 768px) {
  nav {
    max-width: 95%;
    margin-inline: auto;
  }
}
@media screen and (max-width: 425px) {
  nav {
    max-width: 95%;
    margin-inline: auto;
  }
}
@media screen and (max-width: 360px) {
  nav {
    max-width: 95%;
    margin-inline: auto;
  }
}
nav .nav {
  position: relative;
  z-index: 8;
  display: grid;
  grid-template-columns: 0.7fr 3fr 1fr;
  align-items: center;
  justify-items: center;
}
@media screen and (max-width: 1200px) {
  nav .nav {
    grid-template-rows: auto 1fr;
    grid-template-areas: ". . ." "a a a";
  }
}
nav .nav i:nth-child(1) {
  display: block;
  font-size: 18px;
}
nav .nav .nav-links-container .nav-links {
  display: flex;
  flex-direction: column;
  gap: 30px;
  overflow-y: scroll;
  padding: 0px 5px;
}
nav .nav .nav-links-container .nav-links > a {
  text-transform: uppercase;
}
nav .nav .nav-links-container .nav-links .option-popup {
  display: none;
}
nav .nav .nav-links-container .nav-links .option-popup div {
  display: flex;
  flex-direction: column;
  margin: 0px 15px;
  gap: 20px;
}
nav .nav .nav-links-container .nav-links .option-popup div a {
  text-align: left;
}
nav .nav .nav-links-container .nav-links .option-popup div a {
  border-bottom: 1px solid #eee;
  padding: 8px 0;
}
@media (min-width: 1200px) {
  nav .nav .nav-links-container .nav-links .option-popup div a {
    border-bottom: 0;
    padding: 0;
  }
}
nav .nav .nav-links-container a .optn-title {
  padding: 8px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
nav .nav .nav-links-container .optn-title-mob {
  border-bottom: 1px solid #eee;
  padding: 8px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 1200px) {
  nav .nav .nav-links-container .optn-title-mob {
    display: none;
  }
}
nav .nav .nav-logo {
  width: 100%;
  display: grid;
  place-content: flex-start;
}
nav .nav .nav-logo img {
  width: 160px;
  object-position: 0px -5px;
}
nav .nav .nav-icons {
  display: flex;
  width: 100%;
  justify-content: space-evenly;
}
nav .nav .nav-icons #search-item {
  display: none;
}
nav .nav .nav-icons i:nth-child(2),
nav .nav .nav-icons i:nth-child(3) {
  display: none;
}
nav .nav .nav-icons i:nth-child(4),
nav .nav .nav-icons i:nth-child(5) {
  font-size: 22px;
}
@media (min-width: 1200px) {
  nav .nav {
    display: grid;
    grid-template-columns: 2fr 5fr 3fr;
    max-width: 1190px;
    margin-inline: auto;
    justify-items: center;
    align-items: center;
    column-gap: 35px;
    padding: 6px 0;
    margin-bottom: 1px;
    padding-inline: 30px;
  }
  nav .nav .nav-icons #search-item {
    display: block;
  }
  nav .nav .nav-icons i:nth-child(2),
  nav .nav .nav-icons i:nth-child(3) {
    display: block;
  }
  nav .nav .nav-icons input:focus {
    outline: none;
  }
}
nav .nav .nav-links-container {
  display: none;
  width: 100%;
  padding-inline: 20px;
}
@media (min-width: 1200px) {
  nav .nav .nav-links-container {
    display: block;
  }
  nav .nav .nav-links-container .nav-links {
    overflow: unset;
  }
}
nav .nav .nav-links-container .nav-links {
  z-index: 8;
  position: fixed;
  background-color: white;
  width: 80vw;
  height: 100vh;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  padding: 1rem 1rem;
  border: 1px solid black;
}
@media (min-width: 1200px) {
  nav .nav .nav-links-container .nav-links {
    position: static;
    display: flex;
    flex-direction: row;
    justify-content: start;
    padding: 0;
    height: 0;
    background-color: rgba(0, 0, 0, 0);
    align-items: center;
    width: 100%;
    margin-bottom: 0;
    height: auto;
    border: none;
  }
}
nav .nav .nav-links-container .nav-links a {
  font-size: 16px;
}
@media (min-width: 1200px) {
  nav .nav .nav-links-container .nav-links a {
    text-align: center;
    padding: 1rem 0;
    margin: 0;
  }
}
nav .nav .nav-icons svg {
  width: 1.4rem;
  height: 1.4rem;
}
nav .nav .nav-icons .cart-icon-container {
  position: relative;
}
nav .nav .nav-icons .cart-icon-container .cart-number {
  background-color: #ae845f;
  cursor: pointer;
  height: 17px;
  width: 17px;
  font-size: 10px !important;
  color: #fff;
  font-weight: 600;
  border-radius: 50%;
  position: absolute;
  right: -10px;
  top: -5px;
  display: grid;
  place-content: center;
}
nav .nav .nav-icons .wishlist-icon-container {
  position: relative;
}
nav .nav .nav-icons .wishlist-icon-container .wishlist-number {
  background-color: #ae845f;
  cursor: pointer;
  height: 17px;
  width: 17px;
  font-size: 10px !important;
  color: #fff;
  font-weight: 600;
  border-radius: 50%;
  position: absolute;
  top: -5px;
  right: -5px;
  display: grid;
  place-content: center;
}
@media (min-width: 1200px) {
  nav .nav .nav-icons {
    position: relative;
    display: flex;
    align-items: center;
    gap: 2rem;
    font-size: 20px;
  }
  nav .nav .nav-icons svg {
    width: 1.4rem;
    height: 1.4rem;
  }
  nav .nav .nav-icons svg:nth-child(5) {
    width: 1.4rem;
    height: 1.4rem;
  }
  nav .nav .nav-icons .nav-search-container {
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 5px;
    padding: 3px 10px;
  }
  nav .nav .nav-icons .nav-search-container I {
    color: #DDD;
  }
  nav .nav .nav-icons .nav-search-container input {
    border: none;
    color: #B4B4B4;
  }
  nav .nav .nav-icons .nav-search-container #nav-search-item {
    width: 200px;
    height: 30px;
    border-radius: 20px;
    border-color: #222;
    padding: 15px;
    font-size: 15px;
  }
  nav .nav .nav-icons .nav-search-container i {
    margin: 0 !important;
  }
  nav .nav .nav-icons .nav-icons-container {
    display: flex;
    gap: 10px;
    align-items: center;
  }
  nav .nav .nav-icons .profile-icon-container i {
    font-size: 20px !important;
  }
  nav .nav .nav-icons button, nav .nav .nav-icons .btn-caution, nav .nav .nav-icons .btn-primary {
    background-color: unset;
  }
  nav .nav .nav-icons i:hover {
    color: #ae845f;
    cursor: pointer;
  }
  nav .nav .nav-icons svg:hover {
    fill: #ae845f !important;
    cursor: pointer;
  }
  nav .nav .nav-icons .cart-number {
    top: -3px !important;
    right: -10px !important;
  }
  nav .nav .nav-icons .wishlist-number {
    top: -2px !important;
    right: -6px !important;
  }
}
nav .nav .nav-logo {
  width: 160px;
  object-fit: cover;
}
nav .nav .nav-logo img {
  width: 100%;
  object-position: 0px -6px;
}
@media (min-width: 1200px) {
  nav .nav #nav-cat1-optn {
    left: 226px;
    top: 65px;
  }
  nav .nav #nav-cat1-optn .option-up div > a {
    display: none;
  }
}
@media (min-width: 1200px) {
  nav .nav #nav-cat2-optn {
    left: 330px;
    top: 65px;
  }
  nav .nav #nav-cat2-optn .option-up div > a {
    display: none;
  }
}
nav .nav #nav-cat3-optn .shop-optn-container div {
  display: none;
}
nav .nav #nav-cat3-optn .shop-optn-container .shop-mobile {
  display: flex;
}
@media (min-width: 1200px) {
  nav .nav #nav-cat3-optn {
    top: 65px;
    left: 225px;
  }
  nav .nav #nav-cat3-optn .option-up div > a {
    display: none;
  }
  nav .nav #nav-cat3-optn .shop-optn-container {
    display: grid;
    grid-template-columns: 205px 200px 175px;
    column-gap: 5px;
    padding: 10px;
  }
  nav .nav #nav-cat3-optn .shop-optn-container > a {
    display: none;
  }
  nav .nav #nav-cat3-optn .shop-optn-container a {
    font-size: 16px;
    padding: 0;
    place-content: unset;
  }
  nav .nav #nav-cat3-optn .shop-optn-container .shop-mobile {
    display: none;
  }
  nav .nav #nav-cat3-optn .shop-optn-container div {
    display: grid;
  }
  nav .nav #nav-cat3-optn .shop-optn-container div a {
    text-align: left;
  }
  nav .nav #nav-cat3-optn .shop-optn-container div .shop-title:hover {
    color: #222;
    cursor: auto;
  }
}
@media (min-width: 1200px) {
  nav .nav #nav-cat4-optn {
    top: 65px;
    left: 515px;
  }
  nav .nav #nav-cat4-optn .option-up div > a {
    display: none;
  }
}
@media (min-width: 1200px) {
  nav .nav #nav-cat5-optn {
    top: 65px;
    left: 636px;
  }
  nav .nav #nav-cat5-optn .option-up div > a {
    display: none;
  }
}
nav .mobile-search-bar {
  grid-area: a;
  width: 100%;
  margin: 5px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  margin-inline: auto;
  border: 1px solid #C5C5C5;
  border-radius: 7px;
  padding: 10px;
}
nav .mobile-search-bar input {
  width: 95%;
  padding: 2px;
  border: none;
  color: #C5C5C5;
}
nav .mobile-search-bar input:focus {
  outline: none;
}
nav .mobile-search-bar i {
  color: #ddd;
}
@media (min-width: 1200px) {
  nav .mobile-search-bar {
    display: none;
  }
}

@media (min-width: 1200px) {
  #ham-icon {
    display: none !important;
  }
}

a {
  text-decoration: none;
  color: #222;
}
a:hover {
  cursor: pointer;
  color: #ae845f;
}

.option-popup div a:nth-child(1) {
  display: none;
}
@media (min-width: 1200px) {
  .option-popup {
    display: none;
    position: absolute;
    background-color: rgba(255, 255, 255, 0.97);
    left: 380px;
    top: 64px;
    overflow: hidden;
  }
  .option-popup div {
    display: flex;
    flex-direction: column;
    padding: 10px 18px;
  }
  .option-popup div a {
    padding: 10px 30px;
    place-content: center;
  }
  .option-popup .shop-mobile {
    display: none;
  }
}

h1 {
  font-size: 18px;
}

#hero .banner-image {
  width: 100%;
  height: 100vh;
}
#hero .banner-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

a {
  text-decoration: none;
}

.nav-search-container {
  display: none;
}
@media (min-width: 1200px) {
  .nav-search-container {
    display: flex;
  }
}

.login-with-google-btn {
  transition: background-color 0.3s, box-shadow 0.3s;
  padding: 12px 16px 12px 42px;
  border: none;
  border-radius: 3px;
  box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.04), 0 1px 1px rgba(0, 0, 0, 0.25);
  color: #757575;
  font-size: 14px;
  font-weight: 500;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTgiIGhlaWdodD0iMTgiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj48cGF0aCBkPSJNMTcuNiA5LjJsLS4xLTEuOEg5djMuNGg0LjhDMTMuNiAxMiAxMyAxMyAxMiAxMy42djIuMmgzYTguOCA4LjggMCAwIDAgMi42LTYuNnoiIGZpbGw9IiM0Mjg1RjQiIGZpbGwtcnVsZT0ibm9uemVybyIvPjxwYXRoIGQ9Ik05IDE4YzIuNCAwIDQuNS0uOCA2LTIuMmwtMy0yLjJhNS40IDUuNCAwIDAgMS04LTIuOUgxVjEzYTkgOSAwIDAgMCA4IDV6IiBmaWxsPSIjMzRBODUzIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz48cGF0aCBkPSJNNCAxMC43YTUuNCA1LjQgMCAwIDEgMC0zLjRWNUgxYTkgOSAwIDAgMCAwIDhsMy0yLjN6IiBmaWxsPSIjRkJCQzA1IiBmaWxsLXJ1bGU9Im5vbnplcm8iLz48cGF0aCBkPSJNOSAzLjZjMS4zIDAgMi41LjQgMy40IDEuM0wxNSAyLjNBOSA5IDAgMCAwIDEgNWwzIDIuNGE1LjQgNS40IDAgMCAxIDUtMy43eiIgZmlsbD0iI0VBNDMzNSIgZmlsbC1ydWxlPSJub256ZXJvIi8+PHBhdGggZD0iTTAgMGgxOHYxOEgweiIvPjwvZz48L3N2Zz4=);
  background-color: white;
  background-repeat: no-repeat;
  background-position: 16px 14px;
  min-width: 120px;
}
.login-with-google-btn:hover {
  box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.04), 0 2px 4px rgba(0, 0, 0, 0.25);
}
.login-with-google-btn:active {
  background-color: #eeeeee;
}
.login-with-google-btn:focus {
  outline: none;
  box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.04), 0 2px 4px rgba(0, 0, 0, 0.25), 0 0 0 3px #c8dafc;
}
.login-with-google-btn:disabled {
  filter: grayscale(100%);
  background-color: #ebebeb;
  box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.04), 0 1px 1px rgba(0, 0, 0, 0.25);
  cursor: not-allowed;
}

.profile-icon-container {
  display: none;
}
@media (min-width: 1200px) {
  .profile-icon-container {
    display: block;
  }
}

.banner {
  height: 256px;
  width: 100%;
  padding-top: 71px;
  padding-bottom: 76px;
  background-image: url("/static/images/banner_raw.png");
  object-fit: contain;
}
.banner .page-title {
  font-family: "Playfair Display";
  font-weight: 500;
  color: white;
  font-size: 55px;
  text-align: center;
}
.banner .page-breadcrumbs {
  margin-top: 20px;
  text-align: center;
  color: white;
  line-height: 25px;
  font-weight: 400;
  font-size: 14px;
  font-family: "Roboto";
}
.banner .page-breadcrumbs .heading {
  color: white;
  text-decoration: none;
}
.banner .page-breadcrumbs .heading:hover {
  color: #ffbc00;
}

.row-table .row-with-img {
  margin-top: 12px;
  border: 1.5px solid #DDDDDD;
  display: grid;
  grid-template-columns: 3fr 14fr 3fr;
  grid-column-gap: 24px;
  padding: 12px 24px;
}
.row-table .row-with-img .img-container {
  aspect-ratio: 1;
}
.row-table .row-with-img .img-container img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.row-table .row-with-img .product-details {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}
.row-table .row-with-img .product-details span {
  font-size: 12px;
  color: #767676;
  margin-right: 1rem;
}
.row-table .row-with-img .product-details h2 {
  font-size: 18px;
  padding: 0;
  margin-bottom: 0;
}
.row-table .row-with-img .product-pack-container {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}
.row-table .row-with-img .product-pack-container div {
  padding-right: 3px;
}

button, .btn-caution, .btn-primary {
  width: 100%;
  font-family: "Roboto";
  display: grid;
  place-content: center;
  padding: 5px 0px;
  border: 0;
  height: 48px;
  cursor: pointer;
  transition: background-color 200ms, color 200ms;
}

.btn-primary {
  border: 1px solid #AE845F;
  background-color: #AE845F;
  color: #fff;
}
.btn-primary:hover {
  background-color: white !important;
  color: #AE845F;
}

.btn-caution {
  background-color: white !important;
  border: 1px solid #E33131;
  color: #E33131;
  font-size: 14px;
  text-decoration: none;
}
.btn-caution:hover {
  background-color: #E33131 !important;
  color: white;
}

.text-right {
  text-align: right;
}

.text-black {
  color: #e2e2e2;
}

.text-bold {
  font-weight: 600;
}

h1 {
  font-family: "Playfair Display";
  font-size: 24px;
  margin-bottom: 32px;
}

.d-8-2 {
  display: grid;
  grid-template-columns: 8fr 2fr;
  gap: 24px;
}

.d-1-1 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

sup {
  font-size: 12px;
  color: #E33131;
}

.input-section {
  margin: 32px 0;
}

.input-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.input-container input,
.input-container select,
.input-container .product-select {
  border: 1px solid #DDD;
  height: 50px;
  padding: 8px;
  background-color: white;
}
.input-container input:focus {
  outline: none;
}

.mt-1 {
  margin-top: 1rem !important;
}

.mt-2 {
  margin-top: 2rem !important;
}

.mt-3 {
  margin-top: 3rem !important;
}

.mt-4 {
  margin-top: 4rem !important;
}

.flex-row {
  display: flex;
  flex-direction: row;
  overflow: hidden;
  justify-content: space-around;
  gap: 1rem;
}

.flex-col {
  display: flex;
  flex-direction: column;
}

.w-300 {
  width: 300px;
}

a {
  text-decoration: none;
  color: #222;
}

.messages {
  list-style: none;
  margin: 1rem auto;
  width: 90%;
}
@media screen and (min-width: 1200px) {
  .messages {
    max-width: 1190px;
  }
}
.messages li {
  font-size: 14px;
  font-family: "Playfair Display";
  background-color: #F5F3F2;
  padding: 15px;
  margin-top: 15px;
}
.messages li a {
  color: black;
  text-decoration: underline;
  font-size: 14px;
  font-weight: 400;
}
.messages li a:hover {
  color: #9f876a;
}
.messages .error {
  color: #c50000;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.row-table .row-with-img {
  margin-top: 12px;
  border: 1.5px solid #DDDDDD;
  display: grid;
  grid-template-columns: 3fr 14fr 3fr;
  grid-column-gap: 24px;
  padding: 12px 24px;
}

.row-table .row-with-img .img-container {
  aspect-ratio: 1;
}

.row-table .row-with-img .img-container img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.row-table .row-with-img .product-details {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

.row-table .row-with-img .product-details span {
  font-size: 12px;
  color: #767676;
  margin-right: 1rem;
}

.row-table .row-with-img .product-details h2 {
  font-size: 18px;
  padding: 0;
  margin-bottom: 0;
}

.row-table .row-with-img .product-pack-container {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

.row-table .row-with-img .product-pack-container div {
  padding-right: 3px;
}

button,
.btn-primary,
.btn-caution {
  width: 100%;
  font-family: "Roboto";
  display: grid;
  place-content: center;
  padding: 5px 0px;
  border: 0;
  height: 48px;
  transition: background-color 200ms, color 200ms;
}

.btn-primary {
  border: 1px solid #AE845F;
  background-color: #AE845F;
  color: #fff;
}

.btn-primary:hover {
  background-color: white !important;
  color: #AE845F;
}

.btn-caution {
  background-color: white !important;
  border: 1px solid #E33131;
  color: #E33131;
  font-size: 14px;
  text-decoration: none;
}

.btn-caution:hover {
  background-color: #E33131 !important;
  color: white;
}

.text-right {
  text-align: right !important;
}

.text-black {
  color: #e2e2e2 !important;
}

.text-bold {
  font-weight: 600;
}

h1 {
  font-family: "Playfair Display";
  font-size: 24px;
}

.d-8-2 {
  display: grid;
  grid-template-columns: 8fr 2fr;
  gap: 24px;
}

.d-1-1 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

sup {
  font-size: 12px;
  color: #E33131;
}

.input-section {
  margin: 32px 0;
}

.input-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.input-container input,
.input-container select,
.input-container .product-select {
  border: 1px solid #DDD;
  height: 50px;
  padding: 8px;
  background-color: white;
}

.input-container input:focus {
  outline: none;
}

.mt-1 {
  margin-top: 1rem !important;
}

.mt-2 {
  margin-top: 2rem !important;
}

.mt-3 {
  margin-top: 3rem !important;
}

.mt-4 {
  margin-top: 4rem !important;
}

.flex-row {
  display: flex;
  flex-direction: row;
  overflow: hidden;
  justify-content: space-around;
  gap: 1rem;
}

.flex-col {
  display: flex;
  flex-direction: column;
}

.w-300 {
  width: 300px;
}

a {
  text-decoration: none;
  color: #222;
}

footer {
  grid-area: footer;
  background-color: #F5F3F2;
  padding: 30px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  font-family: "Roboto";
}
footer .footer-logo {
  width: 150px;
  height: 100px;
  object-fit: contain;
}
footer .footer-links {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}
@media screen and (max-width: 510px) {
  footer .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}
footer .footer-icons {
  display: flex;
  gap: 40px;
}
footer .footer-icons img {
  width: 20px;
  aspect-ratio: 1;
}
footer a:hover {
  color: #ae845f;
}

/*# sourceMappingURL=footer.css.map */
.pagination-container {
  text-align: center;
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 50px;
  margin-bottom: 100px;
  text-decoration: none !important;
}
.pagination-container .pagination-btn {
  background-color: white;
  color: #AE845F;
  border: 1px solid #AE845F;
  font-size: 14px;
  font-weight: 400;
  justify-content: center;
  width: 40px;
  line-height: 36px;
}
.pagination-container .current {
  color: white;
  background-color: #AE845F;
  border: 1px solid #AE845F;
}

.row-table .row-with-img {
  margin-top: 12px;
  border: 1.5px solid #DDDDDD;
  display: grid;
  grid-template-columns: 3fr 14fr 3fr;
  grid-column-gap: 24px;
  padding: 12px 24px;
}
.row-table .row-with-img .img-container {
  aspect-ratio: 1;
}
.row-table .row-with-img .img-container img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.row-table .row-with-img .product-details {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}
.row-table .row-with-img .product-details span {
  font-size: 12px;
  color: #767676;
  margin-right: 1rem;
}
.row-table .row-with-img .product-details h2 {
  font-size: 18px;
  padding: 0;
  margin-bottom: 0;
}
.row-table .row-with-img .product-pack-container {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}
.row-table .row-with-img .product-pack-container div {
  padding-right: 3px;
}

button, .btn-primary, .btn-caution {
  width: 100%;
  font-family: "Roboto";
  display: grid;
  place-content: center;
  padding: 5px 0px;
  border: 0;
  height: 48px;
  cursor: pointer;
  transition: background-color 200ms, color 200ms;
}

.btn-primary {
  border: 1px solid #AE845F;
  background-color: #AE845F;
  color: #fff;
}
.btn-primary:hover {
  background-color: white !important;
  color: #AE845F;
}

.btn-caution {
  background-color: white !important;
  border: 1px solid #E33131;
  color: #E33131;
  font-size: 14px;
  text-decoration: none;
}
.btn-caution:hover {
  background-color: #E33131 !important;
  color: white;
}

.text-right {
  text-align: right;
}

.text-black {
  color: #e2e2e2;
}

.text-bold {
  font-weight: 600;
}

h1 {
  font-family: "Playfair Display";
  font-size: 24px;
  margin-bottom: 32px;
}

.d-8-2 {
  display: grid;
  grid-template-columns: 8fr 2fr;
  gap: 24px;
}

.d-1-1 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

sup {
  font-size: 12px;
  color: #E33131;
}

.input-section {
  margin: 32px 0;
}

.input-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.input-container input,
.input-container select,
.input-container .product-select {
  border: 1px solid #DDD;
  height: 50px;
  padding: 8px;
  background-color: white;
}
.input-container input:focus {
  outline: none;
}

.mt-1 {
  margin-top: 1rem !important;
}

.mt-2 {
  margin-top: 2rem !important;
}

.mt-3 {
  margin-top: 3rem !important;
}

.mt-4 {
  margin-top: 4rem !important;
}

.flex-row {
  display: flex;
  flex-direction: row;
  overflow: hidden;
  justify-content: space-around;
  gap: 1rem;
}

.flex-col {
  display: flex;
  flex-direction: column;
}

.w-300 {
  width: 300px;
}

a {
  text-decoration: none;
  color: #222;
}

.popup, .wishlist-popup {
  display: none;
  position: fixed;
  z-index: 12;
  padding: 2rem !important;
  width: 265px;
  top: 0%;
  left: 50%;
  transform: translate(-50%, 0%);
  padding: 1rem;
  background: rgb(246, 243, 243) !important;
  position: fixed;
}
.popup .wishlist-popup-header, .wishlist-popup .wishlist-popup-header {
  display: flex;
  justify-content: space-between;
}
.popup h1, .wishlist-popup h1 {
  font-family: "Playfair Display" !important;
  font-size: 18px;
  font-weight: 400;
}
.popup .close-icon, .wishlist-popup .close-icon {
  margin-right: 6px;
  position: fixed;
  left: 95%;
  top: 1%;
}
.popup .wishlist-close-icon, .wishlist-popup .wishlist-close-icon {
  font-weight: 600;
  text-decoration: none !important;
}
.popup .btn-outline, .wishlist-popup .btn-outline {
  color: #AE845F;
  border: 1px solid #AE845F;
  background-color: white;
}
.popup .btn-outline:hover, .wishlist-popup .btn-outline:hover {
  background-color: #AE845F;
  color: white;
}
.popup #create-new-wishlist input, .wishlist-popup #create-new-wishlist input {
  padding: 10px;
  width: 100%;
}
.popup #create-new-wishlist .wishlist-submit-btn, .wishlist-popup #create-new-wishlist .wishlist-submit-btn {
  background-color: #AE845F;
  color: #DDD;
  font-family: "Roboto";
  padding: 10px;
}
@media screen and (min-width: 1200px) {
  .popup body, .wishlist-popup body {
    background-attachment: fixed;
  }
}

.popup::before, .wishlist-popup::before {
  content: " ";
  z-index: -100;
  height: 2000vh;
  width: 2000vw;
  position: absolute;
  top: -50%;
  left: -50%;
}

.wishlist-popup {
  border-radius: 20px;
}
.wishlist-popup #all-wishlists {
  margin: 0;
  overflow-y: scroll !important;
  height: 250px;
}
.wishlist-popup #all-wishlists .wishlist-checkbox-container {
  height: 48px;
  align-items: center;
  display: flex;
  flex-direction: row;
  gap: 0.7rem;
}
.wishlist-popup #all-wishlists .wishlist-checkbox-container input {
  height: 1rem;
  width: 1rem;
}

#products-section .products-container .product-card .product-image .add-to-cart, #products-section .products-container .product-card .product-image .wishlist {
  transition-delay: 200ms;
  transition: background-color 800ms;
}

/* GSTYLEs */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto";
}

h1 {
  font-weight: normal;
  font-size: inherit;
}

.heading-text {
  font-family: "Playfair Display";
  font-weight: 400;
  color: #222222;
  font-size: 24px;
}

.mb-17 {
  margin-bottom: 17px;
}

#product-filters {
  padding-top: 2rem;
}

.input-flex {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.input-flex h1 {
  margin: 0;
  font-size: 24px;
}
.input-flex .filter-price {
  display: flex;
  gap: 5px;
}
.input-flex .filter-price .filter-box {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  max-width: 150px;
}
.input-flex .filter-price .filter-box input {
  width: 70%;
  border: none;
}
.input-flex .filter-price .filter-box i {
  padding: 0 13px;
  cursor: pointer;
  font-size: 18px;
  color: #767676;
}
.input-flex .btn-primary {
  width: 40%;
  font-size: 16px;
}

.text-active {
  color: rgb(174, 132, 95);
}

.flex {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  align-items: center;
}

.flex-row {
  display: flex;
  justify-content: space-between;
}

.primary-button {
  height: 45px;
  width: 70px;
  background-color: rgb(174, 132, 95);
  color: white;
  outline: none;
  border: none;
  font-size: 14px;
}

.primary-button:hover {
  background-color: rgb(81, 67, 55);
  cursor: pointer;
}

main {
  max-width: 1190px;
  margin: 0 auto;
  padding: 0 5px;
}
@media screen and (min-width: 1200px) {
  main {
    display: grid;
    grid-template-columns: 1fr 3fr;
    grid-template-rows: 40px auto;
    column-gap: 1rem;
    margin-top: 1rem;
    grid-template-areas: "filters sort-box" "filters products" "footer  footer";
  }
}

.next-page-container {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 50px;
  margin-bottom: 100px;
}

.next-page-btn {
  color: white;
  background-color: rgb(174, 132, 95);
  border: 1px solid rgb(174, 132, 95);
  font-size: 14px;
  font-weight: 400;
  justify-content: center;
  width: 40px;
  line-height: 36px;
}

.sort-box {
  grid-area: sort-box;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0 1rem;
}
@media screen and (min-width: 1200px) {
  .sort-box {
    align-items: end;
  }
}
.sort-box .input-search {
  display: flex;
  flex-direction: row;
  overflow: visible;
}
.sort-box .search-bar input {
  padding: 1rem;
  outline: none;
}
.sort-box .input-search #search-button {
  background-color: #AE845F;
  color: #FFFFFF;
  width: fit-content;
  text-align: center;
  font-weight: 300;
  padding: 0.5rem 1rem;
  outline: none;
  border: none;
}
.sort-box .input-search input {
  width: 100%;
}
@media screen and (min-width: 1200px) {
  .sort-box .input-search input {
    width: unset !important;
  }
}
.sort-box #search-results {
  display: none;
  position: absolute;
  z-index: 25;
  background-color: white;
  padding: 0;
  border: 1px solid #ddd;
  border-width: 0 1px;
}
@media screen and (min-width: 1200px) {
  .sort-box #search-results {
    position: relative;
    width: unset;
  }
}
.sort-box #search-results p {
  font-size: 14px;
  border-bottom: 1px solid #ddd;
  cursor: pointer;
  padding: 0.4rem 0.5rem;
  margin-bottom: 0;
  color: #222;
  text-transform: capitalize;
}
.sort-box #filter-icon {
  height: 45px;
  aspect-ratio: 1;
  background-color: white;
  border: 1px solid black;
  transition: background-color 200ms;
  display: inline-block;
}
@media screen and (min-width: 1200px) {
  .sort-box #filter-icon {
    display: none;
  }
}

#product-filters {
  display: none;
  grid-area: filters;
  padding-inline: 1rem;
}
@media screen and (min-width: 1200px) {
  #product-filters {
    display: block;
    overflow: hidden;
  }
}
#product-filters .product-categories {
  color: #222222;
  font-size: 15px;
  list-style: none;
}
#product-filters .product-categories input {
  accent-color: #AE845F;
  width: 15px;
  height: 15px;
}
#product-filters .product-categories > li {
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  line-height: 35px;
}
#product-filters .product-categories > li > p:nth-child(1):hover {
  color: rgb(174, 132, 95);
  cursor: pointer;
}
#product-filters li > p:nth-child(2) {
  color: rgb(177, 177, 177);
}
#product-filters .color-li span, #product-filters .color-li input {
  display: block;
}
#product-filters .color-li div {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  column-gap: 5px;
}
#product-filters .color-li .color-box {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 2px;
  height: 24px;
  width: 24px;
}
#product-filters .product-tags {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
}
#product-filters .product-tags > p {
  height: 45px;
  width: 70px;
  background-color: white;
  color: rgb(81, 67, 55);
  outline: none;
  border: 1px solid #ebe7e5;
  font-size: 14px;
  display: grid;
  place-content: center;
}

#products-section {
  grid-area: products;
}
#products-section .products-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 1rem;
  row-gap: 2rem;
  margin: 1rem;
}
@media screen and (min-width: 1200px) {
  #products-section .products-container {
    max-width: 1190px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    margin-inline: auto;
    column-gap: 2rem;
    row-gap: 3rem;
    overflow: hidden;
  }
}
#products-section .products-container .product-card {
  overflow: hidden;
}
@media screen and (min-width: 1200px) {
  #products-section .products-container .product-card {
    text-align: center;
  }
}
#products-section .products-container .product-card .product-image {
  overflow: hidden;
  margin-bottom: 1rem;
  position: relative;
  height: 343px !important;
}
#products-section .products-container .product-card .product-image img {
  position: relative;
  z-index: 3;
  top: 0;
  height: 343px !important;
  width: 100%;
  object-fit: cover;
  transition: opacity 500ms ease-in-out;
}
@media screen and (min-width: 1200px) {
  #products-section .products-container .product-card .product-image img {
    height: 343px;
  }
}
#products-section .products-container .product-card .product-image img:first-of-type + img {
  opacity: 0;
  display: none;
}
@media screen and (min-width: 1200px) {
  #products-section .products-container .product-card .product-image img:first-of-type + img {
    display: block;
    position: absolute;
    height: 343px !important;
    opacity: 1;
    z-index: 2 !important;
    top: 0;
  }
}
#products-section .products-container .product-card .product-image .label {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.28px;
  line-height: 25.2px;
  font-family: "Roboto";
  position: absolute;
  left: 15px;
  top: 15px;
  z-index: 4;
  color: rgb(254, 251, 251);
  cursor: default;
}
#products-section .products-container .product-card .product-image .label span {
  margin-bottom: 5px;
  width: 42px;
  height: 18px;
  display: grid;
  place-content: center;
  cursor: default;
  background-color: rgb(214, 92, 104);
}
#products-section .products-container .product-card .product-image .label .blue {
  background-color: rgb(34, 54, 104);
  word-wrap: normal;
  font-size: 9px;
}
#products-section .products-container .product-card .product-image .options-container {
  z-index: 20;
  position: absolute;
  right: 15px;
  top: 15px;
  display: block;
  transition: top 0.5s ease-out, right 0.5s ease-in-out, opacity 500ms ease-in-out;
}
#products-section .products-container .product-card .product-image .wishlist {
  z-index: 20;
  position: relative;
  right: -70px;
  background-color: white;
  border-radius: 50%;
  display: grid;
  place-content: center;
  height: 44px;
  width: 44px;
  cursor: pointer;
}
#products-section .products-container .product-card .product-image .wishlist svg {
  width: 15px;
  height: 15px;
}
#products-section .products-container .product-card .product-image .wishlist .add-to-wishlist-popup {
  display: grid;
  place-content: center;
  opacity: 0;
  position: absolute;
  z-index: 3;
  height: 30px;
  width: 100px;
  word-wrap: none;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.28px;
  line-height: 12px;
  font-family: "Roboto";
  right: 55px;
  top: 8px;
  background-color: rgb(34, 34, 34);
  color: white;
  transition: opacity 500ms ease-in-out;
}
#products-section .products-container .product-card .product-image .wishlist .add-to-wishlist-popup:not(:hover) {
  transition: opacity 0;
}
#products-section .products-container .product-card .product-image .wishlist .add-to-wishlist-popup .triangle {
  position: absolute;
  top: 7.5px;
  right: -7px;
  border-top: 7.5px solid transparent;
  border-bottom: 7.5px solid transparent;
  border-left: 7.5px solid rgb(34, 34, 34);
}
#products-section .products-container .product-card .product-image .wishlist:hover {
  background-color: rgb(34, 34, 34);
  color: white;
  fill: white;
  opacity: 1 !important;
}
#products-section .products-container .product-card .product-image .wishlist:hover .add-to-wishlist-popup {
  opacity: 1;
}
#products-section .products-container .product-card .product-image .add-to-cart {
  z-index: 3;
  opacity: 0;
  position: absolute;
  background-color: white;
  color: #222;
  width: 80%;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.28px;
  line-height: 36px;
  height: 48px;
  bottom: -60px;
  left: 50%;
  transform: translate(-50%, 0);
  display: block;
  font-family: "Roboto";
  display: grid;
  place-content: center;
  text-transform: uppercase;
  cursor: pointer;
  transition: bottom 0.5s ease-out, bottom 0.5s ease-in-out, opacity 500ms ease-in-out;
}
#products-section .products-container .product-card .product-image .add-to-cart:hover {
  background-color: #222;
  color: white;
}
#products-section .products-container .product-card .product-description {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
#products-section .products-container .product-card .product-description p {
  font-family: "Roboto";
}
#products-section .products-container .product-card .product-description .product-brand {
  color: rgb(174, 132, 95);
  font-size: 12px;
  font-weight: 500;
}
#products-section .products-container .product-card .product-description .product-name {
  font-size: 14px;
  font-weight: 400;
  color: #222;
  text-align: center;
  cursor: pointer;
}
#products-section .products-container .product-card .product-description .product-name:hover {
  color: rgb(174, 132, 95);
}
#products-section .products-container .product-card .product-description .product-price {
  font-size: 18px;
  font-weight: 500;
  color: #222;
}
#products-section .products-container .product-card .product-description .product-price span {
  font-size: 16px;
  font-weight: 400;
  color: #767676;
  text-decoration: line-through;
}

/*# sourceMappingURL=shop_new.css.map */
