/*
Theme Name: Delicatus Boutique
Description: Delicatus - Custom theme
Version: 1.0.0
Author: m'enfin
Author URI: https://www.menfin.be
Requires at least: 6.7.2
Tested up to: 6.7.2
Requires PHP: 8.2
Text Domain: delicatus
*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");
:root {
  --blue: #1a1d39;
  --gold: #e7c869;
  --white: #FFFFFF;
  --black: #000000;
  --gray: #888888;
  --gray-light: #dee2e6;
}

@media (max-width: 1200px) {
  .wp-block-columns.custom-break-points:not(.is-not-stacked-on-mobile) {
    --columns: 4;
  }
  .wp-block-columns.custom-break-points:not(.is-not-stacked-on-mobile) > .wp-block-column {
    flex-basis: calc(100% / var(--columns) - var(--wp--style--block-gap) + var(--wp--style--block-gap) / var(--columns)) !important;
    flex-grow: 1;
  }
}
/* change width of column when screen is 781px and smaller */
@media (max-width: 781px) {
  .wp-block-columns.custom-break-points:not(.is-not-stacked-on-mobile) {
    --columns: 2;
  }
  .wp-block-columns.custom-break-points:not(.is-not-stacked-on-mobile) > .wp-block-column {
    width: 40%;
    flex-grow: 1;
  }
}
/* change width of column when screen is 500px and smaller */
@media (max-width: 500px) {
  .wp-block-columns.custom-break-points:not(.is-not-stacked-on-mobile) {
    --columns: unset;
  }
  .wp-block-columns.custom-break-points:not(.is-not-stacked-on-mobile) > .wp-block-column {
    flex-basis: 100% !important;
  }
}
details {
  border-top: solid 1px var(--blue);
  box-sizing: border-box;
}
details summary {
  outline: none;
  display: block;
  position: relative;
  padding: 10px 50px 10px 0;
  min-height: 35px;
  line-height: 35px;
  font-size: 20px;
  font-weight: 400;
}
details summary::-webkit-details-marker {
  display: none;
}
details summary:focus {
  border: none;
}
details summary::marker {
  content: "" !important;
}
details summary + p {
  margin-top: 8px;
}
details summary:before {
  content: "";
  position: absolute;
  width: 25px;
  height: 25px;
  top: 10px;
  right: 0;
  background: url(images/icon-more-blue.svg) 0 0 no-repeat;
  -webkit-background-size: 100% 100%;
  -moz-background-size: 100% 100%;
  -o-background-size: 100% 100%;
  background-size: 100% 100%;
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -ms-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
}
details[open] summary:before {
  transform: rotate(225deg);
}
details > :not(summary):last-child {
  margin-bottom: 25px;
}
@media screen and (max-width: 991px) {
  details {
    width: 100%;
  }
  details summary,
  details details {
    font-size: 18px;
  }
  details summary {
    padding: 10px 0 10px 50px;
    text-align: right;
  }
  details summary:before {
    right: auto;
    left: 0;
  }
}

body {
  font-family: "Noto Sans", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Playfair Display", serif;
}

.fs-7 {
  font-size: 12px;
}

.btn, .single-product .button, .wp-element-button {
  -webkit-transition: background 0.3s, color 0.3s, border 0.3s;
  -moz-transition: background 0.3s, color 0.3s, border 0.3s;
  -ms-transition: background 0.3s, color 0.3s, border 0.3s;
  -o-transition: background 0.3s, color 0.3s, border 0.3s;
  transition: background 0.3s, color 0.3s, border 0.3s;
  font-size: 14px !important;
  line-height: 20px !important;
  text-align: center;
  padding: 6px 12px !important;
  border: solid 1px transparent;
  -webkit-border-radius: 6px !important;
  -moz-border-radius: 6px !important;
  border-radius: 6px !important;
  text-transform: none;
}
.btn.btn-primary, .single-product .button, .btn-primary.wp-element-button {
  background-color: var(--blue) !important;
  border: solid 1px var(--blue) !important;
  color: var(--white) !important;
}
.btn.btn-primary:hover, .single-product .button:hover, .btn-primary.wp-element-button:hover {
  background-color: var(--white) !important;
  border: solid 1px var(--blue) !important;
  color: var(--blue) !important;
}

