

/* Add your theme customizations below */

/* CSS Variables */
:root {
  --color-form-background: #EFEFEF;
  --big-font-size: 30px;
  --max-font-size: 50px;
}

@media (max-width: 576px) {
  :root {
    --big-font-size: 25px;
    --max-font-size: 30px;
  }
}


/* Forms */
input[type="text"], input[type="password"], input[type="date"], input[type="datetime"], input[type="datetime-local"], input[type="month"], input[type="week"], input[type="email"], input[type="number"], input[type="search"], input[type="tel"], input[type="time"], input[type="url"], textarea, select {
  background-color: var(--color-form-background);
}

/* Buttons */
.font--button, a.font--button, input[type="submit"] {
  text-transform: none;
}

.button.small, a.font--button.small, .font--button.small, .font--button--inverted.small, .font--secondary-button.small, .font--secondary-button--inverted.small, button input[type="button"].small, input[type="reset"].small, input[type="submit"].small {
  height: 35px;
  line-height: 35px;
}

.btn-top-bottom {
  display: inline-block;
  padding: 10px 30px;
  font-size: 14px;
  border-top: 1px solid #D1D1D1;
  border-bottom: 1px solid #D1D1D1;
}

.btn-top-bottom.white {
  color: #fff;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}

/* Icons */
.icon--bag {
  height: 20px;
  width: 22px;
}

.icon--search {
  width: 21px;
}
.icon--bag path, .icon--search path {
  fill: none;
}

/* headings */
.rounded-heading {
  display: flex;
  flex-wrap: nowrap;
  color: #bfa059;
  text-transform: uppercase;
  text-align: center;
  font-family: var(--font--accent--family);
}

.rounded-heading::before, .rounded-heading::after {
  content: "\2022";
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 10px;
  font-family: sans-serif;
}

.rounded-heading::before {
  margin-right: 30px;
  align-items: flex-end;
}

.rounded-heading::after {
  margin-left: 30px;
  align-items: flex-start;
}

h3.rounded-heading {
  margin-top: 40px;
  margin-bottom: 15px;
  font-size: 18px;
}

h3.rounded-heading::before, h3.rounded-heading::after {
  font-size: 30px;
}

/* Utilities */
hr.hr-strong {
  border-bottom: 3px solid #EFEFEF;
}

.mb-6 {
  margin-bottom: 60px;
}

.mb-8 {
  margin-bottom: 80px;
}

.mt-3 {
  margin-top: 30px;
}

.mt-6 {
  margin-top: 60px;
}

.pt-6 {
  padding-top: 60px;
}

.pb-6 {
  padding-bottom: 60px;
}

.pos-rel {
  position: relative;
}


.bg-grey-light {
  background-color: #F8F8F8;
}

.row-nopad {
  padding: 0;
}

/* Layout */
.main-wrapper {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  max-width: calc(1364px + 40px);
}

.wrapper-medium {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  max-width: calc(1088px + 40px);
}

.bg-grey-half-bottom {
  position: relative;
  padding-bottom: 60px;
}

.bg-grey-half-bottom::before {
  content: '';
  position: absolute;
  top: calc(50% - 60px);
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #EFEFEF;
}

.bg-grey-half-top {
  position: relative;
  padding-top: 60px;
}

.bg-grey-half-top::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: calc(50% + 60px);
  background-color: #EFEFEF;
}

/* Header */
.shopify-section.section--header {
  border-top: 10px solid #BFA059;
}
.header--cart {
  position: relative;
  right: auto;
  top: auto;
  flex-grow: 0;
  order: 2;
}

.header--top-row > *:not(.header--logo) {
  margin-left: 30px;
  align-self: baseline;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 12px;
}

.header--root .cart {
  width: auto;
  text-align: center;
}

a.header--cart-link {
  margin: 0;
  padding: 8px;
  line-height: 1.5rem;
}

.header--root .icon--bag {
  right: auto;
  bottom: auto;
}

.header--bottom-row {
  padding-top: 0;
}

.header--bottom-row .custom--search {
  position: absolute;
  right: 20px;
  top: 5px;
  font-weight: 700;
}

/* header sticky */
.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transition: all 0.3s ease-in-out;
}

.header--top-row {
  transition: height 0.3s ease-in-out;
}

.logo-image {
  transition: max-height 0.3s ease-in-out;
}

