/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2016 Daniel Eden
 */
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
}

@-webkit-keyframes bounce {

  from,
  20%,
  53%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}

@keyframes bounce {

  from,
  20%,
  53%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}

.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-webkit-keyframes flash {

  from,
  50%,
  to {
    opacity: 1;
  }

  25%,
  75% {
    opacity: 0;
  }
}

@keyframes flash {

  from,
  50%,
  to {
    opacity: 1;
  }

  25%,
  75% {
    opacity: 0;
  }
}

.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 1.15, 1.15);
    transform: scale3d(1.15, 1.15, 1.15);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 1.15, 1.15);
    transform: scale3d(1.15, 1.15, 1.15);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shake {

  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

@keyframes shake {

  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }

  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }

  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }

  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }

  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }

  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }

  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }

  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }

  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }

  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }

  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none;
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none;
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes jello {

  from,
  11.1%,
  to {
    -webkit-transform: none;
    transform: none;
  }

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}

@keyframes jello {

  from,
  11.1%,
  to {
    -webkit-transform: none;
    transform: none;
  }

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}

.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes bounceIn {

  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes bounceIn {

  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {

  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInDown {

  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {

  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInLeft {

  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {

  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInRight {

  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {

  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes bounceInUp {

  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}

@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}

.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -150%, 0);
    transform: translate3d(0, -150%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -150%, 0);
    transform: translate3d(0, -150%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-10%, 0, 0);
    transform: translate3d(-10%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-10%, 0, 0);
    transform: translate3d(-10%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(10%, 0, 0);
    transform: translate3d(10%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(10%, 0, 0);
    transform: translate3d(10%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 150%, 0);
    transform: translate3d(0, 150%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 150%, 0);
    transform: translate3d(0, 150%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

@keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }

  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }

  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

@keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%,
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40%,
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%,
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40%,
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

@keyframes rollOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}

.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  to {
    opacity: 0;
  }
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  to {
    opacity: 0;
  }
}

.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}

.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}

@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

/**/
@-webkit-keyframes blurFadeIn {
  0% {
    opacity: 0;
    transform: scale(1.3);
  }

  50% {
    opacity: 0.5;
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes blurFadeIn {
  0% {
    opacity: 0;
    transform: scale(1.3);
  }

  50% {
    opacity: 0.5;
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.blurFadeIn {
  -webkit-animation-name: blurFadeIn;
  animation-name: blurFadeIn;
}

@-webkit-keyframes blurFadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes blurFadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
}

.blurFadeInDown {
  -webkit-animation-name: blurFadeInDown;
  animation-name: blurFadeInDown;
}

@-webkit-keyframes passing {
  0% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    opacity: 0;
  }

  50% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(50%);
    transform: translateX(50%);
    opacity: 0;
  }
}

@keyframes passing {
  0% {
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    opacity: 0;
  }

  50% {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(50%);
    -ms-transform: translateX(50%);
    transform: translateX(50%);
    opacity: 0;
  }
}

@-webkit-keyframes passing-reverse {
  0% {
    -webkit-transform: translateX(50%);
    transform: translateX(50%);
    opacity: 0;
  }

  50% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    opacity: 0;
  }
}

@keyframes passing-reverse {
  0% {
    -webkit-transform: translateX(50%);
    -ms-transform: translateX(50%);
    transform: translateX(50%);
    opacity: 0;
  }

  50% {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    opacity: 0;
  }
}

@keyframes jackInTheBox {
  from {
    opacity: 0;
    transform: scale(0.1) rotate(30deg);
    transform-origin: center bottom;
  }

  50% {
    transform: rotate(-10deg);
  }

  70% {
    transform: rotate(3deg);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.jackInTheBox {
  animation-name: jackInTheBox;
}

.contact-display-1-row .title-contact {
  display: inline;
}

@media (max-width: 1600px) and (min-width: 1024px) {
  .banner-left {
    max-width: 52%;
  }

  .banner-right {
    max-width: 46%;
  }
}

.med-bestsale .product-miniature {
  border-bottom: none;
  border-left: none;
  border-right: none;
  padding-left: 0;
  padding-right: 0;
  margin: 0 20px !important;
}

.med-bestsale .product-miniature:hover {
  border-color: #ebebeb;
}

.med-bestsale .pos-product-widget .slick-arrow {
  top: -2.957rem !important;
}

.med-bestsale .pos-product-widget .slick-next {
  right: 1rem !important;
}

.med-bestsale .pos-product-widget .slick-prev {
  right: 3.5rem !important;
}

.toy-bestsale .product-miniature {
  border-bottom: none;
  border-left: none;
  border-right: none;
  padding-left: 0;
  padding-right: 0;
  margin: 0 20px;
  border-radius: 0;
}

.toy-bestsale .product-miniature:hover {
  border-color: #ebebeb;
}

.toy-bestsale .pos-product-widget .slick-slide>*:not(:last-child) {
  margin-bottom: 0;
}

.toy-bestsale .pos-product-widget .slick-next {
  right: 1rem !important;
}

.toy-bestsale .pos-product-widget .slick-prev {
  right: 3.5rem !important;
}

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

.list-bigger-image .style_product_list .img_block {
  max-width: 170px;
}

.has-section-inner .elementor-widget-wrap {
  display: block !important;
}

.elementor-widget-wrap>section {
  width: 100% !important;
}

.elementor-editor-active .elementor.elementor-edit-mode .elementor-top-column .elementor-widget-wrap .elementor-inner-section {
  margin-top: 0;
}

/* =============================================
   SLICK SLIDER BASE CSS (fix for ztl_v10v)
   ============================================= */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0
}

.slick-list:focus {
  outline: none
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0)
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: ''
}

.slick-track:after {
  clear: both
}

.slick-loading .slick-track {
  visibility: hidden
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px
}

[dir='rtl'] .slick-slide {
  float: right
}

.slick-slide img {
  display: block
}

.slick-slide.slick-loading img {
  display: none
}

.slick-slide.dragging img {
  pointer-events: none
}

.slick-initialized .slick-slide {
  display: block
}

.slick-loading .slick-slide {
  visibility: hidden
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent
}

.slick-arrow.slick-hidden {
  display: none
}

.slick-dots {
  position: relative;
  bottom: 0;
  display: block;
  width: 100%;
  padding: 0;
  margin: 10px 0 0;
  list-style: none;
  text-align: center
}

.slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer
}

.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent
}

.slick-dots li button:before {
  font-size: 10px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  content: '•';
  text-align: center;
  opacity: .25;
  color: #000
}

.slick-dots li.slick-active button:before {
  opacity: .75;
  color: #000
}

/* Premium Product Features/Characteristics Block */
.my-product-features {
  margin: 35px 0;
  padding: 30px;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #f2f2f2;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.my-product-features .features-title {
  font-family: 'Josefin Sans', 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 25px;
  color: #161616;
  border-bottom: 3px solid #C50063;
  /* Premium wine pink accent */
  display: inline-block;
  padding-bottom: 8px;
}

.my-product-features .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 20px;
}

.my-product-features .feature-card {
  display: flex;
  flex-direction: column;
  padding: 15px 18px;
  background: #fafafa;
  border: 1px solid #eaeaea;
  border-left: 4px solid #C50063;
  /* Elegant vertical wine stripe */
  border-radius: 6px;
  transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
}

.my-product-features .feature-card:hover {
  border-color: #C50063;
  background: #ffffff;
  box-shadow: 0 6px 20px rgba(197, 0, 99, 0.08);
  transform: translateY(-3px);
}

.my-product-features .feature-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  color: #888888;
  margin-bottom: 6px;
  letter-spacing: 0.05em;
}

.my-product-features .feature-value {
  font-family: 'Josefin Sans', 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #1c1c1c;
  line-height: 1.3;
}

@media (max-width: 575px) {
  .my-product-features {
    padding: 20px;
  }

  .my-product-features .features-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* Premium Product Description Section */
.my-product-description {
  margin: 30px 0;
  padding: 40px;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #f2f2f2;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.my-product-description .description-title {
  font-family: 'Josefin Sans', 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 30px;
  color: #161616;
  border-bottom: 3px solid #C50063;
  /* Premium wine pink accent */
  display: inline-block;
  padding-bottom: 8px;
}

.my-product-description .description-content {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: #4a4a4a;
}

.my-product-description .description-content p {
  margin-bottom: 20px;
}

.my-product-description .description-content p:last-child {
  margin-bottom: 0;
}

.my-product-description .description-content ul,
.my-product-description .description-content ol {
  margin: 15px 0 25px 20px;
  padding: 0;
}

.my-product-description .description-content ul li {
  list-style-type: square;
  margin-bottom: 8px;
  padding-left: 5px;
}

.my-product-description .description-content ol li {
  list-style-type: decimal;
  margin-bottom: 8px;
  padding-left: 5px;
}

.my-product-description .description-content h1,
.my-product-description .description-content h2,
.my-product-description .description-content h3,
.my-product-description .description-content h4,
.my-product-description .description-content h5,
.my-product-description .description-content h6 {
  font-family: 'Josefin Sans', 'Montserrat', sans-serif;
  color: #1a1a1a;
  font-weight: 700;
  margin-top: 30px;
  margin-bottom: 15px;
}

.my-product-description .description-content strong {
  color: #111111;
  font-weight: 700;
}

@media (max-width: 575px) {
  .my-product-description {
    padding: 25px 20px;
  }

  .my-product-description .description-title {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .my-product-description .description-content {
    font-size: 14px;
    line-height: 1.7;
  }
}

#product .featured-products {
  display: none !important;
}

/* Custom styles to match the products sort order dropdown to the legacy theme */
#js-product-list-top .sort-by-row .products-sort-order {
  max-width: 18.75rem !important;
}

#js-product-list-top .sort-by-row .products-sort-order .select-title {
  border: 1.5px solid #000 !important;
  padding: 5px 15px !important;
  line-height: 1.5rem !important;
  margin: 0 !important;
  border-radius: 5px !important;
  color: #000 !important;
  box-shadow: none !important;
  font-weight: 500 !important;
  background-color: #fff !important;
  width: 100% !important;
  text-align: left !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
}

#js-product-list-top .sort-by-row .products-sort-order .dropdown-menu {
  background: #ffffff !important;
  border: 1px solid #ebebeb !important;
  border-radius: 3px !important;
  right: 0px !important;
  left: 0px !important;
  width: auto !important;
  box-shadow: none !important;
  max-width: 100% !important;
  font-size: 0.875rem !important;
  margin-top: 2px !important;
  padding: 0px !important;
}

#js-product-list-top .sort-by-row .products-sort-order .dropdown-menu .select-list {
  font-size: inherit !important;
  padding: 7px 15px !important;
  color: #253237 !important;
  display: block !important;
}

#js-product-list-top .sort-by-row .products-sort-order .dropdown-menu .select-list:hover {
  color: #ffffff !important;
  background-color: var(--hovercolor) !important;
  text-decoration: none !important;
}

/* ==========================================================================
   V10V — Connexion & Création de compte (charte Vin 10 Vin)
   Restyle CSS pur des templates customer/authentication + registration.
   Charte : magenta #dc016f · prune #2a151f · crème · Spectral + Manrope.
   Remplace l'ancien bloc "Modern Login & Registration Redesign".
   ========================================================================== */

/* Polices charte (Spectral + Manrope) : chargées globalement par le thème /
   la home refonte (link Google Fonts présent dans le <head>). On référence
   simplement les familles ; fallbacks Georgia / system-ui si indisponibles.
   NB : pas d'@import ici — un @import en milieu de feuille serait ignoré. */

/* Variables locales charte (fallback si non héritées) */
body#authentication,
body#registration,
body#password {
  --v-rose: #dc016f;
  --v-rose-deep: #b00159;
  --v-rose-tint: #fdeef6;
  --v-rose-line: #f7d4e5;
  --v-ink: #2a151f;
  --v-text: #4d414a;
  --v-muted: #8d8189;
  --v-line: #ece2e8;
  --v-cream: #f9f1e9;
  --v-wine: #45102a;
  --v-wine-2: #2c0817;
  --v-display: "Spectral", Georgia, "Times New Roman", serif;
  --v-sans: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
}

/* Fond de page chaleureux + neutralisation du chrome de contenu thème */
body#authentication,
body#registration,
body#password {
  background-color: #fffcf8 !important;
}
body#authentication #content,
body#registration #content,
body#password #content {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}
body#authentication .page-title-wrapper,
body#registration .page-title-wrapper,
body#password .page-title-wrapper {
  display: none !important;
}

/* ==========================================================================
   Carte en split : panneau visuel (gauche) + formulaire (droite)
   ========================================================================== */
.custom-login-wrapper,
.custom-register-wrapper {
  max-width: 676px;
  margin: clamp(28px, 5vw, 64px) auto;
  padding: 0 16px;
  font-family: var(--v-sans);
  color: var(--v-text);
}

/* Largeur de la colonne visuelle gauche (panneau absolu) */
:root,
body#authentication,
body#registration {
  --v-panel-w: clamp(280px, 36%, 380px);
}

/* Reset box-sizing dans les cartes (au cas où le thème ne l'impose pas) */
.custom-login-wrapper *,
.custom-register-wrapper * {
  box-sizing: border-box;
}

.login-card,
.register-card {
  position: relative;
  background-color: #fff;
  border-radius: 20px;
  /* La colonne gauche (panneau visuel) est en position absolue : on réserve
     sa largeur via le padding-left de la carte. */
  padding: clamp(34px, 4vw, 52px) clamp(34px, 4vw, 52px) clamp(30px, 4vw, 44px);
  padding-left: calc(var(--v-panel-w) + clamp(34px, 4vw, 56px));
  box-shadow: 0 28px 60px -34px rgba(69, 16, 42, 0.42), 0 2px 6px rgba(42, 21, 31, 0.04);
  border: 1px solid var(--v-line);
  overflow: hidden;
}

/* Panneau visuel à gauche (absolu, pleine hauteur de la carte) */
.login-card::before,
.register-card::before {
  content: "";
  position: absolute;
  left: clamp(14px, 1.6vw, 18px);
  top: clamp(14px, 1.6vw, 18px);
  bottom: clamp(14px, 1.6vw, 18px);
  width: var(--v-panel-w);
  border-radius: 16px;
  background:
    radial-gradient(120% 90% at 78% 12%, rgba(220, 1, 111, 0.55), transparent 55%),
    linear-gradient(158deg, #54173a 0%, #2c0a1c 60%, #1c0613 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  z-index: 0;
}

/* Contenu textuel du panneau visuel (par-dessus le dégradé) */
.login-card::after,
.register-card::after {
  position: absolute;
  left: clamp(14px, 1.6vw, 18px);
  top: clamp(14px, 1.6vw, 18px);
  bottom: clamp(14px, 1.6vw, 18px);
  width: var(--v-panel-w);
  border-radius: 16px;
  padding: clamp(28px, 3vw, 38px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 18px;
  color: #fff;
  pointer-events: none;
  z-index: 1;
  font-family: var(--v-sans);
  font-weight: 600;
  line-height: 1.55;
  font-size: 14px;
  box-sizing: border-box;
}
.login-card::after,
.register-card::after,
.login-card::before,
.register-card::before {
  content: none !important;
  display: none !important;
}
.login-card,
.register-card {
  padding-left: clamp(34px, 4vw, 52px) !important;
}

/* Les vrais contenus passent au-dessus du panneau, dans la colonne droite */
.custom-login-wrapper .login-card > *,
.custom-register-wrapper .register-card > * {
  position: relative;
  z-index: 2;
}

/* Titres / sous-titres */
.login-card-title,
.register-card-title {
  font-family: var(--v-display) !important;
  font-size: clamp(27px, 3vw, 34px);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--v-ink);
  margin: 0 0 8px 0;
  text-align: left;
  text-transform: none !important; /* annule le capitalize du thème (charte = casse de phrase) */
}
.login-card-subtitle,
.register-card-subtitle {
  font-family: var(--v-sans);
  font-size: 14.5px;
  color: var(--v-muted);
  margin: 0 0 26px 0;
  text-align: left;
}
.login-card-subtitle a,
.register-card-subtitle a {
  color: var(--v-rose) !important;
  font-weight: 700;
  text-decoration: none;
}
.login-card-subtitle a:hover,
.register-card-subtitle a:hover {
  color: var(--v-rose-deep) !important;
  text-decoration: underline;
}

/* Eyebrow décoratif au-dessus du titre */
.login-card-title::before,
.register-card-title::before {
  content: "Espace client";
  display: block;
  font-family: var(--v-sans);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--v-rose);
  margin-bottom: 12px;
}

/* ==========================================================================
   Champs de formulaire (pilules charte)
   ========================================================================== */
.login-card .form-group,
.register-card .form-group {
  display: flex !important;
  flex-direction: column !important;
  margin: 0 0 16px 0 !important; /* annule les marges négatives Bootstrap .row */
  width: 100% !important;
}
/* Neutralise les marges négatives des .row du thème dans les cartes */
.login-card .row,
.register-card .row,
.login-card #login-form > div,
.register-card #customer-form > div {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* Masquer champs ETS vides + commentaires vides */
.register-card .form-group.row:has(> label[for=""]),
.register-card .form-control-comment:empty {
  display: none !important;
}