nav.navbar {
  background-color: var(--blue);
  margin-bottom: 5px;
}
nav.navbar .navbar-brand {
  -webkit-transition: padding 0.3s;
  -moz-transition: padding 0.3s;
  -ms-transition: padding 0.3s;
  -o-transition: padding 0.3s;
  transition: padding 0.3s;
  padding: 10px 0 5px 0;
  display: block;
}
nav.navbar .navbar-brand img {
  -webkit-transition: width 0.3s, height 0.3s;
  -moz-transition: width 0.3s, height 0.3s;
  -ms-transition: width 0.3s, height 0.3s;
  -o-transition: width 0.3s, height 0.3s;
  transition: width 0.3s, height 0.3s;
  width: 180px;
}
nav.navbar .navbar-toggler,
nav.navbar a.nav-link {
  color: var(--white);
}
nav.navbar .navbar-toggler:hover,
nav.navbar a.nav-link:hover {
  color: var(--gold);
}
nav.navbar .navbar-toggler.active,
nav.navbar a.nav-link.active {
  color: var(--gold);
  font-weight: bold;
}
nav.navbar.scrolled .navbar-brand {
  padding: 4px 0 2px 0;
}
nav.navbar.scrolled .navbar-brand img {
  width: 100px;
}
nav.navbar .offcanvas.show {
  background-color: var(--white);
}
nav.navbar .offcanvas.show .navbar-toggler,
nav.navbar .offcanvas.show a.nav-link {
  color: var(--blue) !important;
}
nav.navbar .offcanvas.show .navbar-toggler:hover,
nav.navbar .offcanvas.show a.nav-link:hover {
  color: var(--black) !important;
}

footer {
  background-color: var(--blue);
  color: var(--white);
}
footer #features {
  font-size: 14px;
  font-weight: 300;
  text-align: center;
}
footer #features img {
  max-width: 50px;
}
@media only screen and (min-width: 768px) {
  footer #features img {
    max-width: 80px;
  }
}
footer a.nav-link {
  font-size: 14px;
  font-weight: 300;
}
footer a.nav-link:hover {
  text-decoration: underline;
}
footer a.nav-link.active {
  color: var(--gold);
}
footer .socials li {
  margin: 0;
}
footer .socials li a img {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 28px;
  height: 28px;
  padding: 4px;
}
footer .socials li a:hover img {
  padding: 0px;
}
footer #legal-menu {
  text-align: center;
}
footer #legal-menu a {
  font-size: 14px;
  opacity: 0.6;
}
footer #legal-menu a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.cky-btn-revisit-wrapper {
  display: none !important;
}

body.home main {
  margin-top: -107px;
}
body.home main .wp-block-columns.custom-break-points:not(.is-not-stacked-on-mobile) {
  --columns: 2;
}
body.home main .wp-block-columns.custom-break-points:not(.is-not-stacked-on-mobile) > .wp-block-column {
  width: 40%;
  flex-grow: 1;
  flex-basis: unset !important;
}
body.home nav.navbar {
  -webkit-transition: background-color 0.3s;
  -moz-transition: background-color 0.3s;
  -ms-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  transition: background-color 0.3s;
  background-color: rgba(26, 29, 57, 0.2);
  border-bottom: solid 1px var(--blue);
}
body.home nav.navbar .navbar-toggler,
body.home nav.navbar a.nav-link {
  color: var(--blue);
}
body.home nav.navbar .navbar-toggler:hover,
body.home nav.navbar a.nav-link:hover {
  color: var(--black);
}
body.home nav.navbar .light {
  display: none;
}
body.home nav.navbar .dark {
  display: inline-block;
}
body.home nav.navbar.scrolled {
  background-color: var(--blue);
}
body.home nav.navbar.scrolled .light {
  display: inline-block;
}
body.home nav.navbar.scrolled .dark {
  display: none;
}
body.home nav.navbar.scrolled .navbar-toggler,
body.home nav.navbar.scrolled a.nav-link {
  color: var(--white);
}
body.home nav.navbar.scrolled .navbar-toggler:hover,
body.home nav.navbar.scrolled a.nav-link:hover {
  color: var(--gold);
}
body.home header {
  min-height: 80vh;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: center center;
}
@media only screen and (min-width: 768px) {
  body.home header {
    min-height: 70vh;
    background-position: center bottom;
  }
}
body.home header .bg-white {
  background-color: rgba(255, 255, 255, 0.75) !important;
}
@media only screen and (min-width: 768px) {
  body.home header .bg-white {
    background-color: rgba(255, 255, 255, 0.5) !important;
  }
}
body.home #feats img {
  max-width: 130px;
  width: 100%;
}
body.home #steps h2 {
  margin-bottom: 40px;
}
@media only screen and (min-width: 768px) {
  body.home #steps h2 {
    margin-bottom: 70px;
  }
}
body.home #steps img {
  -webkit-border-radius: 16px !important;
  -moz-border-radius: 16px !important;
  border-radius: 16px !important;
}
body.home #steps p {
  font-size: 14px;
}
@media only screen and (min-width: 768px) {
  body.home #steps p {
    font-size: 16px;
  }
}
body.home #steps .wp-element-button {
  font-size: 16px !important;
  font-weight: 500;
  min-width: 200px;
  margin-top: 30px;
  background-color: var(--blue);
  border-color: var(--gold);
  color: var(--gold);
}
body.home #steps .wp-element-button:hover {
  background-color: var(--gold);
  border-color: var(--gold);
  color: var(--blue);
}
body.home #categories .wp-block-column {
  position: relative;
  overflow: hidden;
  -webkit-border-radius: 16px !important;
  -moz-border-radius: 16px !important;
  border-radius: 16px !important;
}
body.home #categories .wp-block-column figure {
  margin: 0;
}
body.home #categories .wp-block-column h3 {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  text-align: center;
}
body.home #categories .wp-block-column h3 a {
  -webkit-transition: background-color 0.3s, color 0.3s, padding 0.3s;
  -moz-transition: background-color 0.3s, color 0.3s, padding 0.3s;
  -ms-transition: background-color 0.3s, color 0.3s, padding 0.3s;
  -o-transition: background-color 0.3s, color 0.3s, padding 0.3s;
  transition: background-color 0.3s, color 0.3s, padding 0.3s;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  color: var(--white) !important;
  background-color: rgba(26, 29, 57, 0.3);
  padding-top: 80%;
  text-decoration: none;
  font-size: 20px;
}
body.home #categories .wp-block-column h3 a:hover {
  color: var(--blue) !important;
  background-color: rgba(255, 255, 255, 0.5) !important;
  padding-top: 70%;
}