@media (min-width: 768px) {
  .header--root.fixed-header {
    padding-top: 10px;
  }

  header.fixed-header .logo-image {
    max-height: 45px;
  }

  header.fixed-header .header--top-row {
    height: 60px;
  }
}

/* header menu */
.header--menu .font--accent {
  font-size: 12px;
}

.x-menu--level-1--link > a {
  display: block;
  padding: 16px 26px;
  font-weight: 700;
}

.header--menu .x-menu--level-1--link > a::after {
  content: "";
  position: absolute;
  right: 0;
  top: 16px;
  display: block;
  width: 2px;
  height: 15px;
  background-color: #D1D1D1;
}

.header--menu .x-menu--level-1--link:last-child > a::after {
  content: none;
}

.x-menu--bg {
  background-color: #F8F8F8;
  border-top: 3px solid #EFEFEF;
}

[data-x-menu--depth="2"] .x-menu--level-2--container {
  left: 0;
}
/* Footer */
.footer--root {
  margin-top: 40px;
  padding-top: 0;
}

.footer-container {
  border-top: 12px solid #EFEFEF;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
}

.footer-container > * {
  padding-top: 40px;
  width: 50%;
}
  
.footer-container > .footer-seo {
  width: 100%;
  padding-top: 20px;
  text-align: center;
}

.footer-logo-image {
  margin-bottom: 25px;
}

.footer--subscribe .contact-form {
  max-width: none;
  width: 100%;
}

.footer--subscribe .contact-form input[type="submit"] {
  margin: 0;
}

.footer--menus-container {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-between;
  font-size: 11px;
  text-transform: uppercase;
}

.footer--menus-container > * {
  margin-top: 25px;
}

.footer-copyright-container {
  margin-top: 30px;
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: flex-end;
  border-top: 3px solid #EFEFEF;
}

.footer-copyright-container > * {
  padding: 10px 15px;
  font-size: 11px;
}

@media only screen and (min-width: 572px) {
  .footer-copyright-container > *:last-child {
    padding-right: 0;
  }
}

@media only screen and (max-width: 768px) {
  .footer-container {
    flex-direction: column;
  }

  .footer-container > * {
    width: 100%;
  }

  .footer--about {
    text-align: center;
  }
}

@media only screen and (max-width: 572px) {
  .footer--menus-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-copyright-container {
    flex-direction: column;
    text-align: center;
  }
}

/* Home slider */

.section--slideshow.slideshow--home {
  margin-top: 15px;
}

@media (min-width: 768px) {
  .section--slideshow.slideshow--home {
    margin-top: 30px;
  }
}

.section--slideshow.slideshow--home .slider {
  border-bottom: none;
}

.slider.main-wrapper {
  padding-left: 0;
  padding-right: 0;
}

.home-slide-shadow {
  position: relative;
  padding-bottom: 20px;
}

.home-slide-shadow::before {
  content: " ";
  position: absolute;
  top: 50%;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: -1;
  box-shadow:0 0 10px #ddd;
}

.home-slide-products-header {
  position: relative;
  margin-bottom: 30px;
  text-align: center;
  font-size: 16px;
}

.home-slide-products-header::before {
  content: "";
  display: block;
  width: 2px;
  height: 50px;
  margin: 0 auto 25px auto;
  background-color: #bfa059;
}

.home-slide-products-header h2.rounded-heading {
  margin-bottom: 15px;
  font-size: var(--big-font-size);
  font-family: var(--font--heading--family);
  text-transform: initial;
}

.slider-arrows {
  position: relative;
}

.slider-arrows .btn-slider-arrow {
  position: absolute;
  top: 270px;
  display: block;
  width: 30px;
  height: 57px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}

.slider-arrows .btn-slider-arrow.prev {
  left: -60px;
  background-image: url('./arrow-left.svg');
}

.slider-arrows .btn-slider-arrow.next {
  right: -60px;
  background-image: url('./arrow-right.svg');
}


/* Product grid */
.product-grid--root {
  padding: 0;
  justify-content: center;
}

.product-grid--root > * {
  width: 100%;
  padding-top: 0;
  margin: 30px 0;
  display: flex;
  flex-direction: column;
  border-left: 1px solid #D1D1D1;
}

