/** Shopify CDN: Minification failed

Line 541:16 The "-" operator only works if there is whitespace on both sides

**/
/* Imported Font */

@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=Cormorant:ital,wght@0,300..700;1,300..700&display=swap");

/* Imported Font End Here */

/* Discover Collection Start Here */
.discover-categories-wrapper {
  display: flex;
  flex-direction: column;
}
.discover-categories-content {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}
.discover-categories-title h2 {
  text-align: center;
  font-size: 45px;
  text-transform: uppercase;
  color: #000000;
  font-weight: bold;
  font-family: "Cormorant Garamond", serif;
}

.featured-category {
  flex: 1 1 48%;
  text-align: center;
}

.small-categories {
  flex: 1 1 48%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 7px;
}

.category-box {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  cursor: pointer;
}

.category-box img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  display: block;
  transition: transform 0.3s ease;
}

.category-box:hover img {
  transform: scale(1.05);
}

.category-name {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgb(245 239 230 / 40%);
  color: black;
  font-weight: bold;
  font-size: 30px;
  text-transform: uppercase;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 20px;
  padding: 10px;
  font-family: "Cormorant Garamond", serif;
}

@media screen and (max-width: 768px) {
  .category-name {
    opacity: 1;
  }
}

.category-box:hover .category-name {
  opacity: 1;
}
/* Discover Collection End Here */

/* Featured Collection Start */
.collection-title {
  color: #000000;
  font-weight: bold;
  font-family: "Cormorant Garamond", serif;
}
/* Featured Collection End */

/* Product Card */
.full-unstyled-link {
  text-align: center;
  font-family: "Cormorant", serif;
  font-style: italic;
  font-size: 16px;
  color: #000000;
}

.card-information .price {
  font-family: "Cormorant", serif;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  font-style: italic;
  color: #000000 !important;
}

.card_brand_heading {
  font-family: "Cormorant Garamond", serif;
  font-weight: bold;
  font-size: 20px;
  text-align: center;
  color: #000000 !important;
}

.card_brand_heading a {
  text-decoration: none;
  text-transform: uppercase;
  color: #000000 !important;
}
/* Product Card End */

/* Announcement Bar Changes */

.announcement-bar .slider-button--prev,
.announcement-bar .slider-button--next {
  display: none;
}
.announcement-bar .announcement-bar__message {
  font-size: 17px;
}

/* Announcement Bar End */

/* Image Banner */
.custom_banner_heading {
  font-family: "Cormorant Garamond", serif !important;
  font-weight: bold !important;
  font-size: 45px !important;
}
.custom_banner_text p {
  font-family: "Cormorant", serif !important;
  font-size: 20px !important;
  color: #000000 !important;
}

.custom-banner_buttons a {
  border-radius: 0px;
  border: 1px solid #000000;
  font-family: "Cormorant", serif;
  font-size: 16px;
  text-transform: uppercase;
  color: #000000;
  padding: 15px 40px;
  text-decoration: none;
}
/* Image Banner End */

/* Archive */
.archive-section {
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 0;
  flex-direction: row;
  position: relative;
  padding: 40px;
}

@media screen and (max-width: 768px) {
  .archive-section {
    padding: 10px;
  }
}

.left-side,
.right-side {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
}

.left-side img {
  width: 100%;
  height: auto;
}

.right-side {
  background-color: #f5efe6;
  text-align: left;
  padding: 40px;
  z-index: 2;
}

.right-side h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #000000;
}

.right-side p {
  font-family: "Cormorant", serif;
  font-size: 16px;
  line-height: 1.5;
  color: #000000;
  margin: 4.5px 0 !important;
  text-align: center;
}

.archive-button {
  display: inline-block;
  font-family: "Cormorant Garamond", serif;
  padding: 10px 20px;
  color: black;
  font-weight: bold;
  text-decoration: none;
}

.archive-separator {
  border: none;
  border-top: 2px solid #000;
  margin: 7px;
  width: 70%;
}