.login-card .form-group .form-control-label,
.register-card .form-group .form-control-label {
  text-align: left !important;
  width: 100% !important;
  max-width: 100% !important;
  flex: 0 0 100% !important;
  margin-bottom: 7px !important;
  font-family: var(--v-sans) !important;
  font-weight: 700 !important;
  font-size: 13.5px !important;
  color: var(--v-ink) !important;
  padding: 0 !important;
}

.login-card .form-group > div,
.register-card .form-group > div {
  width: 100% !important;
  max-width: 100% !important;
  flex: 0 0 100% !important;
  padding: 0 !important;
}

.login-card .form-control,
.register-card .form-control {
  width: 100% !important;
  height: 50px !important;
  padding: 12px 16px !important;
  box-sizing: border-box !important;
  font-family: var(--v-sans) !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  border: 1.5px solid var(--v-line) !important;
  border-radius: 12px !important;
  background-color: var(--v-cream) !important;
  color: var(--v-ink) !important;
  box-shadow: none !important;
  transition: border-color 0.2s, box-shadow 0.2s, background-color 0.2s !important;
}
.login-card .form-control::placeholder,
.register-card .form-control::placeholder {
  color: #a99fa6 !important;
}
.login-card .form-control:focus,
.register-card .form-control:focus {
  border-color: var(--v-rose) !important;
  background-color: #fff !important;
  box-shadow: 0 0 0 3px rgba(220, 1, 111, 0.14) !important;
  outline: none !important;
}

/* Select (au cas où un thème en ajoute) */
.register-card select,
.register-card select.form-control,
.register-card select.form-control-select {
  width: 100% !important;
  height: 50px !important;
  padding: 12px 16px !important;
  font-family: var(--v-sans) !important;
  font-size: 15px !important;
  border: 1.5px solid var(--v-line) !important;
  border-radius: 12px !important;
  background-color: var(--v-cream) !important;
  color: var(--v-ink) !important;
  box-sizing: border-box !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238d8189' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 14px center !important;
  background-size: 16px !important;
  padding-right: 42px !important;
}

/* ==========================================================================
   Titre (civilité) — radios M. / Mme en "pills"
   ========================================================================== */
.register-card .form-group:has(input[name="id_gender"]) > div {
  display: flex !important;
  gap: 10px !important;
}
.register-card .radio-inline {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  margin: 0 !important;
  padding: 11px 18px !important;
  font-family: var(--v-sans) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: var(--v-ink) !important;
  background: var(--v-cream) !important;
  border: 1.5px solid var(--v-line) !important;
  border-radius: 999px !important;
  cursor: pointer !important;
  transition: border-color 0.2s, background-color 0.2s, color 0.2s !important;
}
.register-card .radio-inline:hover {
  border-color: var(--v-rose-line) !important;
}
/* La pastille radio native est masquée (le label-pilule fait office de bouton) */
.register-card .radio-inline .custom-radio,
.register-card .radio-inline .custom-radio span {
  display: none !important;
}
.register-card .radio-inline input[type="radio"] {
  position: absolute !important;
  opacity: 0 !important;
  width: 1px !important;
  height: 1px !important;
  margin: 0 !important;
  pointer-events: none !important;
}
.register-card .radio-inline:has(input:checked) {
  border-color: var(--v-rose) !important;
  background: var(--v-rose-tint) !important;
  color: var(--v-rose-deep) !important;
}

/* ==========================================================================
   Mot de passe : bouton "Afficher / show-password"
   (login : .password-input-container ; register : .input-group)
   ========================================================================== */
.login-card .password-input-container,
.register-card .password-input-container,
.register-card .input-group,
.login-card .input-group {
  position: relative !important;
  display: block !important;
  width: 100% !important;
  box-shadow: none !important;
  border: none !important;
  background: transparent !important;
  padding: 0 !important;
}
.login-card .password-input-container .form-control,
.register-card .password-input-container .form-control,
.register-card .input-group .form-control,
.login-card .input-group .form-control {
  padding-right: 92px !important;
  border-radius: 12px !important;
  width: 100% !important;
  display: block !important;
}
.login-card .password-input-container .show-password-btn,
.register-card .password-input-container .show-password-btn,
.register-card .input-group .input-group-btn,
.login-card .input-group .input-group-btn {
  position: absolute !important;
  right: 0 !important;
  top: 0 !important;
  height: 50px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 10 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  background: transparent !important;
}
.login-card .password-input-container .show-password-btn,
.register-card .password-input-container .show-password-btn,
.register-card .input-group .input-group-btn .btn,
.login-card .input-group .input-group-btn .btn {
  color: var(--v-rose) !important;
  font-family: var(--v-sans) !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
  outline: none !important;
  cursor: pointer !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 16px !important;
  height: 100% !important;
  display: flex !important;
  align-items: center !important;
  margin: 0 !important;
}
.register-card .password-input-container .show-password-btn,
.register-card .input-group .input-group-btn .btn {
  margin-right: 0 !important;
}

/* ==========================================================================
   Cases à cocher (optin, GDPR, newsletter) — charte
   ========================================================================== */
.register-card .extra_customer_box_form {
  display: none !important;
}
.register-card .custom-checkbox,
.register-card .checkbox,
.register-card .form-group.checkbox,
.register-card [class*="gdpr_consent"],
.register-card [class*="gdpr-consent"],
.register-card .custom-checkbox-wrapper {
  display: flex !important;
  align-items: flex-start !important;
  margin-bottom: 6px !important;
  width: 100% !important;
  padding: 0 !important;
}
.register-card .custom-checkbox label,
.register-card .checkbox label,
.register-card [class*="gdpr_consent"] label,
.register-card [class*="gdpr-consent"] label,
.register-card .custom-checkbox-wrapper label {
  display: flex !important;
  align-items: flex-start !important;
  gap: 10px !important;
  font-family: var(--v-sans) !important;
  font-size: 13px !important;
  color: var(--v-text) !important;
  line-height: 1.45 !important;
  cursor: pointer !important;
  margin: 0 !important;
  text-align: left !important;
}
/* Case native masquée — la pastille stylée (span suivant) la remplace */
.register-card .custom-checkbox label input[type="checkbox"],
.register-card .checkbox label input[type="checkbox"] {
  position: absolute !important;
  opacity: 0 !important;
  width: 1px !important;
  height: 1px !important;
  margin: 0 !important;
  pointer-events: none !important;
}
/* Pastille visuelle de la case (le <span> qui suit l'input) */
.register-card .custom-checkbox label > span:first-of-type,
.register-card .checkbox label > span:first-of-type {
  flex: 0 0 auto !important;
  width: 20px !important;
  height: 20px !important;
  border: 1.5px solid var(--v-line) !important;
  border-radius: 6px !important;
  background: var(--v-cream) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-top: 1px !important;
  transition: border-color 0.15s, background-color 0.15s !important;
}
.register-card .custom-checkbox label:has(input:checked) > span:first-of-type,
.register-card .checkbox label:has(input:checked) > span:first-of-type,
.register-card .custom-checkbox label input:checked + span,
.register-card .checkbox label input:checked + span {
  border-color: var(--v-rose) !important;
  background: var(--v-rose) !important;
}
.register-card .custom-checkbox label .checkbox-checked,
.register-card .checkbox label .checkbox-checked {
  color: #fff !important;
  font-size: 15px !important;
}
.register-card .custom-checkbox label em,
.register-card .checkbox label em,
.register-card [class*="gdpr_consent"] label em,
.register-card [class*="gdpr-consent"] label em {
  font-size: 11.5px !important;
  color: var(--v-muted) !important;
  font-style: normal !important;
}
.register-card .custom-checkbox label em p,
.register-card .checkbox label em p {
  display: inline !important;
  margin: 0 !important;
  padding: 0 !important;
  font-size: inherit !important;
  color: inherit !important;
}
.register-card .custom-checkbox a,
.register-card .checkbox a {
  color: var(--v-rose) !important;
  font-weight: 700 !important;
  text-decoration: underline !important;
}

/* ==========================================================================
   Boutons d'envoi — magenta charte
   ========================================================================== */
.login-card #submit-login,
.login-card .form-control-submit,
.register-card .form-control-submit,
.login-card .form-footer .btn-primary,
.register-card .form-footer .btn-primary {
  width: 100% !important;
  height: 52px !important;
  margin-top: 8px !important;
  background-color: var(--v-rose) !important;
  background-image: none !important;
  border: 1.5px solid var(--v-rose) !important;
  border-radius: 10px !important;
  color: #fff !important;
  font-family: var(--v-sans) !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  letter-spacing: 0.01em !important;
  text-transform: none !important;
  box-shadow: 0 12px 26px -14px rgba(220, 1, 111, 0.55) !important;
  cursor: pointer !important;
  transition: background-color 0.2s, border-color 0.2s, transform 0.12s !important;
  float: none !important;
}
.login-card #submit-login:hover,
.login-card .form-control-submit:hover,
.register-card .form-control-submit:hover {
  background-color: var(--v-rose-deep) !important;
  border-color: var(--v-rose-deep) !important;
}
.login-card #submit-login:active,
.register-card .form-control-submit:active {
  transform: scale(0.99) !important;
}
.login-card .form-footer,
.register-card .form-footer {
  margin-top: 4px !important;
  padding: 0 !important;
  text-align: left !important;
}

/* Masquer libellés "optionnel"/commentaires parasites */
.login-card .form-control-comment,
.register-card .form-control-comment,
.register-card .optional,
.register-card .optionnel,
.register-card span.optional,
.register-card span.optionnel,
.register-card div.optional,
.register-card div.optionnel,
#customer-form .form-control-comment,
#customer-form .optional,
#customer-form .optionnel {
  display: none !important;
}

/* Lien "mot de passe oublié" */
.forgot-password {
  text-align: right;
  margin-top: -6px;
  margin-bottom: 22px;
}
.forgot-password a {
  font-family: var(--v-sans);
  font-size: 13px;
  color: var(--v-rose);
  font-weight: 700;
  text-decoration: none;
}
.forgot-password a:hover {
  color: var(--v-rose-deep);
  text-decoration: underline;
}

/* Bascule "Pas de compte ?" (login) — sous la carte, alignée colonne droite */
.no-account-box {
  text-align: center;
  margin: 18px auto 0;
  max-width: 1040px;
  padding: 0 16px;
  font-family: var(--v-sans);
  font-size: 14px;
  color: var(--v-muted);
}
.no-account-box a {
  color: var(--v-rose);
  font-weight: 700;
  text-decoration: none;
}
.no-account-box a:hover {
  color: var(--v-rose-deep);
  text-decoration: underline;
}

/* Messages d'erreur (form-errors) à la charte */
body#authentication .alert,
body#registration .alert,
body#password .alert,
.login-card .help-block,
.register-card .help-block {
  font-family: var(--v-sans) !important;
  font-size: 13px !important;
  border-radius: 10px !important;
}
.login-card .has-error .form-control,
.register-card .has-error .form-control {
  border-color: #d63a4a !important;
}

/* ==========================================================================
   Responsive — le panneau visuel passe en bandeau haut, puis disparaît
   ========================================================================== */
@media (max-width: 860px) {
  .login-card,
  .register-card {
    /* On rétablit un padding normal et on réserve la hauteur du bandeau en haut */
    padding-left: clamp(22px, 5vw, 40px) !important;
    padding-right: clamp(22px, 5vw, 40px) !important;
    padding-top: calc(200px + clamp(24px, 4vw, 34px)) !important;
  }
  .login-card::before,
  .register-card::before,
  .login-card::after,
  .register-card::after {
    left: clamp(14px, 3vw, 18px);
    right: clamp(14px, 3vw, 18px);
    top: clamp(14px, 3vw, 18px);
    bottom: auto;
    width: auto;
    height: 200px;
  }
  .login-card::after,
  .register-card::after {
    height: 200px;
    padding: clamp(20px, 4vw, 28px);
    justify-content: center;
    gap: 14px;
  }
}
@media (max-width: 560px) {
  .login-card,
  .register-card {
    padding-top: clamp(28px, 6vw, 36px) !important;
  }
  .login-card::before,
  .register-card::before { display: none; }
  .login-card::after,
  .register-card::after { display: none; }
}

/* GC — Inscription : masquer Titre (M./Mme) + checkbox Optin partenaires ;
   mettre Prénom + Nom côte à côte sur la même ligne. */
body#registration .form-group:has(#field-id_gender-1),
body#registration .form-group:has(input[name="optin"]) {
  display: none !important;
}
body#registration .form-group:has(#field-firstname),
body#registration .form-group:has(#field-lastname) {
  display: inline-block !important;
  width: calc(50% - 8px) !important;
  vertical-align: top !important;
  margin-right: 0 !important;
  margin-left: 0 !important;
}
body#registration .form-group:has(#field-firstname) { margin-right: 12px !important; }

/* GC — Newsletter : titre + texte légal côte à côte sur UNE seule row (2 colonnes) */
.register-card .form-group:has(input[name="newsletter"]) label {
  flex-wrap: nowrap !important;
  align-items: center !important;
}
.register-card .form-group:has(input[name="newsletter"]) label br { display: none !important; }
.register-card .form-group:has(input[name="newsletter"]) label em {
  margin-left: 10px !important;
  white-space: normal !important;
  flex: 1 1 0 !important;
}

/* GC — Bouton MONTRER (inscription) : 3 pièges cumulés du markup thème —
   (1) le champ est float:left → .input-group collapse en hauteur (corrigé float:none) ;
   (2) le <span.input-group-btn> collapse en largeur (~5px) ;
   (3) le <button> est position:relative (94px) → il déborde, centré sur le span de 5px.
   Solution : span neutre (static), on positionne le BOUTON lui-même en absolu, ancré sur l'input-group,
   hauteur = champ, ramené dans le layout (right). body#registration = specificité id pour gagner la cascade. */
body#registration .register-card .input-group { position: relative !important; }
body#registration .register-card .input-group > .form-control {
  float: none !important;
  padding-right: 104px !important;
}
body#registration .register-card .input-group .input-group-btn { position: static !important; }
body#registration .register-card .input-group .input-group-btn .btn,
body#registration .register-card .input-group button[data-action="show-password"] {
  position: absolute !important;
  top: 0 !important;
  bottom: 0 !important;
  left: auto !important;
  right: 10px !important;
  height: 50px !important;
  margin: 0 !important;
  transform: none !important;
  display: flex !important;
  align-items: center !important;
  background: transparent !important;
}

/* GC — Hero HP : masque le bloc avis (étoiles + "4,8/5") sous les deux CTA */
.v10vr .hero__proof { display: none !important; }

/* GC — Header V10V intelligent (fixe + masquage directionnel). <main> a overflow:hidden (casse
   position:sticky) et pas de wrapper header.header sur les catégories → le JS de head.tpl pose
   .gc-fixed-header (position:fixed) sur la section Elementor et réserve la hauteur pleine en
   padding-top sur <main>. Le repli de .topbar (rose) et .hd (recherche) est piloté en STYLE INLINE
   par le JS (une règle par classe ne s'applique pas ici : la cascade du <style> inline Creative
   Elements la neutralise). Comportement : rose visible seulement tout en haut ; .hd masquée au scroll
   vers le bas et révélée au scroll vers le haut ; .nav (menu) toujours visible. */
.gc-fixed-header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 1000 !important;
  background: #fff !important;
  box-shadow: 0 2px 12px -6px rgba(42, 21, 31, 0.18) !important;
}

/* GC — Section « Selon votre envie » : titre + sous-titre sur 2 lignes, alignés à gauche (6 cartes) */
.v10vr .envie-card__txt { text-align: left !important; }
.v10vr .envie-card__t,
.v10vr .envie-card__s { display: block !important; }
.v10vr .envie-card__s { margin-top: 4px !important; }

/* GC — Header V10V : pousser Compte/Panier contre le bord droit du container (alignés sur le bord droit du hero) */
.header__main .header__actions { margin-left: auto !important; }