/* séparation horizontale produits */
.product-grid--root > *::before {
  content: none;
  position: absolute;
  left: 0;
  right: 0;
  top: -30px;
  height: 1px;
  background-image: linear-gradient(to right, #D1D1D1 33%, rgba(209,209,209,0) 0%);
  background-position: bottom;
  background-size: 3px 1px;
  background-repeat: repeat-x;
}

@media (max-width: 577px) {
  .product-grid--root > * {
    border-left: none;
  }

  .product-grid--root > *:nth-child(n+2)::before {
    content: '';
  }
}

@media (min-width: 578px) and (max-width: 967px) {
  .product-grid--root > * {
    width: 50%;
  }

  .product-grid--root > *:nth-child(2n+1) {
    border-left: none;
  }

  .product-grid--root > *:nth-child(n+3)::before {
    content: '';
  }
}

@media (min-width: 968px) {
  .product-grid--root > * {
    width: 25%;
  }

  .product-grid--root:not(#bc-sf-filter-products) > *:nth-child(4n+1) {
    border-left: none;
  }

  .product-grid--root:not(#bc-sf-filter-products) > *:nth-child(n+5)::before {
    content: '';
  }

}

.product-grid--root .product--title {
  font-size: 18px;
  font-weight: 700;
  flex: 1 1 auto;
}

.product-grid--root .product--details {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}

.product-grid--root .product--price-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.product-grid--root .product--collection {
  display: flex;
  flex-direction: column;
  height: 45px;
  justify-content: center;
  text-align: center;
  border-top: 1px solid #D1D1D1;
  border-bottom: 1px solid #D1D1D1;
  font-size: 12px;
  text-transform: uppercase;
}
  
.product-grid--root .product--from {
  margin-top: 15px;
  text-transform: none;
}

.product--sold-out {
  right: 20px;
  top: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  width: 80px;
  height: 80px;
  padding: 0 3px;
  border-radius: 50%;
  background: #650A0A;
  font-size: 12px;
  text-transform: none;
}
  
.product--sold-out span {
  line-height: 12px;
}

.home-more-products {
  text-align: center;
  margin-top: 40px;
}

/* section highlight */
.section--highlight {
  margin-top: 60px;
}

.section-highlight--container {
  position: relative;
  color: #fff;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

@media (max-width: 767px) {
  .section-highlight--container > img {
    display: none;
  }
}

@media (min-width: 768px) {
  .section-highlight--container > div {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
}

.section-highlight--container > div {
  display: flex;
  background-color: rgba(0,0,0,0.4);
}

.section-highlight--container > div > div {
  width: 100%;
  max-width: 700px;
  padding: 20px;
  margin: auto;
  align-self: center;
  text-align: center;
}

.section-highlight--container > div h2 {
  margin-bottom: 25px;
  font-size: var(--max-font-size);
}

.section-highlight--container > div h4 {
  margin-bottom: 60px;
  font-family: var(--font--paragraph--family);
  font-size: 14px;
  text-transform: uppercase;
}

/* Breadcrumb */
.breadcrumbs--root-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  border-top: 2px solid #EFEFEF;
  border-bottom: 2px solid #EFEFEF;
}

.breadcrumbs--root, .template-collection .breadcrumbs--root {
  padding: 20px;
}

.breadcrumbs--root a, .breadcrumbs--root a:link, .breadcrumbs--root a:visited {
  color: #ACACAC;
  text-decoration: none;
}

.breadcrumbs--root .font--block-link > *, .breadcrumbs--root .font--accent {
  font-size: 12px;
}

.breadcrumbs--root .font--block-link > ::after {
  content: none;
}

.breadcrumbs--root li:not(:last-of-type)::after {
  content: ">";
  color: #ACACAC;
}

/* page collection */

.collection--header h1 {
  /*margin-bottom: 40px;*/
  font-size: var(--max-font-size);
  letter-spacing: 3px;
}

.collection--header h3 {
  color: #AAAAAA;
  text-transform: uppercase;
  font-family: var(--font--paragraph--family);
  font-size: var(--font--paragraph--size);
}

.collection--description {
  /*margin-bottom: 40px;*/
  margin-top: 30px;
  max-width: 870px;
}

.collection-header-image {
  margin-top: 30px;
}

.collection-infos--container {
  display: flex;
  width: 100%;
  margin-bottom: 60px;
  flex-direction: column;
}

.collection-infos--container > * {
  margin-bottom: 20px;
  text-align: center;
}

.collection-infos--container.show-y .collection-infos--content-block {
  position: relative;
}

.collection-infos--content-block h2 {
  font-size: var(--max-font-size);
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .collection-infos--container.show-x {
    flex-direction: row;
  }

  .collection-infos--container.show-x .collection-infos--photo {
    width: 45%;
    padding-right: 70px;
  }

  .collection-infos--container.show-x .collection-infos--content-block {
    position: relative;
    width: 55%;
    padding-left: 70px;
    text-align: left;
  }

  .collection-infos--container.show-x:nth-child(2n) .collection-infos--content-block {
    order: -1;
  }

  .collection-infos--container.show-x:nth-child(2n) .collection-infos--photo {
    padding-right: 0;
    padding-left: 70px;
  }

  .collection-infos--container.show-x .collection-infos--content-block::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20px;
    height: 170px;
    width: 1px;
    background-color: #BFA059;
  }

  .collection-infos--container.show-y .collection-infos--content-block {
    margin-top: -50px;
  }

  .collection-infos--container.show-y .collection-infos--content-block h2 {
    display: inline-block;
    min-width: 400px;
    padding: 20px 60px;
    background-color: #fff;
  }
}

.collection-map--container {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.collection-map--image-block {
  order: -1;
}

.collection-map--content-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.collection-map--content-block > div {
  font-size: 25px;
  font-family: var(--font--heading--family);
  color: #4A4A4A;
  line-height: 28px;
}

.collection-map--content-block h2 {
  font-size: 30px;
  margin-bottom: 15px;
}

@media (max-width: 767px) {
  .collection-map--content-block {
    margin-top: 20px;
    text-align: center;
  }
}

@media (min-width: 768px) {
  .collection-map--container {
    flex-direction: row;
  }

  .collection-map--container > * {
    width: 50%;
  }

  .collection-map--image-block {
    order: initial;
    padding-left: 70px;
  }

  .collection-map--content-block > div {
    padding-right: 70px;
    border-right: 1px solid #707070;
  }

  .collection-map--content-block h2 {
    font-size: 40px;
  }
}

/* collection item */

.collections-intro--section {
  padding-top: 60px;
  padding-bottom: 140px;
  margin-bottom: -100px;
}

.collections-intro--container {
  display: flex;
  flex-direction: row;
  width: 100%;
}
  
.collections-intro--container > * {
  width: 50%;
  padding: 15px;
}

@media (max-width: 767px) {
  .collections-intro--container {
    flex-direction: column;
  }
  
  .collections-intro--container > * {
    width: 100%;
  }
}
  
.collections-intro--content-block > div {
  width: 100%;
  max-width: 380px;
  font-size: 16px;
  margin-left: auto;
  margin-right: auto;
}

.collections-intro--content-block p {
  margin-top: 20px;
  line-height: 28px;
}

.collections-intro--content-block p:first-child {
  margin-top: 0;
}

.collection-intro--map-container {
  /*display: none;*/
  position: relative;
}

.collection-intro--map-point {
  position: absolute;
}

.collection-intro--map-point a {
  position: relative;
  display: block;
  width: 12px;
  height: 12px;
  background-color: var(--color-button-bg);
  border-radius: 50%;
  text-align: center;
}

.collection-intro--map-point a:hover::before {
  content: '';
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  top: 0;
  left: 0;
  -webkit-animation:sonar-effect 2s ease-in-out .1s infinite;
  animation:sonar-effect 2s ease-in-out .1s infinite;
}

.collection-intro--map-point a:hover::after {
  content: '';
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  top: 0;
  left: 0;
  -webkit-animation:sonar-effect 2s ease-in-out .1s infinite;
  animation:sonar-effect 2s ease-in-out .1s infinite;
  -webkit-animation-delay:1s;
  animation-delay:1s;
}


@-webkit-keyframes sonar-effect {
  0% {
    opacity: .3
  }
  40% {
    opacity: .5;
    box-shadow: 0 0 0 5px var(--color-button-bg), 0 0 10px 10px var(--color-button-bg), 0 0 0 10px var(--color-button-bg)
  }
  100% {
    box-shadow: 0 0 0 10px var(--color-button-bg), 0 0 20px 20px var(--color-button-bg), 0 0 0 20px var(--color-button-bg);
    -webkit-transform: scale(2);
    transform: scale(2);
    opacity: 0
  }
}

@keyframes sonar-effect {
  0% {
    opacity: .3
  }
  40% {
    opacity: .5;
    box-shadow: 0 0 0 5px var(--color-button-bg), 0 0 10px 10px var(--color-button-bg), 0 0 0 10px var(--color-button-bg)
  }
  100% {
    box-shadow: 0 0 0 10px var(--color-button-bg), 0 0 20px 20px var(--color-button-bg), 0 0 0 20px var(--color-button-bg);
    -webkit-transform: scale(2);
    transform: scale(2);
    opacity: 0
  }
}

.collection-intro--map-point span {
  position: absolute;
  display: inline-block;
  padding: 10px 20px;
  bottom: 30px;
  /*width: 160px;
  margin-left: -80px;*/
  background-color: #fff;
  border-radius: 5px;
  color: #000;
  pointer-events: none;
  opacity: 0;
  transform: translateY(-10px) translateX(-50%);
  transition: all 0.2s ease;
  white-space: nowrap;
  z-index: 20;
  /*box-shadow:0 0 2px #333333;*/
  border: 1px solid #c6c6c6;
}

.collection-intro--map-point span:after, .collection-intro--map-point span:before {
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}
.collection-intro--map-point span:after {
  border-top-color: #fff;
  border-width: 10px;
  margin-left: -10px;
}
.collection-intro--map-point span:before {
  border-top-color: #c6c6c6;
  border-width: 11px;
  margin-left: -11px;
}

.collection-intro--map-point a:hover span {
  opacity: 1;
  transform: translateY(0) translateX(-50%);
  transition: all 0.2s ease;
}

.collection-item--textblock {
  position: relative;
  margin: -70px 20px 0 20px;
  padding: 40px 20px 50px 20px;
  background-color: #F8F8F8;
  text-align: center;
}

.template-list-collections .collection-item {
  margin: 30px 0;
}

/* product page */
.template-product article {
  padding-bottom: 60px;
}

.product-page--title {
  font-family: var(--font--paragraph--family);
  font-size: 30px;
}

@media (min-width: 768px) {
  .product-page--title {
    font-size: 40px;
  }
}

@media (min-width: 768px) and (max-width: 1279px) {
  .product-page--main-content {
    grid-template-columns: minmax(50%, 50%) minmax(50%, 50%);
  }

  .product-page--title-n-vendor {
    grid-row: 1 / 2;
    grid-column: 1 / 3;
  }

  .product-page--media-root {
    grid-column: 1;
    grid-row: 2
  }

  .product-page--cart-form-block {
    grid-column: 2;
    grid-row: 2
  }

  .product-page--description {
    grid-row: 3;
    grid-column: 1 / 3;
  }
}

@media (min-width: 1280px) {
  .product-page--main-content {
    grid-template-columns: minmax(30%, 30%) minmax(45%, 45%) minmax(25%, 25%);
  }

  .product-page--media-root {
    grid-column: 1;
    grid-row: 1 / span 2;
  }

  .product-page--title-n-vendor, .product-page--description {
    grid-column: 2;
    padding-top: 16px;
  }

  .product-page--cart-form-block {
    grid-column: 3;
    grid-row: 1 / span 2;
    padding: 0;
  }
  .product-page--cart-form-wrapper {
    padding: 16px 16px 0 16px;
    border-left: 1px solid #D1D1D1;
  }
}


.product-page--subtitle {
  font-family: var(--font--paragraph--family);
  font-size: 20px;
  color: #AAAAAA;
  text-transform: uppercase;
}

.product-page--grapes > img {
  width: 15px;
  max-height: 20px;
  margin-right: 10px;
  transform: rotate(40deg);
}

.product-page--grapes-and-color {
  display: flex;
  flex-direction: column;
  margin: 15px 0 40px 0;
  border-top: 1px solid #D1D1D1;
  border-bottom: 1px solid #D1D1D1;
}

.product-page--grapes-and-color > div {
  padding: 10px 10px 10px 0;
  text-align: center;
}

@media (max-width: 575px) {
  .product-page--color {
    border-top: 1px solid #D1D1D1;
  }
}

@media (min-width: 576px) {
  .product-page--grapes-and-color {
    flex-direction: row;
    justify-content: space-between;
  }
}

.product-page--color > span {
  margin-right: 10px;
}

.red-grape, .rose-grape,.orange-grape, .white-grape {
  display: inline-block;
  width: 16px;
  height: 16px;
  vertical-align: middle;
  border-radius: 50%;
}

.red-grape {
  background-color: #650A0A;
}

.rose-grape {
  background-color: #FFCAA7;
}

.white-grape {
  background-color: #F1E6A1;
}

.orange-grape {
background-color: #F8A907;
}
.product-page--description .rte-content {
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid #D1D1D1;
}
.product-page--description .rte-content ul {
  padding-left: 20px;
  list-style: none;
}

.product-page--description .rte-content ul li::before {
  content: "•";
  display: inline-block;
  width: 20px;
  margin-left: -20px;
  color: #650A0A;
  font-size: var(--max-font-size);
  vertical-align: text-bottom;
}
.product-page--description .rte-content ul li {
  padding-bottom: 10px;
  color: var(--color-text);
}

.product-page--data-sheet span, .product-page--data-sheet a {
  display: inline-block;
}
  
.product-page--data-sheet, .product-page--data-sheet a {
  color: #DC0714;
}
  
.product-page--data-sheet span::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 24px;
  margin-right: 15px;
  vertical-align: middle;
  background: url("icon-pdf.svg") transparent no-repeat center center;
  background-size: contain;
  
}

.template-product .price--container {
  padding-bottom: 20px;
}

.template-product article .price--container .actual-price {
  font-size: 40px;
  line-height: 1.25em;
}

.product-page--cart-help {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #D1D1D1;
}

.template-product .social-share {
  padding-top: 20px;
  padding-bottom: 0;
  background: none;
}

.template-product .social-share .title {
  margin-bottom: 5px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: left;
}

.actual-price-per-bottle {
  text-transform: none;
  color: #AAAAAA;
  font-size: var(--font--paragraph--size);
}

.product-page--cart-form-capacity {
  margin-bottom: 15px;
  text-transform: none;
}

.product-page--cart-form-capacity img {
  vertical-align: text-bottom;
  margin-right: 5px;
}

.template-product article .product-unavailable .notify-me-wrapper {
  display: flex;
  flex-wrap: wrap;
}

.template-product article .product-unavailable input[type="email"] {
  width: 160px;
}

.template-product article .product-unavailable input[type="submit"] {
  flex: 1;
}

.template-product article .product-unavailable .button {
  margin-left: 0;
}

.product-page--information {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  margin-top: 40px;
}

.product-page--information > div {
  padding: 15px;
}

@media (min-width: 768px) {
  .product-page--information {
    flex-direction: row;
  }

  .product-page--information > div {
    width: 50%;
  }
}

.product-page--information > div:first-child hr {
  margin: 20px 0 20px 70px;
  border-bottom: 1px solid #D1D1D1;
}

.product-page--tasting-note {
  display: flex;
  flex-direction: row;
  width: 100%;
  flex-wrap: wrap;
}

.product-page--tasting-note-icon {
  width: 70px;
  text-align: center;
}

.product-page--tasting-note-icon > img {
  max-width: 30px;
  max-height: 24px;
}

.product-page--tasting-note-title, .product-page--more-infos-title {
  font-family: var(--font--paragraph--family);
  font-size: 14px;
  color: #A8A6A6;
}

.product-page--tasting-note-title {
  width: 90px;
}

.product-page--more-infos-title {
  margin: 0 0 15px 0;
}

.product-page--tasting-note-content {
  flex: 1;
}
  
@media (max-width: 480px) {
  .product-page--tasting-note-content {
    flex: auto;
    width: 100%;
    margin-top: 15px;
  }
}

.product-page--more-infos {
  display: flex;
  flex-direction: column;
  width: 100%;
  border-right: 1px solid #D1D1D1;
  border-bottom: 1px solid #D1D1D1;
}

.product-page--more-infos > * {
  padding: 15px;
  border-left: 1px solid #D1D1D1;
  border-top: 1px solid #D1D1D1;
}

.product-page--information-row {
  width: 100%;
}

.product-page--collection-discover {
  position: relative;
  margin-top: 30px;
  margin-bottom: 60px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

@media (max-width: 767px) {
  .product-page--collection-discover {
    padding: 20px;
  }

  .product-page--collection-discover > img {
    display: none;
  }
}

@media (min-width: 768px) {
  .product-page--collection-discover > div {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
}

.product-page--collection-discover > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  background: rgba(0,0,0,0.2);
}

.product-page--collection-discover > div > div {
  margin: auto;
}

.product-page--collection-discover h2 {
  margin-bottom: 40px;
  color: #fff;
  font-size: var(--max-font-size);
}

/* pagination */
.pagination--container {
  display: flex;
  justify-content: center;
  list-style: none;
}

.pagination--container a, .pagination--container span {
  position: relative;
  display: block;
  padding: 10px 16px;
  min-width: var(--max-font-size);
  font-size: 12px;
  line-height: 22px;
  margin: 9px 5px;
  color: #000000;
  border-radius: 3px;
  background-color: #EFEFEF;
  text-align: center;
}

.pagination--number[data-active="true"] {
  padding: 0;
  font-weight: normal;
}

.pagination--number[data-active="true"] span {
  background-color: #000000;
  color: #fff;
}

/* pages */
.template-page .main-content {
  padding: 30px 0 72px 0;
}

.template-page .main-content .row {
  max-width: none;
}

.template-page .page--header, .template-search .page--header {
  margin-top: 30px;
}

.page--header .section-highlight--container > div h1, .page--header h1 {
  margin-bottom: 25px;
  font-size: var(--max-font-size);
}

.page--header .section-highlight--container > div h4 {
  margin-bottom: 0;
}

.page--header h4 {
  font-family: var(--font--paragraph--family);
  font-size: 14px;
  text-transform: uppercase;
}

.page--intro {
  margin-top: 60px;
}
  
/* search filter */
  
@media (min-width: 968px) {
  #bc-sf-filter-products.product-grid--root > * {
    width: calc(100% / 3);
  }

  #bc-sf-filter-products.product-grid--root > *:nth-child(3n+1) {
    border-left: none;
  }

  #bc-sf-filter-products.product-grid--root > *:nth-child(n+4)::before {
    content: '';
  }
}