.woocommerce .woocommerce-breadcrumb,
.woocommerce-page .woocommerce-breadcrumb {
  margin-bottom: 5px !important;
}
.woocommerce h1,
.woocommerce-page h1 {
  text-align: center;
  margin: 30px 0 35px;
}
.woocommerce .woocommerce-result-count,
.woocommerce-page .woocommerce-result-count {
  color: var(--gray);
  font-size: 12px;
  float: right !important;
}
.woocommerce .woocommerce-ordering,
.woocommerce-page .woocommerce-ordering {
  float: left !important;
  margin-bottom: 15px;
}
.woocommerce .woocommerce-ordering select[name=orderby],
.woocommerce-page .woocommerce-ordering select[name=orderby] {
  padding: 6px 20px;
  border-color: var(--blue);
  font-size: 12px;
  color: var(--blue);
}
.woocommerce .product-category,
.woocommerce-page .product-category {
  margin-bottom: 30px;
  border-bottom: solid 1px var(--gray-light);
}
.woocommerce .product-category:first-child,
.woocommerce-page .product-category:first-child {
  padding-top: 10px;
}
.woocommerce .product-category:last-child,
.woocommerce-page .product-category:last-child {
  border-bottom: 0;
  margin-bottom: auto;
}
.woocommerce .product-category h2,
.woocommerce-page .product-category h2 {
  margin: 20px 0;
}
.woocommerce ul.products,
.woocommerce-page ul.products {
  margin-top: 30px;
}
.woocommerce ul.products .product,
.woocommerce-page ul.products .product {
  display: flex;
  flex-direction: column !important;
}
.woocommerce ul.products .product > a.woocommerce-LoopProduct-link.woocommerce-loop-product__link,
.woocommerce-page ul.products .product > a.woocommerce-LoopProduct-link.woocommerce-loop-product__link {
  padding-bottom: 40px;
}
.woocommerce ul.products .product a:not(.btn):not(.wp-element-button),
.woocommerce-page ul.products .product a:not(.btn):not(.wp-element-button) {
  color: var(--blue);
}
.woocommerce ul.products .product a:not(.btn):not(.wp-element-button) .attachment-woocommerce_thumbnail,
.woocommerce-page ul.products .product a:not(.btn):not(.wp-element-button) .attachment-woocommerce_thumbnail {
  padding: 1rem !important;
  border: solid 1px var(--gray-light);
  -webkit-transition: border 0.3s;
  -moz-transition: border 0.3s;
  -ms-transition: border 0.3s;
  -o-transition: border 0.3s;
  transition: border 0.3s;
}
.woocommerce ul.products .product a:not(.btn):not(.wp-element-button):hover,
.woocommerce-page ul.products .product a:not(.btn):not(.wp-element-button):hover {
  color: var(--black);
}
.woocommerce ul.products .product a:not(.btn):not(.wp-element-button):hover .attachment-woocommerce_thumbnail,
.woocommerce-page ul.products .product a:not(.btn):not(.wp-element-button):hover .attachment-woocommerce_thumbnail {
  border-color: var(--blue);
}
.woocommerce ul.products .product a.btn, .woocommerce ul.products .product .single-product a.button, .single-product .woocommerce ul.products .product a.button, .woocommerce ul.products .product a.wp-element-button,
.woocommerce-page ul.products .product a.btn,
.woocommerce-page ul.products .product .single-product a.button,
.single-product .woocommerce-page ul.products .product a.button,
.woocommerce-page ul.products .product a.wp-element-button {
  position: absolute;
  bottom: 0;
  right: 0;
  min-width: 50%;
}
.woocommerce ul.products .product p,
.woocommerce-page ul.products .product p {
  font-size: 14px;
  font-weight: 300;
}
.woocommerce ul.products .product .price,
.woocommerce-page ul.products .product .price {
  color: var(--blue) !important;
  position: absolute;
  bottom: 0;
  left: 0;
}
.woocommerce .related.products,
.woocommerce-page .related.products {
  clear: both;
  padding-top: 30px;
}
.woocommerce .added_to_cart.wc-forward,
.woocommerce-page .added_to_cart.wc-forward {
  display: none;
}