/* MOBILE STYLES */
@media screen and (max-width: 768px) {
  .archive-section {
    flex-direction: column;
  }

  .left-side {
    position: relative;
    width: 100%;
  }

  .right-side {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    width: 90%;
    background-color: rgba(245, 239, 230, 0.8); /* Light semi-transparent bg */
    text-align: center;
    z-index: 2;
    border-radius: 10px;
  }

  .right-side h2,
  .right-side p,
  .archive-button {
    color: #000;
  }
}

/* Archive End */

/* Trending */
.trending-section {
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 0;
  flex-direction: row;
  position: relative;
  gap: 35px;
  padding: 40px;
}

.left-side-trending,
.right-side-trending {
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  position: relative;
  border-radius: 20px;
}

.left-side-trending img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.right-side-trending {
  background-color: #f5efe6;
  text-align: left;
  padding: 40px;
  z-index: 2;
}

.right-side-trending h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #000000;
}

.right-side-trending p {
  font-family: "Cormorant", serif;
  font-size: 16px;
  line-height: 1.5;
  color: #000000;
  margin: 4.5px 0 !important;
}

.trending-button {
  display: inline-block;
  font-family: "Cormorant Garamond", serif;
  padding: 10px 0px;
  color: #000;
  font-weight: 700;
  text-decoration: none;
}

.trending-separator {
  border: none;
  border-top: 2px solid #000;
  margin: 7px 0;
  width: 70%;
}

/* MOBILE STYLES */
@media screen and (max-width: 768px) {
  .trending-section {
    flex-direction: column;
    padding: 10px;
  }

  .left-side-trending {
    position: relative;
    width: 100%;
  }

  .right-side-trending {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    width: 90%;
    background-color: rgba(245, 239, 230, 0.8); /* Light semi-transparent bg */
    text-align: center;
    z-index: 2;
    border-radius: 10px;
    align-items: center;
  }

  .right-side-trending h2,
  .right-side-trending p,
  .trending-button {
    color: #000;
  }
}

/* Trending End */

/* Related products */

.related-products__heading {
  font-family: "Cormorant Garamond", serif;
  color: #000000;
  font-weight: bold;
}

.button {
  font-family: "Cormorant Garamond", serif !important;
  background: #5e4b43;
}

.button span {
  color: white;
}

/* Showroom */

/* General Section Styles */
.image-text-section {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

/* Content Wrapper */
.content-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Image and Text Columns */
.image-text-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 20px;
}

.image-column {
  flex: 1;
  max-width: 50%;
  margin-right: 30px;
}

.image-column img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.text-column {
  flex: 1;
  max-width: 50%;
}

.text-column h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: bold;
  font-size: 30px;
  margin-bottom: 20px;
  color: #333;
}

.text-column p {
  font-family: "Cormorant", serif;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #000000;
}

.text-column .btn {
  display: inline-block;
  padding: 12px 25px;
  background-color: #007bff;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  text-transform: uppercase;
}

.text-column .btn:hover {
  background-color: #0056b3;
}

.rich-text__heading {
  font-family: "Cormorant Garamond", serif;
  font-weight: bold;
  color: #000000;
}

/* =================================
   Responsive Styles
   ================================ */

@media (max-width: 768px) {
  .content-wrapper {
    flex-direction: column;
    padding: 20px;
  }

  .image-text-container {
    flex-direction: column;
    gap: 20px;
  }

  .image-column,
  .text-column {
    max-width: 100%;
    flex: 1 1 100%;
    margin-right: 0;
  }

  .text-column h2 {
    font-size: 24px;
    text-align: center;
  }

  .text-column p {
    font-size: 15px;
    text-align: center;
  }

  .text-column .btn {
    display: block;
    margin: 0 auto;
  }
}

.header-wrapper .list-menu__item {
}

li[mega-menu="true"]:hover mega-menu,
mega-menu:hover {
  display: flex;
}

mega-menu {
  display: none;
  flex-direction: row;
  gap: 10px;
  justify-content: space-around;
  padding: 56px 42px;
  position: absolute;
  right: 0;
  top: calc(100%-26px);
  left: 0;
  transform: translateY(0);
  background-color: white;
}

.mega-menu__links h5 {
  margin-top: 0px;
  font-weight: bold;
  font-size: 15px;
  text-transform: uppercase;
  color: #000000;
}