.bc-sf-filter-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#bc-sf-filter-top-sorting {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

#bc-sf-filter-top-sorting > select {
  width: auto;
}

#bc-sf-filter-top-sorting > label {
  font-size: 12px;
}

/* featured blog */
.featured-blog--root .blog--list--root .blog--list--item {
  padding: 0 0 30px 0;
  margin-top: 0;
  margin-bottom: 30px;
  border-bottom: 1px solid #D1D1D1;;
}

/* blog */
.template-blog .main-content, .template-article .main-content {
  padding-top: 30px;
}

.blog--header {
  padding: 32px 32px 16px 32px;
}

.blog--header h1, .article--title {
  font-size: var(--max-font-size);
  letter-spacing: 3px;
}

.blog--list--root {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-left: -16px;
}

.blog--list--root > * {
  box-sizing: border-box;
  flex: 0 0 auto;
  min-width: 0;
  margin-left: 16px;
  width: calc(100% - 16px);
  margin-top: 30px;
}

@media (max-width: 519px) {
  .blog--list--root > *:nth-child(n+2) {
    border-top: 1px solid #D1D1D1;
  }
}

@media (min-width: 520px) {
  .blog--list--root > * {
    width: calc(50% - 16px);
  }
}

@media (min-width: 520px) and (max-width: 959px) {
  .blog--list--root > *:nth-child(n+3) {
    border-top: 1px solid #D1D1D1;
  }
}

@media (min-width: 960px) {
  .blog--list--root > * {
    width: calc(25% - 16px);
  }

  .blog--list--root > *:nth-child(n+5) {
    border-top: 1px solid #D1D1D1;
  }
}
@media (max-width: 767px) {
  .blog--list--item-image {
    margin: 0;
  }
}

.blog--list--item {
  padding: 30px 0 0 0;
}

.blog--list--item h3 {
  font-family: var(--font--paragraph--family);
  font-size: 16px;
  text-align: center;
}

.blog--footer-pagination {
  margin-top: 40px;
}

@media (min-width: 768px) {
  .article--root, .featured-blog--root {
    padding: 60px 48px 72px 48px;
  }
}

/*
.featured-blog--footer {
  margin-top: 40px;
}
*/

 */
/* Cookiebot */
#CookieDeclarationChangeConsent {
  padding: 15px 0;
}
  
#CookieDeclarationChangeConsent a {
  font-weight: bold;
}

/* contact page */

.template-page .main-content .contact-form select {
  max-width: 300px;
  margin-bottom: 16px;
}