.single-product .custom-product-main-thumbnail {
  width: 100px;
  max-width: 100%;
  float: left;
  margin-right: 15px;
}
.single-product .price {
  color: var(--blue) !important;
}
.single-product input[name=quantity] {
  line-height: 28px;
}
.single-product .tagged_as {
  display: none;
}
.single-product .accordion-button {
  box-shadow: none;
}
.single-product .accordion-button:not(.collapsed) {
  background-color: var(--blue);
  color: var(--gold);
}

.woocommerce ul.products li.product {
  position: relative;
}

.woocommerce ul.products li.product .woocommerce-loop-product__link {
  position: relative;
  display: block;
  overflow: hidden;
}

.product-hover-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
}

.product-hover-image .hover-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.woocommerce ul.products li.product:hover .product-hover-image {
  opacity: 1;
}

/* Optional: Add a subtle zoom effect
.woocommerce ul.products li.product:hover .woocommerce-loop-product__link img {
    transform: scale(1.05);
    transition: transform 0.4s ease;
}*/
/* product roll over : second image */
.woocommerce ul.products li.product {
  position: relative;
}

.woocommerce ul.products li.product .woocommerce-loop-product__link {
  position: relative;
  display: block;
  overflow: hidden;
}

.product-hover-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
}

.product-hover-image .hover-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none !important;
}

.woocommerce ul.products li.product:hover .product-hover-image {
  opacity: 1;
}
.woocommerce ul.products li.product:hover .ratio.ratio-1x1 {
  border: solid 1px var(--blue);
}

/* Optional: Add a subtle zoom effect */
.woocommerce ul.products li.product:hover .woocommerce-loop-product__link img.hover-image {
  transform: scale(1.05);
  transition: transform 0.4s ease;
}

body {
  overflow-x: hidden;
  min-height: 100%;
}

.bg-primary {
  background-color: var(--blue) !important;
  color: var(--white);
}
.bg-primary.bg-extend {
  position: relative;
  padding: 90px 0;
  margin-bottom: 28px;
  border-radius: 0;
}
.bg-primary.bg-extend::after, .bg-primary.bg-extend::before {
  content: " ";
  width: 800px;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: -1;
}
.bg-primary.bg-extend::after {
  right: -800px;
}
.bg-primary.bg-extend::before {
  left: -800px;
}
@media screen and (max-width: 991px) {
  .bg-primary.bg-extend {
    padding: 50px 0;
  }
}
@media screen and (max-width: 580px) {
  .bg-primary.bg-extend::after, .bg-primary.bg-extend::before {
    width: 24px;
  }
  .bg-primary.bg-extend::after {
    right: -24px;
  }
  .bg-primary.bg-extend::before {
    left: -24px;
  }
}
.bg-primary.bg-extend::after, .bg-primary.bg-extend::before {
  background-color: var(--blue) !important;
}
.bg-primary h1, .bg-primary h2, .bg-primary h3, .bg-primary h4, .bg-primary h5, .bg-primary h6 {
  color: var(--gold);
}

#scrollToTop {
  position: fixed;
  right: 25px;
  bottom: 25px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  font-size: 30px;
  background-color: var(--white);
  -webkit-border-radius: 50% !important;
  -moz-border-radius: 50% !important;
  border-radius: 50% !important;
  display: flex;
  -webkit-transition: transform 0.3s ease-in-out;
  -moz-transition: transform 0.3s ease-in-out;
  -ms-transition: transform 0.3s ease-in-out;
  -o-transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
}
#scrollToTop:hover {
  transform: scale(1.2);
}
#scrollToTop i {
  margin: auto;
}

.wpcf7-form {
  max-width: 450px;
}
.wpcf7-form textarea {
  min-height: 120px !important;
}

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