.mega-menu__links > div {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  height: 400px;
  column-gap: 50px;
  width: 100%;
}

.mega-menu__links > div > a {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 15px;
  text-decoration: none;
  color: black;
}

.mega-menu__featured {
  display: flex;
  flex-direction: row;
  gap: 50px;
  justify-content: space-between;
}

.mega-menu__featured > div .mega-menu__featured-image {
  width: 204px;
  height: 204px;
}
.mega-menu__featured img {
  border-radius: 20px;
}

.mega-menu__featured a {
  text-decoration: none;
}

.mega-menu__featured h5 {
  font-weight: bold;
  font-size: 15px;
  text-transform: uppercase;
  color: #000000;
  text-align: center;
}

.header-localization:not(.menu-drawer__localization)
  localization-form:only-child
  .localization-form__select
  > span {
  text-transform: uppercase;
}

.footer-block--newsletter {
  flex-direction: column;
  align-items: flex-start !important;
  margin-top: 0 !important;
}

.footer-block__newsletter {
  padding: 0px !important;
}

.footer-block__newsletter h2 {
  margin-bottom: 20px !important;
}

.footer-block__newsletter .newsletter-form__field-wrapper .field__input {
  border-radius: 5px;
  padding-left: 0;
}

.footer-block__newsletter .newsletter-form__field-wrapper .field__input:focus {
  border: none;
  box-shadow: none;
}

.footer__list-social--container {
  padding-left: 0 !important;
}

.footer__list-social--container h5 {
  padding-left: 0 !important;
}

.footer__list-social--container .list-social__item a:first-child {
  padding-left: 0 !important;
}

.footer-block__newsletter button {
  border-color: white;
}

.footer-block__newsletter .field__label,
.footer-block__newsletter .customer .field label {
  left: auto !important;
  right: auto !important;
}

.footer-block__newsletter h2 {
  margin-bottom: 12px;
}

.footer-block__newsletter p {
  font-size: 12px;
}

.footer-block__newsletter p,
.footer-block__newsletter h2 {
  max-width: 36rem;
}

.newsletter-form__field-wrapper .field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.newsletter-form__button {
  position: static;
  width: 100% !important;
  padding-top: 10px;
  border: 2px solid black;
  padding-bottom: 10px;
  border-radius: 5px;
}

.newsletter-form__field-wrapper .field:after {
  border: none !important;
  box-shadow: none !important;
}

@media screen and (min-width: 750px) {
  .footer__content-top.page-width {
    padding: 0 4rem;
  }
}

.footer {
  padding-top: 25px !important;
}

.footer__blocks-wrapper {
  padding-top: 25px;
  padding-bottom: 50px;
}

.footer__list-social--container {
  padding-left: 13px;
  padding-right: 13px;
  padding-bottom: 10px;
}

.footer__list-social--container h5 {
  font-size: 12px;

  font-weight: bold;
  text-transform: uppercase;
  padding-left: 11px;
  margin-bottom: 0px;
}

.footer__list-social--container .list-social {
  justify-content: flex-start;
}

@media (max-width: 750px) {
  .footer-block__newsletter,
  .footer__list-social--container {
    margin-left: auto;
    margin-right: auto;
  }
}

.swiper-button-prev,
.swiper-button-next {
  width: fit-content !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  color: black;
  font-size: 10px !important;
}

.header-localization:not(.menu-drawer__localization)
  localization-form:only-child
  .localization-form__select
  > span {
  max-width: unset !important;
}

.custom-showroom--container .text-column {
  background-color: #f5efe6;
  border-radius: 20px;
  padding: 20px;
}

.custom-showroom--container .text-column h2 {
  font-size: 20px;
}

@media (max-width: 768px) {
  .custom-showroom--container .text-column {
    position: absolute;
    background-color: rgba(245, 239, 230, 0.8);
  }
}

@media (max-width: 600px) {
  .custom-showroom--container .text-column h2 {
    font-size: 15px;
    margin-bottom: 12px;
  }

  .custom-showroom--container .text-column p {
    margin-bottom: 12px;
  }

  .custom-showroom--container .text-column {
    padding: 10px;
  }
}