/* GC — Pagination catégorie : page active à la couleur du footer (prune #2a151f) */
:is(#category, #search, .categoryproducts) .pagination .page-list li.current > a,
:is(#category, #search, .categoryproducts) .pagination .page-list li.current > a.disabled {
  background-color: #2a151f !important;
  border-color: #2a151f !important;
  color: #fff !important;
}


/* ============================================================================
   GC MERGE 2026-06-04 — blocs GC réintégrés PAR-DESSUS la version serveur courante
   (refonte login/inscription + page loader serveur conservés intacts ci-dessus)
   ============================================================================ */

/* ===== GC FICHE PRODUIT V10V — début ===== */

/* GC — Chargement Roboto Slab (répliqué de la maquette : Google Fonts css2, weights 400/500/600/700) */
/* cyrillic-ext */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/robotoslab/v36/BngMUXZYTXPIvIBgJJSb6ufA5qWr4xCCQ_k.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/robotoslab/v36/BngMUXZYTXPIvIBgJJSb6ufJ5qWr4xCCQ_k.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/robotoslab/v36/BngMUXZYTXPIvIBgJJSb6ufB5qWr4xCCQ_k.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/robotoslab/v36/BngMUXZYTXPIvIBgJJSb6ufO5qWr4xCCQ_k.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/robotoslab/v36/BngMUXZYTXPIvIBgJJSb6ufC5qWr4xCCQ_k.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/robotoslab/v36/BngMUXZYTXPIvIBgJJSb6ufD5qWr4xCCQ_k.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/robotoslab/v36/BngMUXZYTXPIvIBgJJSb6ufN5qWr4xCC.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/robotoslab/v36/BngMUXZYTXPIvIBgJJSb6ufA5qWr4xCCQ_k.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/robotoslab/v36/BngMUXZYTXPIvIBgJJSb6ufJ5qWr4xCCQ_k.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/robotoslab/v36/BngMUXZYTXPIvIBgJJSb6ufB5qWr4xCCQ_k.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/robotoslab/v36/BngMUXZYTXPIvIBgJJSb6ufO5qWr4xCCQ_k.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/robotoslab/v36/BngMUXZYTXPIvIBgJJSb6ufC5qWr4xCCQ_k.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/robotoslab/v36/BngMUXZYTXPIvIBgJJSb6ufD5qWr4xCCQ_k.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/robotoslab/v36/BngMUXZYTXPIvIBgJJSb6ufN5qWr4xCC.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/robotoslab/v36/BngMUXZYTXPIvIBgJJSb6ufA5qWr4xCCQ_k.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/robotoslab/v36/BngMUXZYTXPIvIBgJJSb6ufJ5qWr4xCCQ_k.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/robotoslab/v36/BngMUXZYTXPIvIBgJJSb6ufB5qWr4xCCQ_k.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/robotoslab/v36/BngMUXZYTXPIvIBgJJSb6ufO5qWr4xCCQ_k.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/robotoslab/v36/BngMUXZYTXPIvIBgJJSb6ufC5qWr4xCCQ_k.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/robotoslab/v36/BngMUXZYTXPIvIBgJJSb6ufD5qWr4xCCQ_k.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/robotoslab/v36/BngMUXZYTXPIvIBgJJSb6ufN5qWr4xCC.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/robotoslab/v36/BngMUXZYTXPIvIBgJJSb6ufA5qWr4xCCQ_k.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/robotoslab/v36/BngMUXZYTXPIvIBgJJSb6ufJ5qWr4xCCQ_k.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/robotoslab/v36/BngMUXZYTXPIvIBgJJSb6ufB5qWr4xCCQ_k.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/robotoslab/v36/BngMUXZYTXPIvIBgJJSb6ufO5qWr4xCCQ_k.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/robotoslab/v36/BngMUXZYTXPIvIBgJJSb6ufC5qWr4xCCQ_k.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/robotoslab/v36/BngMUXZYTXPIvIBgJJSb6ufD5qWr4xCCQ_k.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Roboto Slab';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/robotoslab/v36/BngMUXZYTXPIvIBgJJSb6ufN5qWr4xCC.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* GC — Force Roboto Slab #182F51 sur le H1 fiche produit (triple sélecteur : couvre les fiches sans .fp-title) */
.fp-product h1.fp-title,
.fp-product h1.namne_details,
.fp-buy h1 { font-family:'Roboto Slab', Georgia, serif !important; color:#182F51 !important; }

/* Source de vérité : maquettes-design/fiche-produit-v10v (HTML+CSS).
   Tout est scopé body.page-product et préfixé .fp-. Form panier natif habillé,
   pas restructuré. Accent magenta via --fp-accent. */

:root { --fp-accent:#DC016F; --fp-accent-dark:#B00057; }

/* On masque le fil d'Ariane natif ET son conteneur .page-title-wrapper (bande vide :
   header vide + breadcrumb déjà masqué). Cela supprime la bande native et TOUT filet/bordure
   qu'elle porte sous le breadcrumb. On ne garde que .fp-crumbs. (NE PAS toucher au header CE.) */
body.page-product .breadcrumb { display:none !important; }
body.page-product .page-title-wrapper { display:none !important; border:0 !important; box-shadow:none !important; }

/* Conteneur fiche (équiv. .wrap maquette) */
body.page-product .fp-product { max-width:1200px; margin:0 auto; padding:0 40px; font-family:'Roboto',Arial,sans-serif; color:#211B1E; }

/* ---------------- BREADCRUMB ---------------- */
body.page-product .fp-crumbs { padding:22px 0 0; display:flex; align-items:center; flex-wrap:wrap; gap:8px; font-size:13px; color:#8C8388; }
body.page-product .fp-crumbs a { color:#8C8388; transition:color .2s; }
body.page-product .fp-crumbs a:hover { color:var(--fp-accent); }
body.page-product .fp-crumbs .fp-sep { color:#E2D9D4; }
body.page-product .fp-crumbs .fp-back { display:inline-flex; align-items:center; gap:7px; color:#4C4549; font-weight:500; }
body.page-product .fp-crumbs .fp-back:hover { color:var(--fp-accent); }
body.page-product .fp-crumb-current { color:#8C8388; }

/* ---------------- HERO ---------------- */
body.page-product .fp-hero { display:grid; grid-template-columns:1.05fr 1fr; gap:56px; padding:34px 0 64px; align-items:start; }
body.page-product .fp-gallery { background:#fff; border:1px solid #ECE5E2; border-radius:18px; box-shadow:0 18px 50px -28px rgba(94,18,36,.28); padding:40px; display:flex; flex-direction:column; align-items:center; }
body.page-product .fp-gallery .images-container { width:100%; margin:0; }
body.page-product .fp-gallery .product-cover,
body.page-product .fp-gallery .product-cover-container { background:transparent; border:none; box-shadow:none; border-radius:0; }
body.page-product .fp-gallery .product-cover img { height:auto; max-height:480px; width:auto !important; max-width:100%; margin:0 auto; object-fit:contain; mix-blend-mode:multiply; border-radius:0; box-shadow:none; }
body.page-product .fp-gallery .product-flag { z-index:2; }

body.page-product .fp-buy { padding-top:6px; }
body.page-product .fp-eyebrow { display:flex; align-items:center; gap:12px; flex-wrap:wrap; margin-bottom:14px; }
body.page-product .fp-eyebrow .fp-dom { font-size:13px; font-weight:600; letter-spacing:.4px; color:var(--fp-accent); text-transform:uppercase; }
body.page-product .fp-eyebrow .fp-app { font-size:15px; color:#4C4549; font-weight:500; }
body.page-product .fp-eyebrow .fp-eyebrow-sep { color:#8C8388; font-size:15px; }

body.page-product h1.fp-title.namne_details,
body.page-product h1.fp-title { font-family:'Roboto Slab',Georgia,serif !important; font-weight:600 !important; font-size:25px !important; line-height:1.12 !important; letter-spacing:-.4px; color:#182F51 !important; margin:0 0 18px !important; }

body.page-product .fp-meta-row { display:flex; align-items:center; flex-wrap:wrap; gap:18px; padding:16px 0; border-top:1px solid #ECE5E2; border-bottom:1px solid #ECE5E2; margin-bottom:26px; }
body.page-product .fp-meta-row .fp-m { display:flex; flex-direction:column; gap:2px; }
body.page-product .fp-meta-row .fp-k { font-size:11px; letter-spacing:.6px; text-transform:uppercase; color:#8C8388; font-weight:500; }
body.page-product .fp-meta-row .fp-v { font-size:15px; font-weight:600; color:#211B1E; display:inline-flex; align-items:center; }
body.page-product .fp-meta-row .fp-div { width:1px; align-self:stretch; background:#ECE5E2; }
body.page-product .fp-swatch { display:inline-block; width:10px; height:10px; border-radius:50%; border:1px solid rgba(0,0,0,.12); margin-right:7px; flex:0 0 auto; }
body.page-product .fp-swatch--blanc { background:#E9DCA8; }
body.page-product .fp-swatch--rose { background:#E8A6B6; }
body.page-product .fp-swatch--rouge { background:#5E1224; }

/* ---------------- PRIX ---------------- */
body.page-product .fp-prices { margin:0; }
body.page-product .fp-price-row { display:flex; align-items:baseline; flex-wrap:wrap; gap:14px; margin-bottom:4px; }
body.page-product .fp-price.current-price-value,
body.page-product .fp-price { font-family:'Roboto Slab',serif !important; font-weight:700 !important; font-size:44px !important; color:var(--fp-accent) !important; line-height:1 !important; letter-spacing:-1px; }
body.page-product .fp-price-old { font-family:'Roboto Slab',serif; font-weight:500; font-size:24px; color:#8C8388; text-decoration:line-through; }
body.page-product .fp-price-badge { align-self:center; font-family:'Roboto',sans-serif; font-weight:700; font-size:13px; letter-spacing:.3px; color:#fff !important; background:var(--fp-accent) !important; border-radius:8px; padding:5px 10px; line-height:1; }
body.page-product .fp-price-row.fp-no-promo .fp-price-old,
body.page-product .fp-price-row.fp-no-promo .fp-price-badge { display:none; }
body.page-product .fp-price-sub { font-size:13px; font-weight:500; color:#8C8388; margin-bottom:14px; }
body.page-product .fp-prices .product-unit-price { font-size:12px; color:#8C8388; margin:0 0 8px; }

/* ---------------- STOCK ---------------- */
body.page-product .fp-stockline { display:flex; align-items:center; gap:8px; font-size:13px; color:#4C4549; margin-bottom:26px; }
body.page-product .fp-stockline .fp-dot { width:8px; height:8px; border-radius:50%; background:#2CA53C; box-shadow:0 0 0 3px rgba(44,165,60,.18); flex:0 0 auto; }
body.page-product .fp-stockline--soon .fp-dot { background:#A98445; box-shadow:0 0 0 3px rgba(169,132,69,.18); }
body.page-product .fp-stockline--out { color:#9a9a9a; }
body.page-product .fp-stockline--out .fp-dot { background:#b0b0b0; box-shadow:0 0 0 3px rgba(176,176,176,.18); }

/* ---------------- FORM PANIER habillé en stepper maquette ---------------- */
body.page-product .fp-cart-wrap { margin-bottom:14px; }
body.page-product .product-add-to-cart > .control-label { display:none; }
body.page-product .product-quantity { display:flex; gap:14px; align-items:stretch; margin:0; }
body.page-product .product-quantity .qty { margin:0; }
body.page-product .product-quantity .add { flex:1 1 auto; display:flex; margin:0; }
/* Stepper : structure horizontale NATIVE du thème conservée (− [input] +, glyphes roadthemes-icon).
   On ne corrige QUE la charte : magenta au lieu du bordeaux var(--hovercolor) du thème. */
body.page-product .product-quantity .qty .bootstrap-touchspin { border:1px solid #E2D9D4; border-radius:8px; overflow:hidden; background:#fff; box-shadow:none; }
body.page-product #quantity_wanted { font-family:'Roboto',sans-serif; font-size:17px; font-weight:600; color:#211B1E; background:#fff; border:0 !important; box-shadow:none; -moz-appearance:textfield; }
body.page-product #quantity_wanted::-webkit-outer-spin-button,
body.page-product #quantity_wanted::-webkit-inner-spin-button { -webkit-appearance:none; margin:0; }
body.page-product .product-quantity .qty .btn-touchspin { background:#fff !important; color:#182F51 !important; border:none !important; box-shadow:none !important; height:auto !important; top:0 !important; bottom:0 !important; }
body.page-product .product-quantity .qty .btn-touchspin i { color:#182F51 !important; }
/* séparateurs internes − | 1 | + (à la place des bordures grises parasites des boutons) */
body.page-product .product-quantity .qty .bootstrap-touchspin-down { border-right:1px solid #E2D9D4 !important; }
body.page-product .product-quantity .qty .bootstrap-touchspin-up { border-left:1px solid #E2D9D4 !important; }
body.page-product .product-quantity .qty .btn-touchspin:hover,
body.page-product .product-quantity .qty .bootstrap-touchspin .input-group-btn-vertical .btn-touchspin:hover { background:var(--fp-accent) !important; border-color:var(--fp-accent) !important; color:#fff !important; }
body.page-product .product-quantity .qty .btn-touchspin:hover i { color:#fff !important; }
body.page-product .btn.btn-primary.add-to-cart { flex:1 1 auto; height:54px; border:none !important; border-radius:8px !important; background:var(--fp-accent) !important; color:#fff !important; font-family:'Roboto',sans-serif; font-weight:600; font-size:15px; letter-spacing:.3px; text-transform:none !important; display:flex; align-items:center; justify-content:center; gap:10px; box-shadow:none; }
body.page-product .btn.btn-primary.add-to-cart:hover,
body.page-product .btn.btn-primary.add-to-cart:focus,
body.page-product .btn.btn-primary.add-to-cart:active { background:var(--fp-accent-dark) !important; color:#fff !important; }
/* hover bulletproof (ID) — bat .product-actions .add-to-cart:hover du thème (var(--hovercolor)=rouge wine club) */
body.page-product #add-to-cart-or-refresh .add-to-cart:hover,
body.page-product #add-to-cart-or-refresh .add-to-cart:focus,
body.page-product #add-to-cart-or-refresh .add-to-cart:active { background:var(--fp-accent-dark) !important; border-color:var(--fp-accent-dark) !important; color:#fff !important; }
body.page-product .btn.btn-primary.add-to-cart .material-icons { font-size:19px; }
/* on masque la dispo native redondante (on a .fp-stockline) */
body.page-product #product-availability { display:none; }
body.page-product .product-minimal-quantity.fp-lot { font-size:12px; color:#8C8388; margin:18px 0 0; line-height:1.5; }

/* ---------------- RÉASSURANCE inline ---------------- */
/* On masque le bloc partage social natif (Facebook/Twitter/Pinterest) = vide disgracieux au-dessus des assurances */
body.page-product .product-additional-info,
body.page-product .fmmpoLatestver { display:none !important; }
body.page-product .fp-assurances { display:grid; grid-template-columns:1fr 1fr; gap:16px 24px; margin-top:16px; padding-top:18px; border-top:1px solid #ECE5E2; }
body.page-product .fp-assur { display:flex; align-items:center; gap:11px; font-family:'Roboto',sans-serif; font-size:13px; line-height:1.3; color:#4C4549; }
body.page-product .fp-assur svg { width:20px !important; height:20px !important; color:var(--fp-accent); stroke:var(--fp-accent); flex:0 0 auto; }
body.page-product .fp-assur b { font-weight:600; color:#211B1E; }

/* ---------------- DÉTAILS (onglets) ---------------- */
body.page-product .fp-details { padding:60px 0 30px; }
body.page-product .fp-tabs-head { display:flex; justify-content:center; gap:48px; border-bottom:1px solid #ECE5E2; margin-bottom:40px; }
body.page-product .fp-tab-btn { position:relative; background:none; border:none; cursor:pointer; padding:0 2px 18px; font-family:'Roboto Slab',serif; font-weight:500; font-size:18px; letter-spacing:.2px; color:#8C8388; transition:color .25s; }
body.page-product .fp-tab-btn:hover { color:#182F51; }
body.page-product .fp-tab-btn.active { color:#182F51; font-weight:600; }
body.page-product .fp-tab-btn.active::after { content:""; position:absolute; left:0; right:0; bottom:-1px; height:3px; background:var(--fp-accent); border-radius:3px 3px 0 0; }
body.page-product .fp-tab-panel { display:none; max-width:860px; margin:0 auto; }
body.page-product .fp-tab-panel.active { display:block; }
body.page-product .fp-prose > :first-child { font-family:'Roboto Slab',serif; font-size:23px; line-height:1.5; color:#182F51; margin:0 0 22px; font-weight:500; }
body.page-product .fp-prose p { margin:0 0 18px; font-size:15.5px; color:#4C4549; line-height:1.8; }
body.page-product .fp-prose p:last-child { margin-bottom:0; }
body.page-product .fp-prose b, body.page-product .fp-prose strong { color:#211B1E; font-weight:600; }
body.page-product .fp-ds-ref { max-width:860px; margin:0 auto 22px; display:flex; align-items:baseline; gap:12px; }
body.page-product .fp-ds-ref .fp-ds-lbl { font-family:'Roboto Slab',serif; font-size:19px; font-weight:600; color:#182F51; }
body.page-product .fp-ds-ref .fp-ds-val { font-size:14px; color:#8C8388; letter-spacing:.3px; }
body.page-product .fp-datasheet { border:1px solid #ECE5E2; border-radius:12px; overflow:hidden; max-width:860px; margin:0 auto; }
body.page-product .fp-ds-row { display:grid; grid-template-columns:1fr 1.4fr; }
body.page-product .fp-ds-row:nth-child(even) { background:#FBF7F4; }
body.page-product .fp-ds-row + .fp-ds-row { border-top:1px solid #ECE5E2; }
body.page-product .fp-ds-k { padding:16px 26px; font-size:14px; color:#8C8388; font-weight:500; }
body.page-product .fp-ds-v { padding:16px 26px; font-size:14.5px; color:#182F51; font-weight:600; }

/* ===== GC RÉASSURANCE V10V SITE-WIDE — règles généralisées (ex body.page-product) ===== */
/* Réassurance Creative Elements (footer builder, bg #E5EBF6) = ancien bandeau → collapse total
   site-wide (display:none + height/padding/margin 0 pour ne laisser AUCUN espace blanc avant le footer noir) */
.elementor-element-2864930c,
#footer .elementor-element-2864930c {
  display:none !important;
  height:0 !important;
  min-height:0 !important;
  max-height:0 !important;
  padding:0 !important;
  margin:0 !important;
  border:0 !important;
  overflow:hidden !important;
}
/* VRAIE source du blanc avant le footer = #footer { margin-top:4.375rem } (≈70px) du thème,
   réinitialisé seulement sur #index. On l'annule partout → .fp-trust (1er enfant de #footer) colle au footer noir. */
#footer { margin-top:0 !important; }

/* ---------------- TRUST (pleine largeur, bord à bord, collé au footer noir, site-wide) ---------------- */
.fp-trust { background:#F4EDE8; border-top:1px solid #ECE5E2; width:100%; margin:60px 0 0; }
.fp-trust-grid { display:grid; grid-template-columns:repeat(4,1fr); max-width:1200px; margin:0 auto; padding:0 clamp(16px, 4vw, 40px); }
.fp-trust-item { display:flex; gap:14px; padding:28px 26px; align-items:flex-start; }
.fp-trust-item + .fp-trust-item { border-left:1px solid #ECE5E2; }
.fp-trust-item .fp-t-ico { width:38px; height:38px; flex:0 0 auto; color:var(--fp-accent); }
.fp-trust-item .fp-t-ico svg { width:38px; height:38px; }
.fp-trust-item h4 { font-family:'Roboto',sans-serif; font-size:12.5px; letter-spacing:.5px; text-transform:uppercase; font-weight:700; color:#182F51; margin:2px 0 8px; line-height:1.35; }
.fp-trust-item p { margin:0; font-size:13px; color:#4C4549; line-height:1.5; }

/* ---------------- RESPONSIVE ---------------- */
@media (max-width:980px){
  body.page-product .fp-hero { grid-template-columns:1fr; gap:32px; }
  body.page-product h1.fp-title { font-size:28px !important; }
  body.page-product .fp-tabs-head { gap:32px; }
  /* GC — .fp-trust généralisé site-wide */
  .fp-trust-grid { grid-template-columns:1fr 1fr; }
  .fp-trust-item:nth-child(3) { border-left:none; }
}
@media (max-width:600px){
  body.page-product .fp-product { padding:0 16px; }
  body.page-product .fp-assurances { grid-template-columns:1fr; }
  /* GC — .fp-trust généralisé site-wide */
  .fp-trust-grid { grid-template-columns:1fr; }
  .fp-trust-item + .fp-trust-item { border-left:none; border-top:1px solid #ECE5E2; }
  body.page-product .fp-price.current-price-value, body.page-product .fp-price { font-size:36px !important; }
  body.page-product .fp-cart-wrap .product-quantity { flex-wrap:wrap; }
}

/* ===== GC FICHE PRODUIT V10V — fin ===== */

/* ===================================================================
   GC — CATÉGORIE + RECHERCHE V10V — début
   Transposé À L'IDENTIQUE de LWC (ztl_lwc) : même structure, même UX,
   mêmes filtres, même grille/vue-liste. Rhabillé charte V10V :
   accent magenta #dc016f, ink #2a151f, Spectral (titres) + Manrope (texte),
   petits arrondis. Scope :is(#category,#search,.categoryproducts).
   Tokens --wc-* remappés à la charte V10V (le rouge LWC devient magenta).
   =================================================================== */
:is(#category, #search, .categoryproducts) {
  --wc-red:        #dc016f;   /* accent magenta V10V (ex #AC0505) */
  --wc-red-dark:   #b00057;   /* magenta foncé (hover/active) */
  --wc-ink:        #2a151f;   /* ink V10V (ex #373737) */
  --wc-text:       #4a3a42;
  --wc-muted:      #8c7f86;
  --wc-faint:      #b3a7ad;
  --wc-border:     #e7ddd2;
  --wc-border-soft:#efe8dd;
  --wc-grey-50:    #f8f2ea;
  --wc-grey-100:   #f3ebe0;
  --wc-wine:       #6e1414;
  --wc-wine-dot:   #6e1414;
  --gc-font-title: "Spectral", Georgia, "Times New Roman", serif;
  --gc-font-ui:    "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
}

/* Fond crème charte V10V sur la zone listing (cartes restent blanches) */
:is(#category, #search, .categoryproducts) #wrapper { background: #f9f1e9 !important; }

/* ============================================================
   GC — ZONE A : page catégorie LWC (structure). Scope #category.
   Layout réel = layout-left-column (content col-md-9, pas de right-column).
   Vérifié contre le rendu réel /lwc/5039-vins-de-bourgogne.
   → AUCUN impact fiche produit (#product) ni autres pages.
   ============================================================ */

/* A1 — PLEINE LARGEUR : retire le max-width des conteneurs, marges latérales 40px.
   (grille déjà col-md-9 ; #left-column reste col-md-3 NATIF — largeur calée en Zone D) */
:is(#category, #search, .categoryproducts) #wrapper > .container,
:is(#category, #search, .categoryproducts) .page-title-wrapper > .container {
    max-width: none !important; width: 100% !important;
    padding-left: 40px !important; padding-right: 40px !important;
}

/* A2 — Bandeau titre : pas de bannière, fond blanc */
:is(#category, #search, .categoryproducts) .page-title-wrapper,
:is(#category, #search, .categoryproducts) .page-title-wrapper.p_tilte_small,
:is(#category, #search, .categoryproducts) .page-title-wrapper.p_tilte_big { background: none !important; min-height: 0 !important; padding: 0 !important; }
:is(#category, #search, .categoryproducts) .page-title-wrapper::before, :is(#category, #search, .categoryproducts) .page-title-wrapper::after { display: none !important; }

/* A3 — Ordre : breadcrumb AU-DESSUS du titre */
:is(#category, #search, .categoryproducts) .page-title-wrapper .container { display: flex !important; flex-direction: column !important; }
:is(#category, #search, .categoryproducts) .page-title-wrapper .page-header { order: 2 !important; margin: 0 !important; }
:is(#category, #search, .categoryproducts) #wrapper .breadcrumb { order: 1 !important; }

/* A4 — Breadcrumb discret (restyle du séparateur natif). Dernier item = catégorie courante (rouge), conservé. */
:is(#category, #search, .categoryproducts) #wrapper .breadcrumb { padding: 20px 0 4px !important; margin: 0 !important; background: none !important; }
:is(#category, #search, .categoryproducts) #wrapper .breadcrumb ol { display: flex !important; flex-wrap: wrap; align-items: center; gap: 11px; margin: 0; padding: 0; }
:is(#category, #search, .categoryproducts) #wrapper .breadcrumb li,
:is(#category, #search, .categoryproducts) #wrapper .breadcrumb li a { font-family: var(--gc-font-ui) !important; font-size: 13px !important; color: var(--wc-muted) !important; }
:is(#category, #search, .categoryproducts) #wrapper .breadcrumb li a:hover { color: var(--wc-ink) !important; }
:is(#category, #search, .categoryproducts) #wrapper .breadcrumb li::after { color: #cfcfcf !important; }
:is(#category, #search, .categoryproducts) #wrapper .breadcrumb li:last-child::after { content: '' !important; }
:is(#category, #search, .categoryproducts) #wrapper .breadcrumb li:last-child,
:is(#category, #search, .categoryproducts) #wrapper .breadcrumb li:last-child span { color: var(--wc-red) !important; font-weight: 600 !important; }

/* A5 — Titre 34px Archivo Narrow */
:is(#category, #search, .categoryproducts) .page-header h1 {
    font-family: var(--gc-font-ui) !important; font-weight: 600 !important;
    font-size: 34px !important; line-height: 1.1 !important; color: var(--wc-ink) !important;
    letter-spacing: .005em !important; margin: 14px 0 0 !important;
}

/* A6 — Compteur (toolbar, restylé) */
:is(#category, #search, .categoryproducts) #js-product-list-top .total-products p {
    font-family: var(--gc-font-ui) !important; font-size: 14px !important;
    font-weight: 500 !important; color: var(--wc-muted) !important; margin: 0 !important;
}

/* A7 — Description SEO pleine largeur : de-cardée, titre doublon masqué, typo maquette.
   Marge sur .block-category (présent SEULEMENT si description) → état vide = aucun trou. */
:is(#category, #search, .categoryproducts) .block-category.card { border: none !important; box-shadow: none !important; background: none !important; padding: 0 !important; margin: 18px 0 28px !important; }
:is(#category, #search, .categoryproducts) .block-category > .h1 { display: none !important; }
:is(#category, #search, .categoryproducts) #category-description { max-width: 76ch !important; color: var(--wc-text) !important; font-family: var(--gc-font-ui) !important; font-size: 15px !important; line-height: 1.75 !important; }
:is(#category, #search, .categoryproducts) #category-description p { margin: 0 0 12px !important; }

/* A7b — Mécanisme « Lire la suite » (clip + dégradé + bouton), injecté en JS (no-op si vide) */
:is(#category, #search, .categoryproducts) .gc-seo-clip { position: relative; max-height: 4.9em; overflow: hidden; transition: max-height .3s ease; }
:is(#category, #search, .categoryproducts) .gc-seo-clip.open { max-height: 120em; }
:is(#category, #search, .categoryproducts) .gc-seo-clip:not(.open)::after { content: none !important; display: none !important; }
:is(#category, #search, .categoryproducts) .gc-seo-more { background: none; border: none; cursor: pointer; font-family: var(--gc-font-ui); font-size: 13px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--wc-red); padding: 10px 0 0; display: inline-flex; align-items: center; gap: 6px; }
:is(#category, #search, .categoryproducts) .gc-seo-more svg { transition: transform .25s ease; }
:is(#category, #search, .categoryproducts) .gc-seo-more.open svg { transform: rotate(180deg); }

/* Responsive : padding latéral 40 → 24 → 18 ; titre 27px */
@media (max-width: 980px){ :is(#category, #search, .categoryproducts) #wrapper > .container, :is(#category, #search, .categoryproducts) .page-title-wrapper > .container { padding-left: 24px !important; padding-right: 24px !important; } }
@media (max-width: 600px){ :is(#category, #search, .categoryproducts) #wrapper > .container, :is(#category, #search, .categoryproducts) .page-title-wrapper > .container { padding-left: 18px !important; padding-right: 18px !important; } :is(#category, #search, .categoryproducts) .page-header h1 { font-size: 27px !important; } }

/* ============================================================
   GC — ZONE B : carte produit mosaïque (#category .grid). Scope #category.
   Habille la carte native (grid3.tpl) au look maquette .gcard.
   Grille Bootstrap native conservée (col-xl-3→lg-4→sm-6→xs-12 = 4→3→2→1).
   ============================================================ */
:is(#category, #search, .categoryproducts) .product_content.grid { align-items: stretch !important; }
:is(#category, #search, .categoryproducts) .product_content.grid .item-product { display: flex !important; margin-bottom: 22px !important; }

:is(#category, #search, .categoryproducts) .item-product .js-product-miniature { display: flex !important; flex-direction: column !important; width: 100% !important; height: 100% !important; border: 1px solid var(--wc-border) !important; border-radius: 10px !important; background: #fff !important; box-shadow: 0 6px 22px -16px rgba(0,0,0,.16) !important; overflow: hidden !important; transition: box-shadow .25s, border-color .25s !important; }
:is(#category, #search, .categoryproducts) .item-product .js-product-miniature:hover { box-shadow: 0 16px 40px -20px rgba(0,0,0,.26) !important; border-color: #dcdcdc !important; }
/* Bord carte = EXACTEMENT la maquette (1px solid #e5e5e5, radius 8px). Sélecteur large (hors .item-product aussi) + hex en dur pour battre le thème (« trop épais »). */
:is(#category, #search, .categoryproducts) .js-product-miniature { border: 1px solid #e5e5e5 !important; border-radius: 10px !important; }

/* Média carré + image ENTIÈRE (contain) sur fond blanc, légère marge interne */
:is(#category, #search, .categoryproducts) .js-product-miniature .img_block { position: relative !important; aspect-ratio: 1/1 !important; background: #fff !important; border-bottom: 1px solid var(--wc-border-soft) !important; overflow: hidden !important; }
:is(#category, #search, .categoryproducts) .js-product-miniature .img_block .product-thumbnail { display: block !important; width: 100% !important; height: 100% !important; padding: 10px !important; box-sizing: border-box !important; }
:is(#category, #search, .categoryproducts) .js-product-miniature .img_block .product-thumbnail img { width: 100% !important; height: 100% !important; object-fit: contain !important; object-position: center !important; }

/* Badges promo (€) + bio (rempli) */
:is(#category, #search, .categoryproducts) .gc-gcard-promo { position: absolute !important; top: 12px; left: 12px; z-index: 2; font-family: var(--gc-font-ui); font-size: 17px; font-weight: 700; color: #fff; background: var(--wc-red); border-radius: 8px; padding: 6px 12px; line-height: 1.15; box-shadow: 0 1px 4px rgba(0,0,0,.18); }
:is(#category, #search, .categoryproducts) .gc-gcard-bio { position: absolute !important; top: 12px; right: 12px; z-index: 2; font-family: var(--gc-font-ui); font-size: 10px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: #fff; background: #2f6b2f; border-radius: 5px; padding: 4px 7px; }
/* Badge multiple (lot) x3/x6 : BAS-DROITE de l'image. Couleurs distinctes du rouge promo : x3 = anthracite, x6 = bordeaux. Taille +35%. */
:is(#category, #search, .categoryproducts) .gc-gcard-mult { position: absolute !important; bottom: 12px !important; right: 12px !important; top: auto !important; left: auto !important; z-index: 3; font-family: var(--gc-font-ui); font-size: 16px; font-weight: 700; color: #fff; background: #373737; border-radius: 8px; padding: 5px 12px; line-height: 1.2; letter-spacing: .02em; white-space: nowrap; box-shadow: 0 1px 4px rgba(0,0,0,.22); }
:is(#category, #search, .categoryproducts) .gc-gcard-mult--3 { background: #373737 !important; } /* anthracite */
:is(#category, #search, .categoryproducts) .gc-gcard-mult--6 { background: #6e1414 !important; } /* bordeaux */
:is(#category, #search, .categoryproducts) .js-product-miniature:has(> .row) .gc-gcard-mult { bottom: 12px !important; right: 12px !important; top: auto !important; }

/* GC — Mêmes badges (promo + lot x3/x6) reportés sur la FICHE PRODUIT, posés sur l'image de couverture (comme la carte catalogue). */
.categoryproducts .pos_title h2 { text-transform: none !important; }

/* Corps : flex colonne + aplatissement de .inner_desc pour aligner le bas */
:is(#category, #search, .categoryproducts) .js-product-miniature .product_desc { display: flex !important; flex-direction: column !important; flex: 1 1 auto !important; padding: 18px 18px 20px !important; min-width: 0 !important; }
:is(#category, #search, .categoryproducts) .js-product-miniature .inner_desc { display: contents !important; }

/* Masquage clutter hors maquette */
:is(#category, #search, .categoryproducts) .js-product-miniature .manufacturer,
:is(#category, #search, .categoryproducts) .js-product-miniature .hook-reviews,
:is(#category, #search, .categoryproducts) .js-product-miniature .quick-view,
:is(#category, #search, .categoryproducts) .js-product-miniature .product-desc,
:is(#category, #search, .categoryproducts) .js-product-miniature .variant-links,
:is(#category, #search, .categoryproducts) .js-product-miniature .add-to-links .compare,
:is(#category, #search, .categoryproducts) .js-product-miniature .add-to-links > li:empty { display: none !important; }

/* Nom : 3 lignes fixes (order 1, en haut) */
:is(#category, #search, .categoryproducts) .js-product-miniature .product_desc h3 { order: 1; margin: 0 !important; }
:is(#category, #search, .categoryproducts) .js-product-miniature .product_name { font-family: var(--gc-font-ui) !important; font-weight: 600 !important; font-size: 15.5px !important; line-height: 1.3 !important; color: var(--wc-ink) !important; display: -webkit-box !important; -webkit-line-clamp: 3 !important; -webkit-box-orient: vertical !important; overflow: hidden !important; min-height: 3.9em !important; white-space: normal !important; }
:is(#category, #search, .categoryproducts) .js-product-miniature .product_name:hover { color: var(--wc-red) !important; }

/* Meta attributs (order 2) : pastille couleur · contenance · millésime */
:is(#category, #search, .categoryproducts) .gc-gcard-meta { order: 2; display: flex; align-items: center; gap: 7px; font-family: var(--gc-font-ui); font-size: 12px; color: var(--wc-muted); margin-top: 8px; }
:is(#category, #search, .categoryproducts) .gc-wine-dot { width: 9px; height: 9px; border-radius: 50%; box-shadow: inset 0 0 0 1px rgba(0,0,0,.18); flex-shrink: 0; background: var(--wc-faint); }
:is(#category, #search, .categoryproducts) .gc-wine-dot--rouge { background: #6e1414; }
:is(#category, #search, .categoryproducts) .gc-wine-dot--blanc { background: #e3cf8f; }
:is(#category, #search, .categoryproducts) .gc-wine-dot--rosé, :is(#category, #search, .categoryproducts) .gc-wine-dot--rose { background: #e9a6a0; }
:is(#category, #search, .categoryproducts) .gc-wine-dot--champagne, :is(#category, #search, .categoryproducts) .gc-wine-dot--effervescent { background: #efe2b0; }

/* Région (maquette .gcard-region) — capitales, au-dessus du nom, dans le <h3> */
:is(#category, #search, .categoryproducts) .js-product-miniature .gc-gcard-region { display: block !important; font-family: var(--gc-font-ui) !important; font-size: 10.5px !important; font-weight: 600 !important; letter-spacing: .12em !important; text-transform: uppercase !important; color: var(--wc-muted) !important; margin: 0 0 7px !important; }

/* Méta en pièces .gc-m : GRILLE = ligne « · » ; LISTE = chips bordées (maquette .meta-chip) */
:is(#category, #search, .categoryproducts) .gc-gcard-meta .gc-m { display: inline-flex !important; align-items: center !important; gap: 6px !important; }
:is(#category, #search, .categoryproducts) .gc-gcard-meta .gc-m + .gc-m::before { content: "·" !important; color: var(--wc-faint) !important; margin-right: 6px !important; }
:is(#category, #search, .categoryproducts) .js-product-miniature:has(> .row) .gc-gcard-meta { gap: 8px !important; margin-top: 18px !important; }
:is(#category, #search, .categoryproducts) .js-product-miniature:has(> .row) .gc-gcard-meta .gc-m { background: var(--wc-grey-50) !important; border: 1px solid var(--wc-border) !important; border-radius: 8px !important; padding: 5px 10px !important; font-size: 12.5px !important; font-weight: 600 !important; color: var(--wc-ink) !important; gap: 7px !important; }
:is(#category, #search, .categoryproducts) .js-product-miniature:has(> .row) .gc-gcard-meta .gc-m + .gc-m::before { content: none !important; }

/* Prix (order 3) : poussé en bas */
:is(#category, #search, .categoryproducts) .js-product-miniature .product-price-and-shipping { order: 3 !important; margin-top: auto !important; padding-top: 14px !important; display: flex !important; align-items: baseline !important; gap: 9px !important; flex-wrap: wrap !important; }
:is(#category, #search, .categoryproducts) .js-product-miniature .product-price-and-shipping .regular-price { font-family: var(--gc-font-ui) !important; font-size: 13px !important; color: var(--wc-faint) !important; text-decoration: line-through !important; }
:is(#category, #search, .categoryproducts) .js-product-miniature .product-price-and-shipping .price { font-family: var(--gc-font-ui) !important; font-weight: 600 !important; font-size: 21px !important; color: var(--wc-ink) !important; }
:is(#category, #search, .categoryproducts) .js-product-miniature .product-price-and-shipping .discount-product { display: none !important; }

/* Stock (order 4) */
:is(#category, #search, .categoryproducts) .js-product-miniature .availability { order: 4 !important; margin-top: 11px !important; margin-bottom: 6px !important; display: block !important; }
:is(#category, #search, .categoryproducts) .gc-gcard-stock { display: flex; align-items: center; gap: 7px; font-family: var(--gc-font-ui); font-size: 11.5px; color: var(--wc-muted); }
:is(#category, #search, .categoryproducts) .gc-gcard-stock .dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
:is(#category, #search, .categoryproducts) .gc-gcard-stock.ok .dot { background: #2f9b4a; }
:is(#category, #search, .categoryproducts) .gc-gcard-stock.low { color: #b9750a; } :is(#category, #search, .categoryproducts) .gc-gcard-stock.low .dot { background: #e28c00; }
:is(#category, #search, .categoryproducts) .gc-gcard-stock.out { color: var(--wc-faint); } :is(#category, #search, .categoryproducts) .gc-gcard-stock.out .dot { background: var(--wc-faint); }

/* Pastilles couleur sur la facette COULEUR (maquette .cdot) */
:is(#category, #search, .categoryproducts) #search_filters .gc-fdot { display: inline-block !important; width: 11px !important; height: 11px !important; border-radius: 50% !important; box-shadow: inset 0 0 0 1px rgba(0,0,0,.18) !important; margin-right: 8px !important; vertical-align: middle !important; flex-shrink: 0 !important; background: var(--wc-faint) !important; }
:is(#category, #search, .categoryproducts) #search_filters .gc-fdot.r-rouge { background: #6e1414 !important; }
:is(#category, #search, .categoryproducts) #search_filters .gc-fdot.r-blanc { background: #e3cf8f !important; }
:is(#category, #search, .categoryproducts) #search_filters .gc-fdot.r-rose { background: #e9a6a0 !important; }
:is(#category, #search, .categoryproducts) #search_filters .gc-fdot.r-champ { background: #efe2b0 !important; }

/* CTA "Ajouter au panier" (order 5) : pleine largeur, rouge, tout en bas. Form panier intact.
   Le thème style_product2 met le bouton en rond icône (font-size:0, border-radius:50%, li.cart flex).
   On neutralise tout ça ; l'ID #category gagne la spécificité. Cible .ajax_add_to_cart_button (bouton + span). */
:is(#category, #search, .categoryproducts) .js-product-miniature .add-to-links { order: 5 !important; display: block !important; position: static !important; opacity: 1 !important; visibility: visible !important; transform: none !important; bottom: auto !important; left: auto !important; right: auto !important; width: auto !important; height: auto !important; list-style: none !important; margin: 14px 0 0 !important; padding: 0 !important; }
:is(#category, #search, .categoryproducts) .js-product-miniature .add-to-links li.cart, :is(#category, #search, .categoryproducts) .js-product-miniature .add-to-links .product-add-to-cart, :is(#category, #search, .categoryproducts) .js-product-miniature .add-to-links form { position: static !important; width: 100% !important; opacity: 1 !important; visibility: visible !important; transform: none !important; }
:is(#category, #search, .categoryproducts) .js-product-miniature .add-to-links li.cart { display: block !important; width: 100% !important; flex: none !important; }
:is(#category, #search, .categoryproducts) .js-product-miniature .add-to-links .product-add-to-cart,
:is(#category, #search, .categoryproducts) .js-product-miniature .add-to-links form { margin: 0 !important; width: 100% !important; }
:is(#category, #search, .categoryproducts) .js-product-miniature .add-to-links li.cart .ajax_add_to_cart_button {
    width: 100% !important; height: 44px !important; min-width: 0 !important; padding: 0 !important;
    border: none !important; border-radius: 8px !important; cursor: pointer !important;
    background: var(--wc-red) !important; color: #fff !important;
    font-family: var(--gc-font-ui) !important; font-size: 12.5px !important; line-height: 1 !important;
    font-weight: 600 !important; letter-spacing: .08em !important; text-transform: uppercase !important;
    display: flex !important; align-items: center !important; justify-content: center !important; gap: 8px !important;
    transition: background .2s !important;
}
:is(#category, #search, .categoryproducts) .js-product-miniature .add-to-links li.cart .ajax_add_to_cart_button::before { font-size: 15px !important; margin: 0 !important; display: inline-block !important; line-height: 1 !important; }
:is(#category, #search, .categoryproducts) #js-product-list .js-product-miniature .add-to-links li.cart .ajax_add_to_cart_button:hover, :is(#category, #search, .categoryproducts) #js-product-list .js-product-miniature .add-to-links li.cart .ajax_add_to_cart_button:focus { background: var(--wc-red-dark) !important; background-color: var(--wc-red-dark) !important; color: #fff !important; }
:is(#category, #search, .categoryproducts) .js-product-miniature .add-to-links li.cart .ajax_add_to_cart_button.disabled { background: var(--wc-grey-100) !important; color: var(--wc-faint) !important; opacity: 1 !important; }

/* Zéro mention HT en catégorie (filet) */
:is(#category, #search, .categoryproducts) .js-product-miniature .product-price-ht,
:is(#category, #search, .categoryproducts) .js-product-miniature [class*="tax-exc"] { display: none !important; }

/* ============================================================
   GC — ZONE C : vue LISTE (maquette .lcard). DOM RÉEL = reconstruction theme.js :
   article.js-product-miniature:has(> .row) > .row >
     .img_block.col-4  +  .product_desc.col-8 > (manufacturer, h3[+gc-gcard-meta],
       .product-price-and-shipping, .product-desc, .availability[.gc-gcard-stock],
       ul.add-to-links, .variant-links)
   On cible .style_product1 (2 classes > Zone B générique .js-product-miniature).
   Mosaïque .style_product2 INTACTE. !important partout.
   ============================================================ */

/* Carte = bordure + radius + ombre (.lcard) */
:is(#category, #search, .categoryproducts) .js-product-miniature:has(> .row) { display: block !important; border: 1px solid var(--wc-border) !important; border-radius: 10px !important; background: #fff !important; box-shadow: 0 6px 22px -16px rgba(0,0,0,.16) !important; overflow: hidden !important; margin: 0 0 18px !important; transition: box-shadow .25s ease, border-color .25s ease !important; }
:is(#category, #search, .categoryproducts) .js-product-miniature:has(> .row):hover { box-shadow: 0 16px 40px -20px rgba(0,0,0,.26) !important; border-color: #dcdcdc !important; }

/* .row → grille média(188) | infos(1fr) ; gouttières + float Bootstrap neutralisés */
:is(#category, #search, .categoryproducts) .js-product-miniature:has(> .row) > .row { display: grid !important; grid-template-columns: 188px minmax(0,1fr) !important; margin: 0 !important; align-items: stretch !important; }
:is(#category, #search, .categoryproducts) .js-product-miniature:has(> .row) > .row > .img_block,
:is(#category, #search, .categoryproducts) .js-product-miniature:has(> .row) > .row > .product_desc { float: none !important; }

/* Média (col-4 → 188px) : fond gris, bordure droite, image contain */
:is(#category, #search, .categoryproducts) .js-product-miniature:has(> .row) .img_block { flex: none !important; width: auto !important; max-width: none !important; min-width: 0 !important; padding: 0 !important; position: relative !important; background: var(--wc-grey-50) !important; border-right: 1px solid var(--wc-border-soft) !important; border-bottom: none !important; aspect-ratio: auto !important; }
:is(#category, #search, .categoryproducts) .js-product-miniature:has(> .row) .img_block .thumbnail.product-thumbnail { display: flex !important; align-items: center !important; justify-content: center !important; height: 100% !important; min-height: 210px !important; padding: 14px !important; margin: 0 !important; }
:is(#category, #search, .categoryproducts) .js-product-miniature:has(> .row) .img_block img { width: auto !important; max-width: 100% !important; height: auto !important; max-height: 210px !important; object-fit: contain !important; }
/* flags promo/bio (hérités Zone B, repositionnés coins média) */
:is(#category, #search, .categoryproducts) .js-product-miniature:has(> .row) .gc-gcard-promo { top: 12px !important; left: 12px !important; }
:is(#category, #search, .categoryproducts) .js-product-miniature:has(> .row) .gc-gcard-bio { top: 12px !important; right: 12px !important; }

/* Infos (col-8) → grille corps(1fr) | achat(250px), 4 rangées */
:is(#category, #search, .categoryproducts) .js-product-miniature:has(> .row) .product_desc { display: grid !important; grid-template-columns: minmax(0,1fr) 250px !important; grid-template-rows: auto auto 1fr auto !important; align-items: start !important; gap: 0 !important; padding: 0 !important; flex: none !important; max-width: none !important; width: auto !important; position: relative !important; }
/* fond + bordure colonne ACHAT (derrière le contenu) */
:is(#category, #search, .categoryproducts) .js-product-miniature:has(> .row) .product_desc::after { content: "" !important; position: absolute !important; top: 0 !important; right: 0 !important; bottom: 0 !important; width: 250px !important; border-left: 1px solid var(--wc-border-soft) !important; background: #fff !important; z-index: 0 !important; }
:is(#category, #search, .categoryproducts) .js-product-miniature:has(> .row) .product_desc > * { position: relative !important; z-index: 1 !important; }

/* CORPS col.1 — région (manufacturer ré-affiché) */
/* région : feature dans le h3 (manufacturer JAMAIS utilisé comme région — consigne) */
:is(#category, #search, .categoryproducts) .js-product-miniature:has(> .row) .manufacturer { display: none !important; }
/* nom + meta (la meta est DANS le h3) */
:is(#category, #search, .categoryproducts) .js-product-miniature:has(> .row) .product_desc h3 { grid-column: 1 !important; grid-row: 2 !important; padding: 24px 26px 0 !important; margin: 0 !important; }
:is(#category, #search, .categoryproducts) .js-product-miniature:has(> .row) .gc-gcard-region { font-size: 11px !important; margin: 0 0 8px !important; }
:is(#category, #search, .categoryproducts) .js-product-miniature:has(> .row) .product_name { font-size: 20px !important; line-height: 1.25 !important; -webkit-line-clamp: 2 !important; min-height: 0 !important; }
:is(#category, #search, .categoryproducts) .js-product-miniature:has(> .row) .gc-gcard-meta { margin-top: 16px !important; flex-wrap: wrap !important; }
/* stock bas-gauche */
:is(#category, #search, .categoryproducts) .js-product-miniature:has(> .row) .availability { grid-column: 1 !important; grid-row: 4 !important; align-self: end !important; padding: 14px 26px 22px !important; margin: 0 !important; }

/* ACHAT col.2 — prix (centré vertical) + bouton (bas) */
:is(#category, #search, .categoryproducts) .js-product-miniature:has(> .row) .product-price-and-shipping { grid-column: 2 !important; grid-row: 1 / 4 !important; align-self: center !important; flex-direction: column !important; align-items: flex-end !important; justify-content: center !important; text-align: right !important; padding: 22px 24px 0 !important; margin: 0 !important; gap: 2px !important; }
:is(#category, #search, .categoryproducts) .js-product-miniature:has(> .row) .product-price-and-shipping .price { font-size: 30px !important; }
:is(#category, #search, .categoryproducts) .js-product-miniature:has(> .row) .add-to-links { grid-column: 2 !important; grid-row: 4 !important; align-self: end !important; padding: 0 24px 22px !important; margin: 0 !important; }
:is(#category, #search, .categoryproducts) .js-product-miniature:has(> .row) .add-to-links li.cart .ajax_add_to_cart_button { height: 48px !important; }
/* CTA liste : 5px de marge de chaque côté (sinon collé au bord). .style_product2:has(>.row) pour battre le reset grille 6381 (qui fuit sur la liste). */
:is(#category, #search, .categoryproducts) #js-product-list .js-product-miniature.style_product2:has(> .row) .add-to-links { padding: 0 24px 22px !important; margin: 0 !important; }

/* Masquages liste (clutter hors maquette) */
:is(#category, #search, .categoryproducts) .js-product-miniature:has(> .row) .product-desc,
:is(#category, #search, .categoryproducts) .js-product-miniature:has(> .row) .variant-links,
:is(#category, #search, .categoryproducts) .js-product-miniature:has(> .row) .hook-reviews,
:is(#category, #search, .categoryproducts) .js-product-miniature:has(> .row) .quick-view { display: none !important; }

/* Repli mobile : empile média / corps / achat */
@media (max-width: 575px) {
    :is(#category, #search, .categoryproducts) .js-product-miniature:has(> .row) > .row { grid-template-columns: 1fr !important; }
    :is(#category, #search, .categoryproducts) .js-product-miniature:has(> .row) .img_block { border-right: none !important; border-bottom: 1px solid var(--wc-border-soft) !important; }
    :is(#category, #search, .categoryproducts) .js-product-miniature:has(> .row) .product_desc { grid-template-columns: 1fr !important; grid-template-rows: none !important; display: flex !important; flex-direction: column !important; }
    :is(#category, #search, .categoryproducts) .js-product-miniature:has(> .row) .product_desc::after { display: none !important; }
    :is(#category, #search, .categoryproducts) .js-product-miniature:has(> .row) .product-price-and-shipping,
    :is(#category, #search, .categoryproducts) .js-product-miniature:has(> .row) .add-to-links { align-items: flex-start !important; text-align: left !important; padding: 12px 26px 0 !important; }
    :is(#category, #search, .categoryproducts) .js-product-miniature:has(> .row) .add-to-links { padding-bottom: 22px !important; }
}

/* ============================================================
   GC — ZONE D : colonne filtres (ps_facetedsearch). Scope #category.
   Natif habillé : on STYLE le DOM du module, on ne touche NI sa structure NI ses
   hooks AJAX (data-search-url / .js-search-link / .js-search-filters-clear-all).
   ============================================================ */

/* Largeur colonne filtres (≈ maquette) + la grille reprend le reste (≥992px) */
@media (min-width: 992px) {
    :is(#category, #search, .categoryproducts) #left-column { flex: 0 0 256px !important; max-width: 256px !important; margin-top: 0 !important; padding-top: 0 !important; }
    :is(#category, #search, .categoryproducts) #content-wrapper { flex: 1 1 auto !important; width: calc(100% - 256px) !important; max-width: calc(100% - 256px) !important; margin-top: 0 !important; padding-top: 0 !important; padding-left: 56px !important; }
    :is(#category, #search, .categoryproducts) #content-wrapper .row, :is(#category, #search, .categoryproducts) #wrapper .row.flex-layout, :is(#category, #search, .categoryproducts) #wrapper > .container > .row { align-items: flex-start !important; }
}

/* Conteneur facettes */
:is(#category, #search, .categoryproducts) #search_filters { font-family: var(--gc-font-ui) !important; border: none !important; background: none !important; padding: 0 !important; box-shadow: none !important; }

/* Titre "Filtrer par" */
:is(#category, #search, .categoryproducts) #search_filters .my-faced { font-size: 14px !important; font-weight: 600 !important; letter-spacing: .14em !important; text-transform: uppercase !important; color: var(--wc-ink) !important; padding: 0 0 14px !important; margin: 0 0 4px !important; border-bottom: 2px solid var(--wc-ink) !important; display: flex !important; align-items: center !important; gap: 9px !important; }
:is(#category, #search, .categoryproducts) #search_filters .my-faced::before { content: "" !important; width: 15px !important; height: 15px !important; flex-shrink: 0 !important; background-repeat: no-repeat !important; background-position: center !important; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='15' viewBox='0 0 24 24' fill='none' stroke='%23373737' stroke-width='2' stroke-linecap='round'%3E%3Cline x1='4' y1='7' x2='20' y2='7'/%3E%3Cline x1='7' y1='12' x2='17' y2='12'/%3E%3Cline x1='10' y1='17' x2='14' y2='17'/%3E%3C/svg%3E") !important; }

/* Tout effacer */
:is(#category, #search, .categoryproducts) #search_filters .clear-all-wrapper { padding: 12px 0 0 !important; margin: 0 !important; }
:is(#category, #search, .categoryproducts) #search_filters .js-search-filters-clear-all { font-family: var(--gc-font-ui) !important; font-size: 12px !important; font-weight: 600 !important; letter-spacing: .04em !important; color: var(--wc-muted) !important; background: none !important; border: none !important; padding: 6px 0 !important; display: inline-flex !important; align-items: center !important; gap: 6px !important; text-transform: none !important; }
:is(#category, #search, .categoryproducts) #search_filters .js-search-filters-clear-all:hover { color: var(--wc-red) !important; }
:is(#category, #search, .categoryproducts) #search_filters .js-search-filters-clear-all .material-icons { font-size: 16px !important; }

/* === GC — FILTRES ACTIFS : barre en ZONE CATALOGUE = #js-active-search-filters (PAS dans #search_filters). Maquette .active-bar / .ab-title / .ab-chip === */
:is(#category, #search, .categoryproducts) #js-active-search-filters, :is(#category, #search, .categoryproducts) #search_filters .active_filters { background: none !important; background-color: transparent !important; border: none !important; box-shadow: none !important; padding: 0 0 16px !important; margin: 0 0 20px !important; border-bottom: 1px solid var(--wc-border-soft) !important; border-radius: 0 !important; }
:is(#category, #search, .categoryproducts) #js-active-search-filters .active-filter-title, :is(#category, #search, .categoryproducts) .active_filters .active-filter-title { font-family: var(--gc-font-ui) !important; font-size: 12px !important; font-weight: 600 !important; letter-spacing: .1em !important; text-transform: uppercase !important; color: var(--wc-ink) !important; margin: 0 0 12px !important; padding: 0 !important; border: none !important; background: none !important; }
:is(#category, #search, .categoryproducts) #js-active-search-filters ul, :is(#category, #search, .categoryproducts) .active_filters ul { display: flex !important; flex-wrap: wrap !important; gap: 8px !important; margin: 0 !important; padding: 0 !important; list-style: none !important; align-items: center !important; }
:is(#category, #search, .categoryproducts) #js-active-search-filters .filter-block, :is(#category, #search, .categoryproducts) .active_filters .filter-block { font-family: var(--gc-font-ui) !important; font-size: 12.5px !important; font-weight: 500 !important; color: var(--wc-ink) !important; background: var(--wc-grey-100) !important; border: 1px solid var(--wc-border) !important; border-radius: 999px !important; padding: 5px 6px 5px 12px !important; display: inline-flex !important; align-items: center !important; gap: 8px !important; margin: 0 !important; line-height: 1.25 !important; box-shadow: none !important; }
:is(#category, #search, .categoryproducts) #js-active-search-filters .filter-block a, :is(#category, #search, .categoryproducts) #js-active-search-filters .filter-block .close, :is(#category, #search, .categoryproducts) .active_filters .filter-block a { color: var(--wc-muted) !important; opacity: 1 !important; display: inline-flex !important; align-items: center !important; justify-content: center !important; width: 18px !important; height: 18px !important; border-radius: 50% !important; font-size: 14px !important; line-height: 1 !important; text-decoration: none !important; flex-shrink: 0 !important; }
:is(#category, #search, .categoryproducts) #js-active-search-filters .filter-block a:hover, :is(#category, #search, .categoryproducts) .active_filters .filter-block a:hover { color: var(--wc-red) !important; background: rgba(220,1,111,.08) !important; }

/* Section facette + header (titre + collapse natif conservé) */
:is(#category, #search, .categoryproducts) #search_filters .facet { padding: 16px 0 !important; border-bottom: 1px solid var(--wc-border-soft) !important; margin: 0 !important; }
:is(#category, #search, .categoryproducts) #search_filters .facet:last-child { border-bottom: none !important; }
/* retrait de la fine ligne grise sous le titre de facette (bordure native du .facet-title) — ne concerne PAS le trait ink de FILTRER PAR (.my-faced) */
:is(#category, #search, .categoryproducts) #search_filters .facet .facet-title { border-bottom: none !important; }
:is(#category, #search, .categoryproducts) #search_filters .facet .title { display: flex !important; align-items: center !important; justify-content: space-between !important; cursor: pointer !important; padding: 0 !important; }
:is(#category, #search, .categoryproducts) #search_filters .facet .facet-title { font-family: var(--gc-font-ui) !important; font-size: 12px !important; font-weight: 600 !important; letter-spacing: .12em !important; text-transform: uppercase !important; color: var(--wc-ink) !important; margin: 0 !important; }
:is(#category, #search, .categoryproducts) #search_filters .facet .collapse-icons { color: var(--wc-muted) !important; margin-left: auto !important; }
:is(#category, #search, .categoryproducts) #search_filters .facet .collapse-icons .material-icons { font-size: 18px !important; }

/* Corps + longues listes scrollables (hors slider) */
:is(#category, #search, .categoryproducts) #search_filters .facet ul.collapse { padding: 12px 0 0 !important; margin: 0 !important; list-style: none !important; }
:is(#category, #search, .categoryproducts) #search_filters .facet ul.collapse:not(.faceted-slider) { max-height: 200px !important; overflow-y: auto !important; padding-right: 4px !important; }
:is(#category, #search, .categoryproducts) #search_filters .facet ul.collapse::-webkit-scrollbar { width: 6px; }
:is(#category, #search, .categoryproducts) #search_filters .facet ul.collapse::-webkit-scrollbar-thumb { background: #d8d8d8; border-radius: 5px; }
:is(#category, #search, .categoryproducts) #search_filters .facet ul.collapse > li { margin: 0 !important; padding: 0 !important; border: none !important; }

/* Ligne case à cocher (crow) */
:is(#category, #search, .categoryproducts) #search_filters .facet-label { display: flex !important; align-items: center !important; gap: 10px !important; width: 100% !important; margin: 0 !important; padding: 4px 0 !important; cursor: pointer !important; font-family: var(--gc-font-ui) !important; }
:is(#category, #search, .categoryproducts) #search_filters .facet-label .custom-checkbox,
:is(#category, #search, .categoryproducts) #search_filters .facet-label .custom-radio { position: static !important; top: 0 !important; margin: 0 !important; display: inline-flex !important; align-items: center !important; flex-shrink: 0 !important; }
/* boîte LWC (span après input, hors pastille couleur) */
:is(#category, #search, .categoryproducts) #search_filters .facet-label .custom-checkbox input[type='checkbox']+span:not(.color),
:is(#category, #search, .categoryproducts) #search_filters .facet-label .custom-radio input+span { width: 16px !important; height: 16px !important; border: 1.5px solid var(--wc-border) !important; border-radius: 5px !important; background: #fff !important; display: inline-flex !important; align-items: center !important; justify-content: center !important; transition: background .15s, border-color .15s !important; }
:is(#category, #search, .categoryproducts) #search_filters .facet-label .custom-checkbox input[type='checkbox']:checked+span:not(.color) { background: var(--wc-red) !important; border-color: var(--wc-red) !important; }
:is(#category, #search, .categoryproducts) #search_filters .facet-label .custom-checkbox .checkbox-checked { color: #fff !important; font-size: 14px !important; }
/* pastille couleur (Couleur) */
:is(#category, #search, .categoryproducts) #search_filters .facet-label .custom-checkbox span.color { width: 14px !important; height: 14px !important; border-radius: 50% !important; box-shadow: inset 0 0 0 1px rgba(0,0,0,.18) !important; margin: 0 !important; }
/* label + compteur */
:is(#category, #search, .categoryproducts) #search_filters .facet-label a.search-link { flex: 1 1 auto !important; min-width: 0 !important; width: auto !important; display: flex !important; align-items: center !important; font-size: 13.5px !important; color: var(--wc-text) !important; text-decoration: none !important; }
:is(#category, #search, .categoryproducts) #search_filters .facet-label:hover a.search-link { color: var(--wc-ink) !important; }
:is(#category, #search, .categoryproducts) #search_filters .facet-label.active a.search-link { color: var(--wc-ink) !important; font-weight: 600 !important; }
:is(#category, #search, .categoryproducts) #search_filters .facet-label .magnitude { margin-left: auto !important; padding-left: 8px !important; font-size: 12px !important; color: var(--wc-faint) !important; font-variant-numeric: tabular-nums !important; }

/* Champ de recherche injecté (JS) dans les longues listes (Producteur/Appellation…) */
:is(#category, #search, .categoryproducts) #search_filters .gc-facet-search { margin: 0 0 10px !important; }
:is(#category, #search, .categoryproducts) #search_filters .gc-facet-search input { width: 100% !important; font-family: var(--gc-font-ui) !important; font-size: 13px !important; color: var(--wc-ink) !important; border: 1px solid var(--wc-border) !important; border-radius: 8px !important; height: 34px !important; padding: 0 12px !important; background: var(--wc-grey-50) !important; }
:is(#category, #search, .categoryproducts) #search_filters .gc-facet-search input:focus { outline: none !important; border-color: var(--wc-ink) !important; background: #fff !important; }
:is(#category, #search, .categoryproducts) #search_filters .gc-facet-search input::placeholder { color: var(--wc-faint) !important; }

/* Slider prix (jQuery UI) — habillage LWC */
:is(#category, #search, .categoryproducts) #search_filters .faceted-slider { padding: 14px 6px 4px !important; max-height: none !important; overflow: visible !important; }
:is(#category, #search, .categoryproducts) #search_filters .faceted-slider p { font-size: 12.5px !important; color: var(--wc-muted) !important; margin: 0 0 10px !important; }
:is(#category, #search, .categoryproducts) #search_filters .ui-slider.ui-slider-horizontal { height: 4px !important; background: var(--wc-border) !important; border: none !important; border-radius: 5px !important; margin: 14px 0 !important; }
:is(#category, #search, .categoryproducts) #search_filters .ui-slider .ui-widget-header,
:is(#category, #search, .categoryproducts) #search_filters .ui-slider .ui-slider-range { background: var(--wc-red) !important; }
:is(#category, #search, .categoryproducts) #search_filters .ui-slider .ui-slider-handle { width: 16px !important; height: 16px !important; top: -6px !important; margin-left: -8px !important; border-radius: 50% !important; background: #fff !important; border: 2px solid var(--wc-red) !important; box-shadow: 0 1px 3px rgba(0,0,0,.2) !important; cursor: grab !important; }

/* PRIX custom (maquette PriceFilter : 2 inputs + dual-range 0–500/+) ; slider jQuery UI natif masqué via .gc-has-price (JS construit q=Prix-€-min-max, max=500 -> max catalogue = palier ouvert) */
:is(#category, #search, .categoryproducts) #search_filters .facet.gc-has-price > ul.faceted-slider { display: none !important; }
:is(#category, #search, .categoryproducts) #search_filters .gc-price { padding: 12px 4px 2px !important; }
:is(#category, #search, .categoryproducts) #search_filters .gc-price .price-fields { display: flex !important; align-items: center !important; gap: 10px !important; margin-bottom: 4px !important; }
:is(#category, #search, .categoryproducts) #search_filters .gc-price .pf { position: relative !important; flex: 1 1 0 !important; min-width: 0 !important; }
:is(#category, #search, .categoryproducts) #search_filters .gc-price .pf > input { width: 100% !important; box-sizing: border-box !important; font-family: var(--gc-font-ui) !important; font-size: 13.5px !important; font-weight: 600 !important; color: var(--wc-ink) !important; background: var(--wc-grey-50) !important; border: 1px solid var(--wc-border) !important; border-radius: 8px !important; height: 38px !important; padding: 0 10px 0 23px !important; -moz-appearance: textfield !important; }
:is(#category, #search, .categoryproducts) #search_filters .gc-price .pf > input:focus { outline: none !important; border-color: var(--wc-ink) !important; background: #fff !important; }
:is(#category, #search, .categoryproducts) #search_filters .gc-price .pf > input::-webkit-outer-spin-button, :is(#category, #search, .categoryproducts) #search_filters .gc-price .pf > input::-webkit-inner-spin-button { -webkit-appearance: none !important; margin: 0 !important; }
:is(#category, #search, .categoryproducts) #search_filters .gc-price .pf-cur { position: absolute !important; left: 9px !important; top: 50% !important; transform: translateY(-50%) !important; font-size: 13px !important; color: var(--wc-muted) !important; pointer-events: none !important; }
:is(#category, #search, .categoryproducts) #search_filters .gc-price .pf-dash { color: var(--wc-faint) !important; flex: 0 0 auto !important; }
:is(#category, #search, .categoryproducts) #search_filters .gc-price .dr { padding: 0 8px !important; }
:is(#category, #search, .categoryproducts) #search_filters .gc-price .dr-track { position: relative !important; height: 4px !important; border-radius: 5px !important; background: var(--wc-border) !important; margin: 17px 0 6px !important; }
:is(#category, #search, .categoryproducts) #search_filters .gc-price .dr-fill { position: absolute !important; top: 0 !important; height: 100% !important; border-radius: 5px !important; background: var(--wc-red) !important; }
:is(#category, #search, .categoryproducts) #search_filters .gc-price .dr-knob { position: absolute !important; top: 50% !important; width: 16px !important; height: 16px !important; border-radius: 50% !important; background: #fff !important; border: 2px solid var(--wc-red) !important; transform: translate(-50%,-50%) !important; box-shadow: 0 1px 3px rgba(0,0,0,.25) !important; cursor: grab !important; touch-action: none !important; z-index: 2 !important; }
:is(#category, #search, .categoryproducts) #search_filters .gc-price .dr-knob:active { cursor: grabbing !important; }
:is(#category, #search, .categoryproducts) #search_filters .gc-price .range-bounds { display: flex !important; justify-content: space-between !important; font-family: var(--gc-font-ui) !important; font-size: 12px !important; color: var(--wc-muted) !important; margin-top: 2px !important; }

/* ===== GC — ZONE D bis : ordre (Prix 1er) + accordéon propre ===== */
:is(#category, #search, .categoryproducts) #search_filters { display: flex !important; flex-direction: column !important; }
:is(#category, #search, .categoryproducts) #search_filters .my-faced { order: -100 !important; }
:is(#category, #search, .categoryproducts) #search_filters .clear-all-wrapper { order: -99 !important; }
:is(#category, #search, .categoryproducts) #search_filters .facet { order: 1 !important; }
:is(#category, #search, .categoryproducts) #search_filters .facet[data-type="price"] { order: -98 !important; }
:is(#category, #search, .categoryproducts) #search_filters .facet:not([data-type="price"]) > ul.collapse,
:is(#category, #search, .categoryproducts) #search_filters .facet:not([data-type="price"]) > ul.faceted-slider { display: none !important; }
:is(#category, #search, .categoryproducts) #search_filters .facet:not([data-type="price"]).gc-open > ul.collapse,
:is(#category, #search, .categoryproducts) #search_filters .facet:not([data-type="price"]).gc-open > ul.faceted-slider { display: block !important; }
:is(#category, #search, .categoryproducts) #search_filters .facet[data-type="price"] > ul.collapse,
:is(#category, #search, .categoryproducts) #search_filters .facet[data-type="price"] > ul.faceted-slider { display: block !important; }
:is(#category, #search, .categoryproducts) #search_filters .facet .collapse-icons { display: none !important; }
:is(#category, #search, .categoryproducts) #search_filters .facet:not([data-type="price"]) .title { position: relative !important; cursor: pointer !important; padding-right: 22px !important; -webkit-user-select: none !important; user-select: none !important; }
:is(#category, #search, .categoryproducts) #search_filters .facet:not([data-type="price"]) .title::after { content: "" !important; position: absolute !important; right: 6px; top: 50%; width: 7px; height: 7px; border-top: 2px solid var(--wc-muted) !important; border-right: 2px solid var(--wc-muted) !important; border-bottom: none !important; transform: translateY(-50%) rotate(45deg); transition: transform .2s ease; pointer-events: none; }
:is(#category, #search, .categoryproducts) #search_filters .facet:not([data-type="price"]).gc-open .title::after { transform: translateY(-50%) rotate(135deg) !important; }
/* Chevron ▾ sur PRIX (toujours ouvert) — maquette */
:is(#category, #search, .categoryproducts) #search_filters .facet[data-type="price"] .title { position: relative !important; padding-right: 22px !important; }
:is(#category, #search, .categoryproducts) #search_filters .facet[data-type="price"] .title::after { content: "" !important; position: absolute !important; right: 6px; top: 50%; width: 7px; height: 7px; border-top: 2px solid var(--wc-muted) !important; border-right: 2px solid var(--wc-muted) !important; border-bottom: none !important; transform: translateY(-50%) rotate(135deg) !important; pointer-events: none; }
/* trait rouge natif sous chaque sous-titre : retiré (garde séparateurs gris + le rouge du titre principal) */
:is(#category, #search, .categoryproducts) #search_filters .facet .facet-title::before, :is(#category, #search, .categoryproducts) #search_filters_wrapper #search_filters .facet .facet-title:before { display: none !important; }
/* compteur de valeurs à côté du titre */
:is(#category, #search, .categoryproducts) #search_filters .facet .gc-facet-count { font-family: var(--gc-font-ui) !important; font-size: 12px !important; font-weight: 400 !important; color: var(--wc-faint) !important; margin-left: 8px !important; }
/* champ recherche : masqué/affiché AVEC l'accordéon */
:is(#category, #search, .categoryproducts) #search_filters .facet:not([data-type="price"]):not(.gc-open) > .gc-facet-search { display: none !important; }
:is(#category, #search, .categoryproducts) #search_filters .facet:not([data-type="price"]).gc-open > .gc-facet-search { display: block !important; }

/* ===== GC — ZONE A bis : header (titre gauche + compteur + trait rouge) + toolbar. Inline anti-cache. ===== */
:is(#category, #search, .categoryproducts) #wrapper > .container, :is(#category, #search, .categoryproducts) .page-title-wrapper > .container { max-width: none !important; width: 100% !important; padding-left: 40px !important; padding-right: 40px !important; }
@media (max-width:980px){ :is(#category, #search, .categoryproducts) #wrapper > .container, :is(#category, #search, .categoryproducts) .page-title-wrapper > .container { padding-left:24px !important; padding-right:24px !important; } }
@media (max-width:600px){ :is(#category, #search, .categoryproducts) #wrapper > .container, :is(#category, #search, .categoryproducts) .page-title-wrapper > .container { padding-left:18px !important; padding-right:18px !important; } }
:is(#category, #search, .categoryproducts) .page-title-wrapper, :is(#category, #search, .categoryproducts) .page-title-wrapper.p_tilte_small, :is(#category, #search, .categoryproducts) .page-title-wrapper.p_tilte_big { background: none !important; min-height: 0 !important; padding: 0 !important; margin: 0 !important; }
:is(#category, #search, .categoryproducts) .page-title-wrapper::before, :is(#category, #search, .categoryproducts) .page-title-wrapper::after { display: none !important; }
:is(#category, #search, .categoryproducts) .page-title-wrapper .container { display: flex !important; flex-direction: column !important; }
:is(#category, #search, .categoryproducts) .page-title-wrapper .page-header { order: 2 !important; }
:is(#category, #search, .categoryproducts) #wrapper .breadcrumb { order: 1 !important; padding: 20px 0 4px !important; margin: 0 !important; background: none !important; }
:is(#category, #search, .categoryproducts) #wrapper .breadcrumb li, :is(#category, #search, .categoryproducts) #wrapper .breadcrumb li a { font-family: var(--gc-font-ui) !important; font-size: 13px !important; color: var(--wc-muted) !important; }
:is(#category, #search, .categoryproducts) #wrapper .breadcrumb li a:hover { color: var(--wc-ink) !important; }
:is(#category, #search, .categoryproducts) #wrapper .breadcrumb li:last-child, :is(#category, #search, .categoryproducts) #wrapper .breadcrumb li:last-child span { color: var(--wc-red) !important; font-weight: 600 !important; }
:is(#category, #search, .categoryproducts) .page-header { text-align: left !important; display: block !important; padding: 14px 0 0 !important; }
:is(#category, #search, .categoryproducts) .page-header h1 { display: inline-block !important; vertical-align: baseline !important; font-family: var(--gc-font-ui) !important; font-weight: 600 !important; font-size: 34px !important; line-height: 1.1 !important; color: var(--wc-ink) !important; letter-spacing: .005em !important; margin: 0 !important; }
:is(#category, #search, .categoryproducts) .page-header .gc-cat-count { display: inline-block !important; vertical-align: baseline !important; margin-left: 14px !important; font-family: var(--gc-font-ui) !important; font-size: 14px !important; font-weight: 500 !important; color: var(--wc-muted) !important; white-space: nowrap !important; }
:is(#category, #search, .categoryproducts) .page-header::after { content: "" !important; display: block !important; width: 46px !important; height: 2px !important; background: var(--wc-red) !important; margin: 14px 0 0 !important; }
@media (max-width:600px){ :is(#category, #search, .categoryproducts) .page-header h1 { font-size: 27px !important; } }
:is(#category, #search, .categoryproducts) #js-product-list-top { padding: 0 !important; margin: 0 0 22px !important; border: none !important; background: transparent !important; box-shadow: none !important; }
:is(#category, #search, .categoryproducts) #js-product-list-top.products-selection,
:is(#category, #search, .categoryproducts) .products-selection { background: transparent !important; box-shadow: none !important; border: none !important; }
:is(#category, #search, .categoryproducts) #js-product-list-top .row.flex-layout { display: flex !important; align-items: center !important; justify-content: space-between !important; flex-wrap: wrap !important; gap: 12px 18px !important; margin: 0 !important; }
:is(#category, #search, .categoryproducts) #js-product-list-top .total-products { display: flex !important; align-items: center !important; gap: 14px !important; width: auto !important; max-width: none !important; flex: 0 1 auto !important; padding: 0 !important; }
:is(#category, #search, .categoryproducts) #js-product-list-top .total-products p { font-family: var(--gc-font-ui) !important; font-size: 14px !important; color: var(--wc-muted) !important; margin: 0 !important; }
:is(#category, #search, .categoryproducts) #js-product-list-top .sort-by-row { display: flex !important; align-items: center !important; justify-content: flex-end !important; gap: 16px !important; width: 100% !important; flex: 1 1 auto !important; margin: 0 !important; }
/* la colonne de droite (tri) grandit jusqu'au bord (space-between conservé ; gap:0 supprime les 18px réservés qui empêchaient le col d'atteindre le bord ; padding-right:0 aligne sur les cartes) */
:is(#category, #search, .categoryproducts) #js-product-list-top .row.flex-layout { gap: 0 !important; column-gap: 0 !important; }
:is(#category, #search, .categoryproducts) #js-product-list-top .row > [class*="col-"]:last-child { flex: 1 1 auto !important; max-width: none !important; padding-right: 0 !important; }
:is(#category, #search, .categoryproducts) #js-product-list-top .sort-by { font-family: var(--gc-font-ui) !important; font-size: 12px !important; font-weight: 600 !important; letter-spacing: .08em !important; text-transform: uppercase !important; color: var(--wc-muted) !important; width: auto !important; padding: 0 !important; }
:is(#category, #search, .categoryproducts) #js-product-list-top .products-sort-order { width: auto !important; flex: 0 0 auto !important; padding: 0 !important; }
/* Bascule vue = groupe bordé, actif fond ink + icône blanche (maquette .view-toggle) */
:is(#category, #search, .categoryproducts) #js-product-list-top ul.display { display: flex !important; align-items: center !important; gap: 0 !important; border: 1px solid var(--wc-border) !important; border-radius: 8px !important; overflow: hidden !important; margin: 0 !important; padding: 0 !important; list-style: none !important; }
:is(#category, #search, .categoryproducts) #js-product-list-top ul.display li { width: 40px !important; height: 38px !important; display: flex !important; align-items: center !important; justify-content: center !important; background: #fff !important; color: var(--wc-muted) !important; cursor: pointer !important; padding: 0 !important; margin: 0 !important; transition: background .15s, color .15s !important; }
:is(#category, #search, .categoryproducts) #js-product-list-top ul.display li + li { border-left: 1px solid var(--wc-border) !important; }
:is(#category, #search, .categoryproducts) #js-product-list-top ul.display li i { font-size: 18px !important; line-height: 1 !important; height: auto !important; width: auto !important; align-self: center !important; display: block !important; }
:is(#category, #search, .categoryproducts) #js-product-list-top ul.display li.selected { background: var(--wc-ink) !important; color: #fff !important; }
:is(#category, #search, .categoryproducts) #js-product-list-top ul.display li:hover:not(.selected) { color: var(--wc-ink) !important; }

/* ===== GC — CORRECTIFS (vus sur capture) : tri sans cadre noir, slider natif masqué, description non débordante ===== */
/* P3 — TRIER PAR : remplace le cadre noir (#000) par un select propre maquette (.select-wrap select) */
:is(#category, #search, .categoryproducts) #js-product-list-top .products-sort-order .select-title { display: flex !important; align-items: center !important; justify-content: flex-start !important; gap: 8px !important; min-width: 180px !important; border: 1px solid var(--wc-border) !important; border-radius: 8px !important; color: var(--wc-ink) !important; background-color: #fff !important; font-family: var(--gc-font-ui) !important; font-size: 13.5px !important; font-weight: 600 !important; padding: 0 13px !important; height: 38px !important; line-height: 1 !important; box-shadow: none !important; }
:is(#category, #search, .categoryproducts) #js-product-list-top .products-sort-order .select-title:hover, :is(#category, #search, .categoryproducts) #js-product-list-top .products-sort-order .select-title:focus { border-color: var(--wc-ink) !important; }
/* flèche dropdown : centrée verticalement + poussée à droite (était flottante en haut) */
:is(#category, #search, .categoryproducts) #js-product-list-top .products-sort-order .select-title i, :is(#category, #search, .categoryproducts) #js-product-list-top .products-sort-order .select-title .material-icons, :is(#category, #search, .categoryproducts) #js-product-list-top .products-sort-order .select-title .float-xs-right { float: none !important; margin: 0 0 0 auto !important; line-height: 1 !important; height: auto !important; font-size: 20px !important; color: var(--wc-muted) !important; display: inline-flex !important; align-items: center !important; align-self: center !important; }
/* PRIX — masquer TOUT le slider jQuery UI natif (handles + label "x € - y €") ; ne garder que le titre + mon .gc-price */
:is(#category, #search, .categoryproducts) #search_filters .facet.gc-has-price > *:not(.title):not(.gc-price) { display: none !important; }
/* P4 — En-tête : la description (page_map) ne déborde plus sur le catalogue (marge nette + clip borné) */
:is(#category, #search, .categoryproducts) #js-product-list-header { margin: 0 0 22px !important; padding: 0 !important; clear: both !important; }
:is(#category, #search, .categoryproducts) #js-product-list-header .block-category { margin: 10px 0 0 !important; }
:is(#category, #search, .categoryproducts) #js-product-list-header .gc-seo-clip { max-height: 4.9em !important; }

/* ============================================================
   GC — CTA « Ajouter au panier » VISIBLE AU REPOS (grille + liste).
   Thème : cache au repos (position:absolute; font-size:0; opacity:0; visibility:hidden;
   transform; fond jaune #fee119) et révèle au survol. On force l'état au repos en
   neutralisant TOUTES ces propriétés, sur le conteneur ET le bouton. 2 ids pour battre
   le thème. NE touche PAS au formulaire add-to-cart de la fiche produit (#product). !important.
   ============================================================ */
/* (a) montrer au repos — grille + liste, sans toucher au layout */
:is(#category, #search, .categoryproducts) #js-product-list .js-product-miniature .add-to-links,
:is(#category, #search, .categoryproducts) #js-product-list .js-product-miniature .add-to-links li.cart,
:is(#category, #search, .categoryproducts) #js-product-list .js-product-miniature .add-to-links li.cart .ajax_add_to_cart_button,
:is(#category, #search, .categoryproducts) #js-product-list .js-product-miniature .add-to-links li.cart .add-to-cart {
  opacity: 1 !important; visibility: visible !important;
  transform: none !important; -webkit-transform: none !important; -moz-transform: none !important;
  max-height: none !important; overflow: visible !important;
}
:is(#category, #search, .categoryproducts) #js-product-list .js-product-miniature .add-to-links { font-size: 13px !important; }
/* (b) GRILLE (style_product2) : conteneur en flux, bas de carte (anti position:absolute) */
:is(#category, #search, .categoryproducts) #js-product-list .js-product-miniature.style_product2 .add-to-links {
  position: static !important; top: auto !important; bottom: auto !important; left: auto !important; right: auto !important;
  display: block !important; height: auto !important; background: transparent !important; margin: 14px 0 0 !important; padding: 0 !important;
}
:is(#category, #search, .categoryproducts) #js-product-list .js-product-miniature.style_product2 .add-to-links li.cart { display: block !important; width: 100% !important; margin: 0 !important; }
:is(#category, #search, .categoryproducts) #js-product-list .js-product-miniature.style_product2 .add-to-links li.cart .ajax_add_to_cart_button { height: 44px !important; }
/* (c) bouton : fond rouge + label (anti font-size:0 + fond jaune) — grille + liste */
:is(#category, #search, .categoryproducts) #js-product-list .js-product-miniature .add-to-links li.cart .ajax_add_to_cart_button,
:is(#category, #search, .categoryproducts) #js-product-list .js-product-miniature .add-to-links li.cart .add-to-cart {
  display: flex !important; align-items: center !important; justify-content: center !important;
  width: 100% !important; min-width: 0 !important;
  background: var(--wc-red) !important; color: #fff !important;
  font-family: var(--gc-font-ui) !important; font-size: 12.5px !important; font-weight: 600 !important;
  letter-spacing: .08em !important; text-transform: uppercase !important; line-height: 1 !important;
  border: none !important; border-radius: 8px !important; padding: 0 14px !important; cursor: pointer !important;
}
/* (d) icône :before du thème masquée (mockup = libellé) ; liens non-cart masqués (hors mockup) */
:is(#category, #search, .categoryproducts) #js-product-list .js-product-miniature .add-to-links li.cart .ajax_add_to_cart_button::before { display: none !important; }
:is(#category, #search, .categoryproducts) #js-product-list .js-product-miniature .add-to-links li:not(.cart) { display: none !important; }

/* (zones transposées) */

/* ===== GC — RECHERCHE uniquement (#search) : terme recherché en gras entre guillemets +
   espace sous l'en-tête (la catégorie a sa description à cet endroit, pas la recherche). ===== */
#search .page-header h1 strong { font-weight: 700 !important; }
#search .row.row-wrapper { margin-top: 36px !important; }

/* --- GC V10V : titres en Spectral (H1 + nom produit), texte en Manrope (déjà appliqué). --- */
:is(#category, #search, .categoryproducts) .page-header h1 { font-family: var(--gc-font-title) !important; font-weight: 600 !important; letter-spacing: 0 !important; }
:is(#category, #search, .categoryproducts) .js-product-miniature .product_name { font-family: var(--gc-font-title) !important; font-weight: 600 !important; }
:is(#category, #search, .categoryproducts) #category-description { font-family: var(--gc-font-ui) !important; }
/* "FILTRER PAR" + titres de facette : Spectral pour rappeler les titres (charte V10V) */
:is(#category, #search, .categoryproducts) #search_filters .my-faced { font-family: var(--gc-font-title) !important; letter-spacing: .06em !important; }

/* --- GC V10V : CTA grille/liste = magenta plein, radius 8px (cohérent avec le CTA fiche produit V10V #dc016f) --- */
:is(#category, #search, .categoryproducts) #js-product-list .js-product-miniature .add-to-links li.cart .ajax_add_to_cart_button,
:is(#category, #search, .categoryproducts) #js-product-list .js-product-miniature .add-to-links li.cart .add-to-cart,
:is(#category, #search, .categoryproducts) #js-product-list .js-product-miniature .cart .add-to-cart {
  background: var(--wc-red) !important; border-radius: 8px !important;
}
:is(#category, #search, .categoryproducts) #js-product-list .js-product-miniature .add-to-links li.cart .ajax_add_to_cart_button:hover,
:is(#category, #search, .categoryproducts) #js-product-list .js-product-miniature .add-to-links li.cart .add-to-cart:hover,
:is(#category, #search, .categoryproducts) #js-product-list .js-product-miniature .cart .add-to-cart:hover {
  background: var(--wc-red-dark) !important;
}
/* Pastille promo carte = pastille réduction fiche produit V10V (#dc016f, radius 8px, 700) */
:is(#category, #search, .categoryproducts) .gc-gcard-promo { background: var(--wc-red) !important; border-radius: 8px !important; font-weight: 700 !important; }

/* ===== GC — CATÉGORIE + RECHERCHE V10V — fin ===== */

/* ===== GC — HERO HP V10V : photo réelle (femme savourant un verre) en background du visuel ===== */
/* Remplace le gradient placeholder par la photo, masque le texte "Visuel hero — votre photo". Pastille "48 h" inchangée (position:absolute). */
.v10vr .hero__visual {
  background: url("/themes/ztl_v10v/assets/img/hero-femme-verre.jpg") center 30% / cover no-repeat !important;
}
.v10vr .hero__visual .ph-label { display: none !important; }
/* ===== /GC — HERO HP V10V ===== */

/* ===================================================================
   GC 2026-06-08 — CTA fiche produit « Ajouter au panier » : style outline magenta
   Repos : fond transparent + bordure 2px magenta + texte magenta
   Hover/focus : fond rose léger (10% magenta)
   Clic (:active) : plein magenta + texte blanc
   Override en APPEND (mêmes sélecteurs + sélecteur ID #add-to-cart-or-refresh
   pour battre la règle "hover bulletproof" du thème). Rollback = supprimer ce bloc
   ou restaurer custom.css.gcbak-cta-20260608.
   =================================================================== */
body.page-product .btn.btn-primary.add-to-cart {
  border:2px solid var(--fp-accent) !important;
  background:transparent !important;
  color:var(--fp-accent) !important;
  box-shadow:none !important;
  transition:background .18s ease, color .18s ease, border-color .18s ease !important;
}
body.page-product .btn.btn-primary.add-to-cart:hover,
body.page-product .btn.btn-primary.add-to-cart:focus,
body.page-product #add-to-cart-or-refresh .add-to-cart:hover,
body.page-product #add-to-cart-or-refresh .add-to-cart:focus {
  background:rgba(220,1,111,.10) !important;
  border-color:var(--fp-accent) !important;
  color:var(--fp-accent) !important;
}
body.page-product .btn.btn-primary.add-to-cart:active,
body.page-product #add-to-cart-or-refresh .add-to-cart:active {
  background:var(--fp-accent) !important;
  border-color:var(--fp-accent) !important;
  color:#fff !important;
}
body.page-product .btn.btn-primary.add-to-cart .material-icons { color:inherit !important; }

/* ===================================================================
   GC 2026-06-08 — CTA vue catégorie / recherche : même style outline magenta
   que la fiche produit. Repos transparent + bordure 2px ; hover rose léger ;
   clic plein. :not(.disabled) => les boutons "rupture" gardent le gris du thème.
   Sélecteurs 1-ID (.categoryproducts) + 2-ID (#js-product-list) pour battre les
   règles existantes (base #wc-red + hover #wc-red-dark). Rollback = supprimer ce bloc.
   =================================================================== */
:is(#category, #search, .categoryproducts) .js-product-miniature .add-to-links li.cart .ajax_add_to_cart_button:not(.disabled),
:is(#category, #search, .categoryproducts) #js-product-list .js-product-miniature .add-to-links li.cart .ajax_add_to_cart_button:not(.disabled) {
  background: transparent !important;
  border: 2px solid var(--wc-red) !important;
  color: var(--wc-red) !important;
  box-sizing: border-box !important;
  box-shadow: none !important;
  transition: background .18s ease, color .18s ease, border-color .18s ease !important;
}
:is(#category, #search, .categoryproducts) .js-product-miniature .add-to-links li.cart .ajax_add_to_cart_button:not(.disabled):hover,
:is(#category, #search, .categoryproducts) .js-product-miniature .add-to-links li.cart .ajax_add_to_cart_button:not(.disabled):focus,
:is(#category, #search, .categoryproducts) #js-product-list .js-product-miniature .add-to-links li.cart .ajax_add_to_cart_button:not(.disabled):hover,
:is(#category, #search, .categoryproducts) #js-product-list .js-product-miniature .add-to-links li.cart .ajax_add_to_cart_button:not(.disabled):focus {
  background: rgba(220,1,111,.10) !important;
  background-color: rgba(220,1,111,.10) !important;
  border-color: var(--wc-red) !important;
  color: var(--wc-red) !important;
}
:is(#category, #search, .categoryproducts) .js-product-miniature .add-to-links li.cart .ajax_add_to_cart_button:not(.disabled):active,
:is(#category, #search, .categoryproducts) #js-product-list .js-product-miniature .add-to-links li.cart .ajax_add_to_cart_button:not(.disabled):active {
  background: var(--wc-red) !important;
  background-color: var(--wc-red) !important;
  border-color: var(--wc-red) !important;
  color: #fff !important;
}

/* ===================================================================
   GC 2026-06-08 — Badges sur l'image de la FICHE PRODUIT (promo / bio / x6),
   même style que la carte catégorie. Données via $product (template layout1).
   Réversible : supprimer ce bloc + le bloc badges dans product_layout1.tpl.
   =================================================================== */
body.page-product .fp-gallery { position: relative; }
body.page-product .fp-gallery .product-cover-container > .product-flag,
body.page-product .fp-gallery > .product-flag { display: none !important; }
body.page-product .fp-gallery .gc-gcard-promo { position:absolute; top:16px; left:16px; z-index:5; font-family:var(--gc-font-ui),'Roboto',sans-serif; font-size:18px; font-weight:700; color:#fff; background:#dc016f; border-radius:8px; padding:7px 13px; line-height:1.15; box-shadow:0 1px 5px rgba(0,0,0,.18); }
body.page-product .fp-gallery .gc-gcard-bio { position:absolute; top:16px; right:16px; z-index:5; font-family:var(--gc-font-ui),'Roboto',sans-serif; font-size:11px; font-weight:700; letter-spacing:.07em; text-transform:uppercase; color:#fff; background:#2f6b2f; border-radius:5px; padding:5px 9px; }
body.page-product .fp-gallery .gc-gcard-mult { position:absolute; bottom:16px; right:16px; z-index:5; font-family:var(--gc-font-ui),'Roboto',sans-serif; font-size:17px; font-weight:700; color:#fff; background:#373737; border-radius:8px; padding:6px 13px; line-height:1.2; white-space:nowrap; box-shadow:0 1px 5px rgba(0,0,0,.22); }
body.page-product .fp-gallery .gc-gcard-mult--3 { background:#373737; }
body.page-product .fp-gallery .gc-gcard-mult--6 { background:#6e1414; }

/* ===================================================================
   GC 2026-06-08 — Vue catégorie/recherche : cartes d'une même rangée à
   HAUTEUR ÉGALE + CTA aligné en bas. Le conteneur .product_content.grid
   était en display:block -> les cartes prenaient leur hauteur naturelle
   (la carte sans bandeau région finissait plus courte, bouton désaligné).
   On force flex + wrap + align stretch ; la carte (height:100%, flex col,
   prix en margin-top:auto) colle alors le bouton en bas. Réversible : supprimer ce bloc.
   =================================================================== */
:is(#category, #search, .categoryproducts) .product_content.grid { display:flex !important; flex-wrap:wrap !important; align-items:stretch !important; }

/* ==========================================================================
   GC — V10V : Page Contact "Nous contacter" — v3 (façon La Cave des CE) [début]
   2026-06-09
   Carte blanche centrée, en-tête "Vous avez une question ?" + tél + filet,
   formulaire à champs sur 2 colonnes. Pas de panneau réassurance.
   Charte V10V : magenta #dc016f · Spectral + Manrope.
   ========================================================================== */

body#contact {
  --vc-rose: #dc016f;
  --vc-rose-deep: #b00159;
  --vc-rose-tint: #fdeef6;
  --vc-rose-line: #f3cfe2;
  --vc-ink: #2a151f;
  --vc-text: #4d414a;
  --vc-muted: #8d8189;
  --vc-line: #ddd5dc;
  --vc-page: #f3ece4;
  --vc-display: "Spectral", Georgia, "Times New Roman", serif;
  --vc-sans: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
}

body#contact { background-color: var(--vc-page) !important; }
body#contact #main { background: transparent !important; }
body#contact #main .row { margin-left: 0 !important; margin-right: 0 !important; }
body#contact .page-header,
body#contact .page-title-wrapper,
body#contact .breadcrumb { display: none !important; }
/* Champ "Document joint" retiré (demande Gabriel) */
body#contact .form-group.row:has(input[type="file"]) { display: none !important; }

body#contact #content-wrapper.js-content-wrapper {
  float: none !important; width: 100% !important; max-width: 880px !important;
  margin: clamp(24px, 4vw, 54px) auto !important; padding-left: 16px !important; padding-right: 16px !important;
}
body#contact #content.page-content {
  background: none !important; border: none !important; border-radius: 0 !important; box-shadow: none !important; padding: 0 !important; overflow: visible !important;
}
body#contact #content.page-content * { box-sizing: border-box; }

/* La carte */
body#contact .gc-contact {
  background: #fff;
  border: 1px solid var(--vc-line);
  border-radius: 18px;
  box-shadow: 0 30px 60px -38px rgba(69, 16, 42, 0.34), 0 2px 8px rgba(42, 21, 31, 0.04);
  padding: clamp(30px, 4vw, 56px) clamp(24px, 4vw, 56px) clamp(28px, 4vw, 48px);
}

/* En-tête centré */
body#contact .gc-c-head { text-align: center; margin-bottom: clamp(22px, 3vw, 34px); }
body#contact .gc-c-title {
  font-family: var(--vc-display); font-size: clamp(26px, 3.2vw, 36px); font-weight: 700;
  color: var(--vc-ink); margin: 0 0 12px 0; line-height: 1.1; text-transform: none;
}
body#contact .gc-c-sub {
  font-family: var(--vc-sans); font-size: 15.5px; font-weight: 400; line-height: 1.55;
  color: var(--vc-text); margin: 0 auto; max-width: 32em;
}
body#contact .gc-c-sub strong { font-weight: 700; color: var(--vc-ink); white-space: nowrap; }
body#contact .gc-c-todo {
  display: inline-block; margin-left: 4px; padding: 1px 7px; border-radius: 999px;
  background: var(--vc-rose-tint); color: var(--vc-rose-deep);
  font-style: normal; font-size: 10px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; vertical-align: middle;
}
body#contact .gc-c-rule {
  display: block; width: 56px; height: 3px; border-radius: 3px;
  background: var(--vc-rose); margin: clamp(18px, 2.4vw, 26px) auto clamp(16px, 2vw, 22px);
}
body#contact .gc-c-formtitle {
  font-family: var(--vc-sans); font-size: 13px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--vc-muted); margin: 0; text-align: center;
}

/* Masque le h3 dupliqué du widget + groups vides */
body#contact .form-fields .form-group.row:not(:has(input)):not(:has(select)):not(:has(textarea)) {
  display: none !important; margin: 0 !important;
}

/* Champs sur 2 colonnes (fichier + message en pleine largeur) */
body#contact .form-fields {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 2px 22px !important;
  margin: 0 !important; padding: 0 !important;
}
body#contact .form-group.row {
  display: flex !important; flex-direction: column !important; margin: 0 0 16px 0 !important; width: 100% !important; min-width: 0 !important;
}
body#contact .form-group.row:has(input[type="file"]),
body#contact .form-group.row:has(#id_contact),
body#contact .form-group.row:has(textarea) { grid-column: 1 / -1 !important; }
body#contact .form-group.row .row { margin-left: 0 !important; margin-right: 0 !important; }

body#contact .form-control-label {
  text-align: left !important; width: 100% !important; max-width: 100% !important; flex: 0 0 auto !important;
  margin-bottom: 7px !important; padding: 0 !important;
  font-family: var(--vc-sans) !important; font-weight: 700 !important; font-size: 13.5px !important; color: var(--vc-ink) !important;
}
body#contact .form-group.row > div[class*="col-"] { width: 100% !important; max-width: 100% !important; flex: 0 0 auto !important; padding: 0 !important; }

body#contact .form-control {
  width: 100% !important; height: 48px !important; padding: 11px 14px !important;
  font-family: var(--vc-sans) !important; font-size: 15px !important; font-weight: 400 !important;
  color: var(--vc-ink) !important; background-color: #fff !important;
  border: 1px solid var(--vc-line) !important; border-radius: 9px !important; box-shadow: none !important;
  transition: border-color 0.18s, box-shadow 0.18s !important;
}
body#contact .form-control::placeholder { color: #b3a9b0 !important; }
body#contact .form-control:focus {
  border-color: var(--vc-rose) !important; box-shadow: 0 0 0 3px rgba(220, 1, 111, 0.13) !important; outline: none !important;
}
body#contact select.form-control {
  appearance: none !important; -webkit-appearance: none !important; -moz-appearance: none !important; padding-right: 40px !important; cursor: pointer !important;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238d8189' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important; background-position: right 13px center !important; background-size: 16px !important;
}
body#contact textarea.form-control { height: auto !important; min-height: 150px !important; padding-top: 12px !important; line-height: 1.55 !important; resize: vertical !important; }

/* Champ fichier : input natif + faux bouton CSS */
body#contact .form-group.row:has(input[type="file"]) > div[class*="col-"] { position: relative !important; }
body#contact input[type="file"] {
  position: relative !important; z-index: 1 !important; width: 100% !important; height: auto !important; min-height: 48px !important;
  padding: 14px 14px 14px 168px !important;
  font-family: var(--vc-sans) !important; font-size: 13.5px !important; color: var(--vc-muted) !important;
  background-color: #fff !important; border: 1px dashed var(--vc-rose-line) !important; border-radius: 9px !important; cursor: pointer !important;
}
body#contact input[type="file"]::file-selector-button,
body#contact input[type="file"]::-webkit-file-upload-button { color: transparent !important; width: 0 !important; padding: 0 !important; margin: 0 !important; border: 0 !important; background: transparent !important; }
body#contact .form-group.row:has(input[type="file"]) > div[class*="col-"]::before {
  content: "Choisir un fichier"; position: absolute !important; left: 7px !important; top: 7px !important; bottom: 7px !important; z-index: 2 !important;
  display: flex !important; align-items: center !important; pointer-events: none !important; padding: 0 16px !important;
  background: var(--vc-rose-tint) !important; border: 1px solid var(--vc-rose-line) !important; border-radius: 7px !important; color: var(--vc-rose-deep) !important;
  font-family: var(--vc-sans) !important; font-weight: 700 !important; font-size: 12.5px !important; white-space: nowrap !important;
}
body#contact .form-control-comment {
  display: block !important; width: 100% !important; margin-top: 6px !important; padding: 0 !important;
  font-family: var(--vc-sans) !important; font-size: 12.5px !important; color: var(--vc-muted) !important;
}

/* Bouton d'envoi */
body#contact .form-footer { margin: 8px 0 0 0 !important; padding: 0 !important; text-align: center !important; }
body#contact .form-footer .btn-primary[type="submit"],
body#contact .form-footer input[type="submit"],
body#contact #submit-message {
  width: 100% !important; max-width: 340px !important; height: 52px !important; margin: 0 auto !important; display: inline-block !important;
  font-family: var(--vc-sans) !important; font-size: 15px !important; font-weight: 700 !important; letter-spacing: 0.01em !important; text-transform: none !important;
  color: #fff !important; background-color: var(--vc-rose) !important; background-image: none !important;
  border: 1.5px solid var(--vc-rose) !important; border-radius: 10px !important;
  box-shadow: 0 14px 28px -16px rgba(220, 1, 111, 0.5) !important; cursor: pointer !important; float: none !important;
  transition: background-color 0.2s, border-color 0.2s, transform 0.12s !important;
}
body#contact .form-footer .btn-primary[type="submit"]:hover,
body#contact .form-footer input[type="submit"]:hover { background-color: var(--vc-rose-deep) !important; border-color: var(--vc-rose-deep) !important; }
body#contact .form-footer .btn-primary[type="submit"]:active,
body#contact .form-footer input[type="submit"]:active { transform: scale(0.99) !important; }

/* Alertes */
body#contact .alert { border-radius: 10px !important; border: 1px solid var(--vc-line) !important; font-family: var(--vc-sans) !important; font-size: 14.5px !important; padding: 14px 18px !important; }
body#contact .alert-success { background: #eef7ef !important; border-color: #cfe8d2 !important; color: #226b35 !important; }
body#contact .alert-danger { background: var(--vc-rose-tint) !important; border-color: var(--vc-rose-line) !important; color: var(--vc-rose-deep) !important; }

/* Responsive : 1 colonne */
@media (max-width: 640px) {
  body#contact .form-fields { grid-template-columns: 1fr !important; }
  body#contact .gc-contact { padding: clamp(24px, 6vw, 32px) !important; }
  body#contact .form-footer .btn-primary[type="submit"], body#contact .form-footer input[type="submit"] { max-width: none !important; }
}
/* ==========================================================================
   GC — V10V : Page Contact — v3 (façon La Cave des CE)               [fin]
   ========================================================================== */
