/*! tailwindcss v4.1.10 | MIT License | https://tailwindcss.com */
@layer properties;
@layer theme, base, components, utilities;
@layer theme {
  :root, :host {
    --font-sans: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji",
      "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
      "Courier New", monospace;
    --color-gray-200: oklch(92.8% 0.006 264.531);
    --color-gray-400: oklch(70.7% 0.022 261.325);
    --color-gray-600: oklch(44.6% 0.03 256.802);
    --color-black: #000;
    --color-white: #fff;
    --spacing: 0.25rem;
    --text-lg: 1.125rem;
    --text-lg--line-height: calc(1.75 / 1.125);
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --tracking-wide: 0.025em;
    --radius-2xl: 1rem;
    --radius-3xl: 1.5rem;
    --default-font-family: var(--font-sans);
    --default-mono-font-family: var(--font-mono);
  }
}
@layer base {
  *, ::after, ::before, ::backdrop, ::file-selector-button {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0 solid;
  }
  html, :host {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    tab-size: 4;
    font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
    font-feature-settings: var(--default-font-feature-settings, normal);
    font-variation-settings: var(--default-font-variation-settings, normal);
    -webkit-tap-highlight-color: transparent;
  }
  hr {
    height: 0;
    color: inherit;
    border-top-width: 1px;
  }
  abbr:where([title]) {
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
  }
  h1, h2, h3, h4, h5, h6 {
    font-size: inherit;
    font-weight: inherit;
  }
  a {
    color: inherit;
    -webkit-text-decoration: inherit;
    text-decoration: inherit;
  }
  b, strong {
    font-weight: bolder;
  }
  code, kbd, samp, pre {
    font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
    font-feature-settings: var(--default-mono-font-feature-settings, normal);
    font-variation-settings: var(--default-mono-font-variation-settings, normal);
    font-size: 1em;
  }
  small {
    font-size: 80%;
  }
  sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
  }
  sub {
    bottom: -0.25em;
  }
  sup {
    top: -0.5em;
  }
  table {
    text-indent: 0;
    border-color: inherit;
    border-collapse: collapse;
  }
  :-moz-focusring {
    outline: auto;
  }
  progress {
    vertical-align: baseline;
  }
  summary {
    display: list-item;
  }
  ol, ul, menu {
    list-style: none;
  }
  img, svg, video, canvas, audio, iframe, embed, object {
    display: block;
    vertical-align: middle;
  }
  img, video {
    max-width: 100%;
    height: auto;
  }
  button, input, select, optgroup, textarea, ::file-selector-button {
    font: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    letter-spacing: inherit;
    color: inherit;
    border-radius: 0;
    background-color: transparent;
    opacity: 1;
  }
  :where(select:is([multiple], [size])) optgroup {
    font-weight: bolder;
  }
  :where(select:is([multiple], [size])) optgroup option {
    padding-inline-start: 20px;
  }
  ::file-selector-button {
    margin-inline-end: 4px;
  }
  ::placeholder {
    opacity: 1;
  }
  @supports (not (-webkit-appearance: -apple-pay-button))  or (contain-intrinsic-size: 1px) {
    ::placeholder {
      color: currentcolor;
      @supports (color: color-mix(in lab, red, red)) {
        color: color-mix(in oklab, currentcolor 50%, transparent);
      }
    }
  }
  textarea {
    resize: vertical;
  }
  ::-webkit-search-decoration {
    -webkit-appearance: none;
  }
  ::-webkit-date-and-time-value {
    min-height: 1lh;
    text-align: inherit;
  }
  ::-webkit-datetime-edit {
    display: inline-flex;
  }
  ::-webkit-datetime-edit-fields-wrapper {
    padding: 0;
  }
  ::-webkit-datetime-edit, ::-webkit-datetime-edit-year-field, ::-webkit-datetime-edit-month-field, ::-webkit-datetime-edit-day-field, ::-webkit-datetime-edit-hour-field, ::-webkit-datetime-edit-minute-field, ::-webkit-datetime-edit-second-field, ::-webkit-datetime-edit-millisecond-field, ::-webkit-datetime-edit-meridiem-field {
    padding-block: 0;
  }
  :-moz-ui-invalid {
    box-shadow: none;
  }
  button, input:where([type="button"], [type="reset"], [type="submit"]), ::file-selector-button {
    appearance: button;
  }
  ::-webkit-inner-spin-button, ::-webkit-outer-spin-button {
    height: auto;
  }
  [hidden]:where(:not([hidden="until-found"])) {
    display: none !important;
  }
}
@layer utilities {
  .pointer-events-none {
    pointer-events: none;
  }
  .static {
    position: static;
  }
  .container {
    width: 100%;
    @media (width >= 40rem) {
      max-width: 40rem;
    }
    @media (width >= 48rem) {
      max-width: 48rem;
    }
    @media (width >= 64rem) {
      max-width: 64rem;
    }
    @media (width >= 80rem) {
      max-width: 80rem;
    }
    @media (width >= 96rem) {
      max-width: 96rem;
    }
  }
  .my-8 {
    margin-block: calc(var(--spacing) * 8);
  }
  .mt-2 {
    margin-top: calc(var(--spacing) * 2);
  }
  .mt-3 {
    margin-top: calc(var(--spacing) * 3);
  }
  .mt-4 {
    margin-top: calc(var(--spacing) * 4);
  }
  .mt-6 {
    margin-top: calc(var(--spacing) * 6);
  }
  .mt-8 {
    margin-top: calc(var(--spacing) * 8);
  }
  .mt-16 {
    margin-top: calc(var(--spacing) * 16);
  }
  .mr-2 {
    margin-right: calc(var(--spacing) * 2);
  }
  .mr-8 {
    margin-right: calc(var(--spacing) * 8);
  }
  .mr-\[60px\] {
    margin-right: 60px;
  }
  .mb-2 {
    margin-bottom: calc(var(--spacing) * 2);
  }
  .mb-4 {
    margin-bottom: calc(var(--spacing) * 4);
  }
  .mb-8 {
    margin-bottom: calc(var(--spacing) * 8);
  }
  .ml-3 {
    margin-left: calc(var(--spacing) * 3);
  }
  .ml-8 {
    margin-left: calc(var(--spacing) * 8);
  }
  .ml-\[60px\] {
    margin-left: 60px;
  }
  .block {
    display: block;
  }
  .flex {
    display: flex;
  }
  .grid {
    display: grid;
  }
  .hidden {
    display: none;
  }
  .table {
    display: table;
  }
  .h-0 {
    height: calc(var(--spacing) * 0);
  }
  .h-\[46px\] {
    height: 46px;
  }
  .h-\[72px\] {
    height: 72px;
  }
  .h-\[160px\] {
    height: 160px;
  }
  .h-full {
    height: 100%;
  }
  .min-h-10 {
    min-height: calc(var(--spacing) * 10);
  }
  .w-1 {
    width: calc(var(--spacing) * 1);
  }
  .w-1\/2 {
    width: calc(1/2 * 100%);
  }
  .w-1\/3 {
    width: calc(1/3 * 100%);
  }
  .w-\[80vw\] {
    width: 80vw;
  }
  .w-\[calc\(100\%_-_60px\)\] {
    width: calc(100% - 60px);
  }
  .w-full {
    width: 100%;
  }
  .w-screen {
    width: 100vw;
  }
  .flex-shrink {
    flex-shrink: 1;
  }
  .shrink-0 {
    flex-shrink: 0;
  }
  .border-collapse {
    border-collapse: collapse;
  }
  .transform {
    transform: var(--tw-rotate-x,) var(--tw-rotate-y,) var(--tw-rotate-z,) var(--tw-skew-x,) var(--tw-skew-y,);
  }
  .resize {
    resize: both;
  }
  .list-disc {
    list-style-type: disc;
  }
  .grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .flex-col {
    flex-direction: column;
  }
  .flex-row-reverse {
    flex-direction: row-reverse;
  }
  .items-center {
    align-items: center;
  }
  .justify-between {
    justify-content: space-between;
  }
  .justify-center {
    justify-content: center;
  }
  .gap-y-4 {
    row-gap: calc(var(--spacing) * 4);
  }
  .overflow-hidden {
    overflow: hidden;
  }
  .rounded {
    border-radius: 0.25rem;
  }
  .rounded-3xl {
    border-radius: var(--radius-3xl);
  }
  .border {
    border-style: var(--tw-border-style);
    border-width: 1px;
  }
  .border-\[1px\] {
    border-style: var(--tw-border-style);
    border-width: 1px;
  }
  .border-b-\[1px\] {
    border-bottom-style: var(--tw-border-style);
    border-bottom-width: 1px;
  }
  .border-\[\#c1c1c1\] {
    border-color: #c1c1c1;
  }
  .border-b-gray-400 {
    border-bottom-color: var(--color-gray-400);
  }
  .bg-\[\#f7efdb\] {
    background-color: #f7efdb;
  }
  .bg-\[\#f8f4ed\] {
    background-color: #f8f4ed;
  }
  .bg-\[\#f9f4ee\] {
    background-color: #f9f4ee;
  }
  .bg-black {
    background-color: var(--color-black);
  }
  .object-cover {
    object-fit: cover;
  }
  .p-1 {
    padding: calc(var(--spacing) * 1);
  }
  .p-2 {
    padding: calc(var(--spacing) * 2);
  }
  .pt-2 {
    padding-top: calc(var(--spacing) * 2);
  }
  .pb-4 {
    padding-bottom: calc(var(--spacing) * 4);
  }
  .pb-8 {
    padding-bottom: calc(var(--spacing) * 8);
  }
  .pl-5 {
    padding-left: calc(var(--spacing) * 5);
  }
  .text-center {
    text-align: center;
  }
  .text-left {
    text-align: left;
  }
  .text-right {
    text-align: right;
  }
  .text-lg {
    font-size: var(--text-lg);
    line-height: var(--tw-leading, var(--text-lg--line-height));
  }
  .text-\[12px\] {
    font-size: 12px;
  }
  .text-\[14px\] {
    font-size: 14px;
  }
  .font-\[400\] {
    --tw-font-weight: 400;
    font-weight: 400;
  }
  .font-semibold {
    --tw-font-weight: var(--font-weight-semibold);
    font-weight: var(--font-weight-semibold);
  }
  .whitespace-pre-line {
    white-space: pre-line;
  }
  .text-\[\#126396\] {
    color: #126396;
  }
  .text-gray-600 {
    color: var(--color-gray-600);
  }
  .underline {
    text-decoration-line: underline;
  }
  .opacity-0 {
    opacity: 0%;
  }
  .opacity-40 {
    opacity: 40%;
  }
  .opacity-90 {
    opacity: 90%;
  }
  .outline {
    outline-style: var(--tw-outline-style);
    outline-width: 1px;
  }
  .filter {
    filter: var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,);
  }
  .hover\:border-black {
    &:hover {
      @media (hover: hover) {
        border-color: var(--color-black);
      }
    }
  }
  .sm\:flex {
    @media (width >= 40rem) {
      display: flex;
    }
  }
  .sm\:hidden {
    @media (width >= 40rem) {
      display: none;
    }
  }
  .md\:w-\[calc\(100\%_-_120px\)\] {
    @media (width >= 48rem) {
      width: calc(100% - 120px);
    }
  }
  .md\:w-\[calc\(100\%_-_200px\)\] {
    @media (width >= 48rem) {
      width: calc(100% - 200px);
    }
  }
  .md\:min-w-24 {
    @media (width >= 48rem) {
      min-width: calc(var(--spacing) * 24);
    }
  }
  .md\:grid-cols-3 {
    @media (width >= 48rem) {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
  }
  .md\:grid-cols-4 {
    @media (width >= 48rem) {
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }
  }
  .md\:gap-4 {
    @media (width >= 48rem) {
      gap: calc(var(--spacing) * 4);
    }
  }
}
.shop-page-wrapper {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  margin-top: 2rem;
}
#shop-sidebar {
  width: calc(1/3 * 100%);
  background-color: #f8f8f8;
  padding: 20px;
  border: 1px solid #ddd;
}
.shop-content {
  flex: 1;
}
.wpc-term-count {
  display: none !important;
}
.woocommerce div.product .upsells, .woocommerce div.product .related {
  margin-top: calc(var(--spacing) * 12);
}
.cs_single_info_ {
  font-size: 14px;
}
.cs_single_add_info_button_ {
  cursor: pointer;
  font-size: 14px;
  text-decoration-line: underline;
}
.cs_single_add_info_ h3 {
  font-size: 12px;
  --tw-font-weight: var(--font-weight-bold);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
}
.cs_single_add_info_ p {
  font-size: 14px;
}
.cs_grid_product_ h5 {
  padding-bottom: calc(var(--spacing) * 2);
  font-size: 12px;
  --tw-font-weight: var(--font-weight-normal);
  font-weight: var(--font-weight-normal);
  text-transform: uppercase;
  opacity: 65%;
}
.cs_grid_varietats_ {
  padding-block: calc(var(--spacing) * 2);
  font-size: 12px;
  font-style: italic;
  text-decoration-thickness: .5px;
  opacity: 85%;
}
.cs_grid_add_ button {
  all: unset;
  cursor: pointer;
  border-radius: 50px;
  background-color: var(--color-black);
  padding-inline: calc(var(--spacing) * 4);
  padding-block: calc(var(--spacing) * 2);
  font-size: 14px;
  color: var(--color-white);
}
.cs_grid_add_ button:hover {
  all: unset;
  cursor: pointer;
  border-radius: 50px;
  background-color: var(--color-black);
  padding-inline: calc(var(--spacing) * 4);
  padding-block: calc(var(--spacing) * 2);
  font-size: 14px;
  color: var(--color-white);
  opacity: 60%;
}
.custom-qty-wrapper button {
  all: unset;
  cursor: pointer;
  border-radius: calc(infinity * 1px);
  padding-inline: calc(var(--spacing) * 2);
  &:hover {
    @media (hover: hover) {
      background-color: #c1c1c1;
    }
  }
  &:hover {
    @media (hover: hover) {
      color: var(--color-black);
    }
  }
}
.custom-qty-wrapper input[type='number'] {
  all: unset;
  width: 32px !important;
  min-width: unset !important;
  max-width: unset !important;
  box-sizing: border-box;
  text-align: center;
  font-size: 12px;
}
.woocommerce-result-count {
  display: none !important;
}
.widget-title, .wpc-filter-title {
  font-weight: bold !important;
}
.wpc-filter-link {
  font-size: 14px !important;
}
.wpc-filter-content input {
  flex-shrink: 0;
}
.wpc-posts-found {
  display: none !important;
}
.certs_ img {
  all: unset;
  height: calc(var(--spacing) * 12);
}
.certs_ p {
  margin-top: calc(var(--spacing) * 3);
  text-align: center;
  font-size: 11px;
  --tw-leading: 14px;
  line-height: 14px;
}
#cert_vegan__ {
  margin-top: calc(var(--spacing) * -1);
  height: 66px;
}
.menu_lang_list_ {
  all: unset;
  display: flex;
  list-style-type: none;
  align-items: center;
}
.menu_lang_list_li_ {
  margin-right: calc(var(--spacing) * 4);
  cursor: pointer;
  font-size: 14px;
  --tw-tracking: var(--tracking-wide);
  letter-spacing: var(--tracking-wide);
  color: var(--color-gray-400);
  text-transform: uppercase;
}
.menu_lang_list_ a {
  border: 0 !important;
  font-size: 14px !important;
  cursor: pointer;
  font-size: 14px;
  --tw-tracking: var(--tracking-wide);
  letter-spacing: var(--tracking-wide);
  color: var(--color-gray-400);
  text-transform: uppercase;
}
.menu_list_ {
  all: unset;
  display: flex;
  list-style-type: none;
  flex-direction: column;
}
.menu_list_li_ {
  cursor: pointer;
  border-bottom-style: var(--tw-border-style);
  border-bottom-width: 1px;
  border-bottom-color: var(--color-gray-200);
  padding-block: calc(var(--spacing) * 4);
  font-size: 18px;
}
.header_slider_ h3 {
  all: unset;
  margin-left: 60px;
  font-size: 16px;
  --tw-leading: 16px;
  line-height: 16px;
  --tw-font-weight: var(--font-weight-bold);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
}
.header_slider_mobile_ h3 {
  font-size: 16px;
  --tw-leading: 16px;
  line-height: 16px;
  --tw-font-weight: var(--font-weight-bold);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
}
.header_slider_ button {
  color: black !important;
  border-style: var(--tw-border-style);
  border-width: 1px;
  border-color: var(--color-black);
  background-color: transparent;
  font-size: 11.2px;
  --tw-font-weight: var(--font-weight-bold);
  font-weight: var(--font-weight-bold);
  --tw-tracking: 9%;
  letter-spacing: 9%;
  text-transform: uppercase;
  &:hover {
    @media (hover: hover) {
      background-color: var(--color-black);
    }
  }
  &:hover {
    @media (hover: hover) {
      color: var(--color-white);
    }
  }
}
.header_slider_mobile_ button {
  color: black !important;
  height: 28px;
  border-style: var(--tw-border-style);
  border-width: 1px;
  border-color: var(--color-black);
  background-color: transparent;
  font-size: 11.2px;
  --tw-font-weight: var(--font-weight-medium);
  font-weight: var(--font-weight-medium);
  --tw-tracking: 9%;
  letter-spacing: 9%;
  text-transform: uppercase;
  &:hover {
    @media (hover: hover) {
      background-color: var(--color-black);
    }
  }
  &:hover {
    @media (hover: hover) {
      color: var(--color-white);
    }
  }
}
.header_slider_ button:hover a, .header_slider_mobile_ button:hover a {
  color: white !important;
}
.header_slider_ p {
  all: unset;
  margin-right: 60px;
  font-size: 14px;
  --tw-leading: 14px;
  line-height: 14px;
  --tw-font-weight: var(--font-weight-light);
  font-weight: var(--font-weight-light);
}
.header_slider_mobile_ p {
  all: unset;
  font-size: 14px;
  --tw-leading: 14px;
  line-height: 14px;
  --tw-font-weight: var(--font-weight-light);
  font-weight: var(--font-weight-light);
}
.header_slider_b_ h3 {
  all: unset;
  margin-left: 60px;
  font-size: 16px;
  --tw-leading: 16px;
  line-height: 16px;
  --tw-font-weight: var(--font-weight-bold);
  font-weight: var(--font-weight-bold);
  color: #fffbf4;
  text-transform: uppercase;
}
.header_slider_mobile_b_ h3 {
  all: unset;
  font-size: 16px;
  --tw-leading: 16px;
  line-height: 16px;
  --tw-font-weight: var(--font-weight-bold);
  font-weight: var(--font-weight-bold);
  color: #fffbf4;
  text-transform: uppercase;
  @media (width >= 40rem) {
    margin-left: unset;
  }
}
.header_slider_b_ button, .header_slider_mobile_b_ button {
  color: white !important;
  border-style: var(--tw-border-style);
  border-width: 1px;
  border-color: #fffbf4;
  background-color: transparent;
  font-size: 11.2px;
  --tw-font-weight: 500;
  font-weight: 500;
  --tw-tracking: 9%;
  letter-spacing: 9%;
  text-transform: uppercase;
  &:hover {
    @media (hover: hover) {
      background-color: #fffbf4;
    }
  }
  &:hover {
    @media (hover: hover) {
      color: var(--color-black);
    }
  }
}
.header_slider_mobile_b_ button {
  height: 28px;
}
.header_slider_b_ button a, .header_slider_mobile_b_ button a {
  color: white !important;
}
.header_slider_b_ button:hover a, .header_slider_mobile_b_ button:hover a {
  color: black !important;
  background-color: #fffbf4;
}
.header_slider_b_ p {
  all: unset;
  margin-right: 60px;
  font-size: 14px;
  --tw-leading: 14px;
  line-height: 14px;
  --tw-font-weight: var(--font-weight-light);
  font-weight: var(--font-weight-light);
  color: #fffbf4;
}
.header_slider_mobile_b_ p {
  all: unset;
  font-size: 14px;
  --tw-leading: 14px;
  line-height: 14px;
  --tw-font-weight: var(--font-weight-light);
  font-weight: var(--font-weight-light);
  color: #fffbf4;
}
.site-logo {
  margin-top: 24px !important;
}
.back_to_visits_ a {
  font-size: 14px;
  color: var(--color-gray-400);
}
.wc-memberships-member-discount-message {
  display: none !important;
}
.summary .posted_in {
  display: none !important;
}
.woocommerce div.product {
  margin-bottom: 64px !important;
}
.club_pinord_product_info_ h4 {
  font-size: 14px;
  --tw-font-weight: var(--font-weight-bold);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
}
.club_pinord_product_info_ p {
  font-size: 14px;
  --tw-font-weight: var(--font-weight-light);
  font-weight: var(--font-weight-light);
}
.visites_info_horari_ p {
  line-height: 10px !important;
}
.visites_note_ {
  line-height: 14px !important;
  color: var(--color-gray-400);
}
.guided-tour-field input {
  margin-top: 2px !important;
}
.wc-block-components-product-details__booking-type {
  display: none !important;
}
.wc-bookings-date-picker-timezone-block {
  display: none !important;
}
.club_pinord_table_ th, .club_pinord_table_ tr {
  font-size: 12px;
  @media (width >= 48rem) {
    font-size: 16px;
  }
}
.club_pinord_header_ p {
  all: unset;
  font-size: 12px;
  --tw-leading: 12px;
  line-height: 12px;
  --tw-font-weight: var(--font-weight-light);
  font-weight: var(--font-weight-light);
}
.club_pinord_header_ button {
  height: calc(var(--spacing) * 6);
  font-size: 12px;
  --tw-leading: 12px;
  line-height: 12px;
}
.header_slider_ button {
  all: unset;
  height: 28px;
  border-radius: 40px;
  border-style: var(--tw-border-style);
  border-width: 1px;
  border-color: var(--color-black);
  padding-inline: calc(var(--spacing) * 4);
  font-size: 12px;
  --tw-leading: 12px;
  line-height: 12px;
  --tw-font-weight: var(--font-weight-medium);
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
  &:hover {
    @media (hover: hover) {
      background-color: var(--color-black);
    }
  }
  &:hover {
    @media (hover: hover) {
      color: var(--color-white);
    }
  }
  height: 28px !important;
}
.header_slider_b_ button {
  all: unset;
  height: 28px;
  border-radius: 40px;
  border-style: var(--tw-border-style);
  border-width: 1px;
  border-color: #fffbf4;
  padding-inline: calc(var(--spacing) * 4);
  font-size: 12px;
  --tw-leading: 12px;
  line-height: 12px;
  --tw-font-weight: var(--font-weight-medium);
  font-weight: var(--font-weight-medium);
  color: #fffbf4;
  text-transform: uppercase;
  &:hover {
    @media (hover: hover) {
      background-color: #fffbf4;
    }
  }
  &:hover {
    @media (hover: hover) {
      color: var(--color-black);
    }
  }
  height: 28px !important;
}
.header_slider_ p, .header_slider_b_ p {
  font-size: 12px;
  --tw-leading: 12px;
  line-height: 12px;
  --tw-font-weight: var(--font-weight-light);
  font-weight: var(--font-weight-light);
}
.widget .wpc-term-count-0:not(.wpc-has-not-empty-children) a, .widget-area .widget .wpc-term-count-0:not(.wpc-has-not-empty-children) a, .widget-area .wpc-filters-labels li.wpc-term-count-0:not(.wpc-has-not-empty-children) label, .widget-area .wpc-filters-labels li.wpc-term-count-0:not(.wpc-has-not-empty-children) label span.wpc-filter-label-wrapper, .wpc-filters-labels li.wpc-term-count-0:not(.wpc-has-not-empty-children) label, .wpc-filters-labels li.wpc-term-count-0:not(.wpc-has-not-empty-children) label span.wpc-filter-label-wrapper, .wpc-term-count-0:not(.wpc-has-not-empty-children), .wpc-term-count-0:not(.wpc-has-not-empty-children) a, body .wpc-filters-main-wrap li.wpc-term-count-0:not(.wpc-has-not-empty-children) label, body .wpc-filters-main-wrap li.wpc-term-count-0:not(.wpc-has-not-empty-children) label a {
  opacity: 1 !important;
}
.woocommerce-loop-product__title {
  line-height: 1.4em;
  height: calc(1.4em * 2);
  overflow: hidden;
}
.cs_grid_varietats_ {
  line-height: 16px !important;
  height: calc(22px * 2) !important;
  overflow: hidden;
}
.legals_ h2 {
  font-size: 32px;
}
.legals_ h3 {
  font-size: 18px;
  --tw-font-weight: var(--font-weight-bold);
  font-weight: var(--font-weight-bold);
}
.legals_ h4 {
  font-size: 16px;
  --tw-leading: 40px;
  line-height: 40px;
  --tw-font-weight: var(--font-weight-semibold);
  font-weight: var(--font-weight-semibold);
}
.legals_ a {
  text-decoration-line: underline;
}
.legals_ a:hover {
  opacity: 60%;
}
html::before, body::before, html::after, body::after, div::before, div::after {
  background: none !important;
}
.wc-block-components-quantity-selector {
  width: 6.4rem !important;
}
.woocommerce ul.products li.product a img {
  width: 400px;
  height: 260px;
  object-fit: contain;
  background-color: #faf3eb;
}
a, a:hover, a:focus {
  text-decoration: none !important;
}
@property --tw-rotate-x {
  syntax: "*";
  inherits: false;
}
@property --tw-rotate-y {
  syntax: "*";
  inherits: false;
}
@property --tw-rotate-z {
  syntax: "*";
  inherits: false;
}
@property --tw-skew-x {
  syntax: "*";
  inherits: false;
}
@property --tw-skew-y {
  syntax: "*";
  inherits: false;
}
@property --tw-border-style {
  syntax: "*";
  inherits: false;
  initial-value: solid;
}
@property --tw-font-weight {
  syntax: "*";
  inherits: false;
}
@property --tw-outline-style {
  syntax: "*";
  inherits: false;
  initial-value: solid;
}
@property --tw-blur {
  syntax: "*";
  inherits: false;
}
@property --tw-brightness {
  syntax: "*";
  inherits: false;
}
@property --tw-contrast {
  syntax: "*";
  inherits: false;
}
@property --tw-grayscale {
  syntax: "*";
  inherits: false;
}
@property --tw-hue-rotate {
  syntax: "*";
  inherits: false;
}
@property --tw-invert {
  syntax: "*";
  inherits: false;
}
@property --tw-opacity {
  syntax: "*";
  inherits: false;
}
@property --tw-saturate {
  syntax: "*";
  inherits: false;
}
@property --tw-sepia {
  syntax: "*";
  inherits: false;
}
@property --tw-drop-shadow {
  syntax: "*";
  inherits: false;
}
@property --tw-drop-shadow-color {
  syntax: "*";
  inherits: false;
}
@property --tw-drop-shadow-alpha {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 100%;
}
@property --tw-drop-shadow-size {
  syntax: "*";
  inherits: false;
}
@property --tw-leading {
  syntax: "*";
  inherits: false;
}
@property --tw-tracking {
  syntax: "*";
  inherits: false;
}
@layer properties {
  @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
    *, ::before, ::after, ::backdrop {
      --tw-rotate-x: initial;
      --tw-rotate-y: initial;
      --tw-rotate-z: initial;
      --tw-skew-x: initial;
      --tw-skew-y: initial;
      --tw-border-style: solid;
      --tw-font-weight: initial;
      --tw-outline-style: solid;
      --tw-blur: initial;
      --tw-brightness: initial;
      --tw-contrast: initial;
      --tw-grayscale: initial;
      --tw-hue-rotate: initial;
      --tw-invert: initial;
      --tw-opacity: initial;
      --tw-saturate: initial;
      --tw-sepia: initial;
      --tw-drop-shadow: initial;
      --tw-drop-shadow-color: initial;
      --tw-drop-shadow-alpha: 100%;
      --tw-drop-shadow-size: initial;
      --tw-leading: initial;
      --tw-tracking: initial;
    }
  }
}