.product__brand {
  display: flex;
  flex-direction: row;
  gap: 10px;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
}

.swym-notification-wishlist .swym-powered-by-text {
  display: none;
}

.swym-header-launcher-icon {
  color: black;
  display: flex;
  height: 4.4rem;
  width: 4.4rem;
  padding: 0;
  justify-content: center;
  align-items: center;
}

@media (max-width: 475px) {
  .header-localization .disclosure .localization-form__select {
    font-size: 1rem;
  }

  .header__icons.page-width {
    padding: 0;
  }

  .header-localization:not(.menu-drawer__localization)
    .localization-form:only-child
    .localization-form__select {
    display: none;
  }
}

/* Wishlist */

.swym-wishlist-detail-header {
  display: none !important;
}

.swym-ui-component .swym-htc-tabs {
  display: flex !important;
  flex-direction: column !important;
}

.swym-tab-sfl {
  display: none !important;
}
.swym-ui-component .swym-wishlist-grid li {
  width: 29% !important;
}

.swym-ui-component .swym-wishlist-grid .swym-wishlist-item .swym-variant-title {
  text-align: center !important;
}

.swym-ui-component .swym-wishlist-grid .swym-wishlist-item .swym-product-price {
  justify-content: center !important;
}

.swym-ui-component .swym-wishlist-grid .swym-wishlist-image-wrapper {
  height: auto !important;
}

.swym-ui-component .swym-wishlist-grid .swym-wishlist-item .swym-title {
  white-space: normal !important;
  text-align: center !important;
}

.swym-ui-component .swym-wishlist-grid {
  justify-content: center !important;
}

.footer-block__heading svg {
  display: none;
}

@media (max-width: 768px) {
  .link-list-footer {
    max-height: 0px !important;
    visibility: hidden !important;
  }

  .footer-block__heading {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .footer-block__heading svg {
    display: block;
    height: 1rem;
  }

  .footer-block__heading.fo-active svg {
    transform: rotate(180deg);
  }

  .link-list-footer.fo-content-active {
    max-height: 100% !important;
    visibility: visible !important;
  }

  .footer-block__newsletter p,
  .footer-block__newsletter h2 {
    justify-content: center;
  }

  .footer-block__newsletter .newsletter-form__field-wrapper .field__input {
    padding-left: 5rem;
    text-align: center;
  }

  .footer-block__newsletter .field__label,
  .footer-block__newsletter .customer .field label {
    left: calc(var(--inputs-border-width) + 2rem) !important;
    right: calc(var(--inputs-border-width) + 2rem) !important;
  }

  .footer__list-social--container h5 {
    text-align: center;
  }

  .footer__list-social--container .list-social__item a:first-child {
    padding: 1.1rem !important;
  }

  .footer__list-social--container {
    padding-right: 0;
    padding-bottom: 0;
  }
}

.product-form__buttons {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.product-form__buttons > * {
  flex: 1;
  width: 50%;
  min-width: unset !important;
}

.product-form__buttons > .button {
  padding: 0 6px;
}

li.icon-with-text__item span,
li.icon-with-text__item svg {
  color: black !important;
  fill: black !important;
}

.accordion-summary h3,
.summary__title h2 {
  font-weight: 600 !important;
}

.swym-storefront-layout-grid-item-add-to-cart-button {
  background: #5e4b43 !important;
  font-family: "Cormorant Garamond", serif !important;
}

.swym-storefront-layout-header {
  background: #f5efe6 !important;
}

nav.header__inline-menu {
  width: 100% !important;
  flex: 1;
}

.centered-logo-menu {
  justify-content: space-evenly !important;
}

.centered-logo-menu li:last-child a {
  padding-right: 0 !important;
}

@media screen and (max-width: 990px) {
  .header__inline-menu-logo {
    justify-content: flex-end !important;
  }
  .header__inline-menu-logo .header__logo {
    display: none !important;
  }
}


.template-page-policy .rte *{
  color:black;
}

.swym-ui-component .swym-wishlist-title-container>span{
  color:black;
}

.swym-ui-component .swym-wishlist-title-container>span.swym-tab-active{
  color:white;
}

.template-page .rte *{
color:black;
  
}
