/* ── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red: #c8102e;
  --red-dark: #9e0c24;
  --dark: #1a0a06;
  --dark2: #2a1208;
  --cream: #f5f0e8;
  --cream2: #ede8df;
  --text: #2a1208;
  --muted: #6b5a4e;
  --white: #ffffff;
  --font-display: 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
#shopify-section-header #AccessibleNav{
  padding-top: 0!important;
}

p, h3, h4, h5, h6, span{
  font-family: "Poppins", sans-serif!important;
}

h1 span, h1, h2{
  font-family: "Bebas Neue", sans-serif!important;
  letter-spacing: 6px!important;
}

a{
  font-family: "Poppins", sans-serif!important;
}

#mj-tb-trust_bar_Wcwt99{
  padding: 16px 0!important;
}


img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── TYPOGRAPHY ───────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.1; }
h1 { font-size: clamp(2.8rem, 7vw, 5.5rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 600; }
h3 { font-size: 1.15rem; font-weight: 600; }
p { line-height: 1.7; color: var(--muted); }

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 2rem; border-radius: 4px;
  font-family: var(--font-display); font-size: .9rem;
  font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  cursor: pointer; border: 2px solid transparent;
  transition: all .25s var(--ease);
}
.btn-primary { background: var(--red); color: #fff; border-color: var(--red); }
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,16,46,.35); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn-ghost:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.btn-outline { background: transparent; color: var(--text); border-color: var(--text); }
.btn-outline:hover { background: var(--text); color: #fff; }
.btn-outline-dark { background: transparent; color: var(--dark); border-color: var(--dark); }
.btn-outline-dark:hover { background: var(--dark); color: #fff; }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn-outline-light:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.btn-sm { padding: .55rem 1.25rem; font-size: .8rem; }

/* ── CONTAINER ────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

/* ── SECTION HEADER ───────────────────────────────────────── */
.section { padding: 6rem 0; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header h2 { margin: .5rem 0 1rem; }
.section-header p { max-width: 560px; margin: 0 auto; }
.section-header.light h2, .section-header.light p { color: #fff; }
.section-header.light p { color: rgba(255,255,255,.7); }
.eyebrow {
  display: inline-block; font-family: var(--font-display);
  font-size: .75rem; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--red); margin-bottom: .5rem;
}
.section-cta { text-align: center; margin-top: 3rem; }

/* ── HEADER ───────────────────────────────────────────────── */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.25rem 0;
  transition: all .4s var(--ease);
}
.header.scrolled {
  background: rgba(26,10,6,.97); backdrop-filter: blur(20px);
  padding: .75rem 0; box-shadow: 0 2px 30px rgba(0,0,0,.4);
}
.header-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
}
.logo {
  font-family: var(--font-display); font-size: 1.5rem;
  font-weight: 700; color: #fff; letter-spacing: 2px;
}
.logo-accent { color: var(--red); }
.nav { display: flex; align-items: center; gap: 2rem; }
.nav a {
  font-family: var(--font-display); font-size: .85rem;
  font-weight: 500; letter-spacing: 1px; text-transform: uppercase;
  color: rgba(255,255,255,.8); transition: color .2s;
  position: relative; padding: .25rem 0;
}
.nav a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--red);
  transition: width .3s var(--ease);
}
.nav a:hover { color: #fff; }
.nav a:hover::after { width: 100%; }
.nav-cta {
  background: var(--red) !important; color: #fff !important;
  padding: .5rem 1.25rem; border-radius: 4px;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--red-dark) !important; }
.menu-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: .5rem;
}
.menu-toggle span {
  display: block; width: 24px; height: 2px;
  background: #fff; border-radius: 2px; transition: all .3s;
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #1a0a06 0%, #2a1208 40%, #3d1a0a 70%, #1a0a06 100%);
}
.hero-bg::before {
  content: ''; position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1504674900247-0877df9cc836?w=1600&q=60') center/cover;
  opacity: .18; mix-blend-mode: overlay;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(200,16,46,.15), transparent 60%),
              radial-gradient(ellipse at 70% 50%, rgba(200,100,0,.08), transparent 60%);
}
.hero-content {
  position: relative; z-index: 5; text-align: center;
  max-width: 800px; padding: 8rem 2rem 4rem;
}
.hero-eyebrow {
  display: inline-block; font-family: var(--font-display);
  font-size: .8rem; letter-spacing: 4px; text-transform: uppercase;
  color: rgba(255,255,255,.6); margin-bottom: 1.5rem;
  animation: fadeUp .7s var(--ease) .1s both;
}
.hero-title {
  color: #fff; margin-bottom: 1.5rem;
  animation: fadeUp .7s var(--ease) .25s both;
}
.hero-accent { color: var(--red); }
.hero-subtitle {
  font-size: 1.1rem; color: rgba(255,255,255,.7);
  line-height: 1.8; margin-bottom: 2.5rem;
  animation: fadeUp .7s var(--ease) .4s both;
}
.hero-actions {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  margin-bottom: 3rem;
  animation: fadeUp .7s var(--ease) .55s both;
}
.hero-badges {
  display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap;
  animation: fadeUp .7s var(--ease) .7s both;
}
.badge {
  display: flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  border-radius: 30px; padding: .5rem 1rem;
  font-size: .8rem; color: rgba(255,255,255,.8);
}
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  color: rgba(255,255,255,.4); font-size: .7rem; letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeUp .7s var(--ease) .85s both;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ── STRIP ────────────────────────────────────────────────── */
.strip {
  background: var(--red); overflow: hidden;
  padding: .85rem 0; white-space: nowrap;
}
.strip-track {
  display: inline-flex; gap: 2rem; align-items: center;
  animation: marquee 20s linear infinite;
  font-family: var(--font-display); font-size: .8rem;
  font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,.9);
}
.dot { opacity: .5; }

/* ── PRODUCTS ─────────────────────────────────────────────── */
.products-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.product-card {
  background: #fff; border-radius: 12px;
  overflow: hidden; box-shadow: 0 2px 20px rgba(0,0,0,.06);
  transition: transform .3s var(--ease), box-shadow .3s;
}
.product-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,.12); }
.product-img-wrap { position: relative; }
.product-img { height: 220px; }
.tag {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--red); color: #fff;
  font-family: var(--font-display); font-size: .7rem;
  font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  padding: .3rem .7rem; border-radius: 4px;
}
.tag.hot { background: #e65c00; }
.tag.new { background: #1a7a3a; }
.tag.sale { background: var(--red); }
.product-info { padding: 1.25rem; }
.product-info h3 { margin-bottom: .5rem; font-size: 1rem; }
.product-info p { font-size: .85rem; margin-bottom: 1rem; }
.product-footer { display: flex; align-items: center; justify-content: space-between; }
.price { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; color: var(--text); }

/* ── SPLIT ────────────────────────────────────────────────── */
.section-split {
  display: grid; grid-template-columns: 1fr 1fr; min-height: 600px;
}
.split-image { min-height: 400px; }
.split-content {
  background: var(--dark); color: #fff;
  padding: 5rem 4rem; display: flex; flex-direction: column;
  justify-content: center; gap: 1.25rem;
}
.split-content h2 { color: #fff; }
.split-content p { color: rgba(255,255,255,.7); }
.check-list { display: flex; flex-direction: column; gap: .6rem; }
.check-list li { display: flex; align-items: center; gap: .75rem; color: rgba(255,255,255,.85); font-size: .9rem; }
.check { color: var(--red); font-weight: 700; font-size: 1rem; }

/* ── DARK SECTION ─────────────────────────────────────────── */
.section-dark { background: var(--dark2); padding: 6rem 0; }
.section-dark .eyebrow { color: var(--red); }

/* ── SPICES ───────────────────────────────────────────────── */
.spices-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}
.spice-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px; overflow: hidden;
  transition: transform .3s var(--ease), border-color .3s;
}
.spice-card:hover { transform: translateY(-4px); border-color: rgba(200,16,46,.4); }
.spice-card.featured { border-color: rgba(200,16,46,.3); }
.spice-img { height: 200px; }
.spice-card h3 { color: #fff; padding: 1rem 1rem .4rem; font-size: 1rem; }
.spice-card p { color: rgba(255,255,255,.6); padding: 0 1rem .75rem; font-size: .85rem; }
.spice-card .price { display: block; padding: 0 1rem 1rem; color: var(--red); font-family: var(--font-display); font-weight: 600; }
.spice-card .tag { position: relative; top: auto; left: auto; display: inline-block; margin: 1rem 1rem 0; }

/* ── COMBOS ───────────────────────────────────────────────── */
.combos-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 1.5rem;
}
.combo-card {
  background: #fff; border-radius: 12px; overflow: hidden;
  box-shadow: 0 2px 20px rgba(0,0,0,.06);
  transition: transform .3s var(--ease), box-shadow .3s;
}
.combo-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.12); }
.combo-img { height: 220px; }
.combo-card.combo-featured .combo-img { height: 260px; }
.combo-info { padding: 1.25rem; display: flex; flex-direction: column; gap: .75rem; }
.combo-info h3 { font-size: 1rem; }
.combo-info p { font-size: .85rem; }
.combo-price { display: flex; align-items: center; gap: .75rem; }
.price-old { font-size: .9rem; color: var(--muted); text-decoration: line-through; }
.price-new { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--red); }

/* ── ABOUT ────────────────────────────────────────────────── */
.section-about { background: var(--cream2); }
.about-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 5rem; align-items: center; }
.about-logo-wrap { display: flex; justify-content: center; }
.about-logo-circle {
  width: 260px; height: 260px; border-radius: 50%;
  background: var(--red); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 20px 60px rgba(200,16,46,.3);
}
.about-logo-circle span {
  font-family: var(--font-display); font-size: 2rem; font-weight: 400;
  color: #fff; text-align: center; line-height: 1.2; letter-spacing: 3px;
}
.about-logo-circle strong { font-size: 2.8rem; font-weight: 700; display: block; }
.about-content { display: flex; flex-direction: column; gap: 1rem; }
.about-content h2 { margin-bottom: .5rem; }
.about-stats { display: flex; gap: 2.5rem; margin-top: 1rem; padding-top: 1.5rem; border-top: 1px solid rgba(0,0,0,.1); }
.stat { display: flex; flex-direction: column; gap: .2rem; }
.stat-num { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--red); }
.stat-label { font-size: .8rem; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }

/* ── RECIPES ──────────────────────────────────────────────── */
.recipes-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 1.5rem;
}
.recipe-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px; overflow: hidden;
  transition: transform .3s var(--ease), border-color .3s;
}
.recipe-card:hover { transform: translateY(-4px); border-color: rgba(200,16,46,.3); }
.recipe-img { height: 200px; }
.recipe-card.recipe-featured .recipe-img { height: 260px; }
.recipe-info { padding: 1.25rem; display: flex; flex-direction: column; gap: .6rem; }
.recipe-info h3 { color: #fff; font-size: 1rem; }
.recipe-info p { color: rgba(255,255,255,.6); font-size: .85rem; }
.recipe-link { color: var(--red); font-size: .85rem; font-weight: 600; transition: opacity .2s; }
.recipe-link:hover { opacity: .8; }
.recipe-info .tag { position: relative; top: auto; left: auto; display: inline-block; }

/* ── NEWSLETTER ───────────────────────────────────────────── */
.section-newsletter { background: var(--dark); padding: 5rem 0; }
.newsletter-box {
  display: flex; align-items: center; justify-content: space-between;
  gap: 3rem; flex-wrap: wrap;
}
.newsletter-content h2 { color: #fff; margin-bottom: .5rem; }
.newsletter-content p { color: rgba(255,255,255,.6); }
.newsletter-form { display: flex; gap: .75rem; flex-wrap: wrap; }
.newsletter-form input {
  flex: 1; min-width: 260px; padding: .85rem 1.25rem;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  border-radius: 4px; color: #fff; font-family: var(--font-body); font-size: .95rem;
  outline: none; transition: border-color .2s;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.4); }
.newsletter-form input:focus { border-color: var(--red); }

/* ── FOOTER ───────────────────────────────────────────────── */
.footer { background: #0f0604; padding: 4rem 0 2rem; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-brand .logo { font-size: 1.3rem; display: block; margin-bottom: 1rem; }
.footer-brand p { color: rgba(255,255,255,.5); font-size: .85rem; line-height: 1.7; margin-bottom: 1.25rem; }
.footer-social { display: flex; gap: .75rem; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 8px;
  background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6); transition: all .2s;
}
.footer-social a:hover { background: var(--red); color: #fff; }
.footer-links h4 {
  font-family: var(--font-display); font-size: .75rem; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.9);
  margin-bottom: 1.25rem;
}
.footer-links ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-links a { color: rgba(255,255,255,.5); font-size: .85rem; transition: color .2s; }
.footer-links a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding-top: 1.5rem;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { color: rgba(255,255,255,.35); font-size: .8rem; }
.footer-payments { display: flex; gap: .75rem; }
.footer-payments span {
  background: rgba(255,255,255,.08); color: rgba(255,255,255,.5);
  font-size: .7rem; padding: .3rem .6rem; border-radius: 4px;
}

.mj-about__image-wrap{
  padding: 1rem;
  box-shadow: none!important;
}

.main-content{
  padding-top: 0px!important;
}

.site-header__logo-image img{
  padding: 10px;
}

#mj-tb-trust_bar_y4kG7h{
  padding: 16px 0!important;
}

.mj-footer__payment-icon {
    background: rgb(237 237 237)!important;
}

.mj-ph {
    min-height: 500px!important;
    max-height: none!important;
}

/* Thumbnails en rangée horizontale sur mobile */
@media (max-width: 900px) {
  .mj-pp__thumb-list {
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
  }
  .mj-pp__thumbs {
    overflow-x: auto !important;
  }
}

/* ── Fix Slick Carousel thumbnails ──────────────────────────── */
/* Force le carousel en rangée horizontale scrollable */

/* Wrapper scrollable */
.mj-pp__thumbs {
  overflow-x: auto !important;
  overflow-y: hidden !important;
  scrollbar-width: none !important;
  -webkit-overflow-scrolling: touch !important;
}
.mj-pp__thumbs::-webkit-scrollbar { display: none !important; }

/* slick-list : laisse déborder pour permettre le scroll */
.mj-pp__thumbs .slick-list {
  overflow: visible !important;
  height: auto !important;
}

/* slick-track : rangée horizontale, largeur auto */
.mj-pp__thumbs .slick-track {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  height: auto !important;
  transform: none !important;
  width: max-content !important;
  gap: .45rem !important;
}

/* Chaque slide : taille auto, pas de float */
.mj-pp__thumbs .slick-slide {
  float: none !important;
  height: auto !important;
  display: block !important;
  width: auto !important;
}

/* Cacher les boutons prev/next de Slick */
.mj-pp__thumbs .slick-prev,
.mj-pp__thumbs .slick-next,
.mj-pp__thumbs .thumbnails-slider__btn {
  display: none !important;
}

.product-form__item{
  flex: 1 1 70px;
}

.mj-cart-hero, .mjb-hero {
    min-height: 420px!important;
}

.mjb-hero{
  margin-top: 0px!important;
}
/* ── ANIMATIONS ───────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50%       { opacity: .3; transform: scaleY(.6); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .combos-grid { grid-template-columns: 1fr 1fr; }
  .recipes-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-logo-wrap { display: none; }
  .mj-ph {
    min-height: 400px!important;
    max-height: none!important;
  }
  .mjc-hero {
    min-height: 350px!important;
    max-height: fit-content!important;
}

.mj-cart-hero, .mjb-hero {
    min-height: 350px!important;
}
}

@media (max-width: 768px) {
  .menu-toggle { display: flex; }
  .nav {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: var(--dark); flex-direction: column; justify-content: center;
    gap: 2rem; opacity: 0; pointer-events: none; transition: opacity .3s;
  }
  .nav.open { opacity: 1; pointer-events: all; }
  .nav a { font-size: 1.4rem; color: #fff; }
  .nav-cta { padding: .75rem 2rem; }
  .section-split { grid-template-columns: 1fr; }
  .split-image { min-height: 300px; }
  .split-content { padding: 3rem 2rem; }
  .combos-grid { grid-template-columns: 1fr; }
  .recipes-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .newsletter-box { flex-direction: column; }
  .hero-badges { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .spices-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
}

/* ── Cacher les slides clonés par Slick ─────────────────────── */
.mj-pp__thumbs .slick-cloned,
.product-single__thumbnails .slick-cloned {
  display: none !important;
}

/* Aussi cacher le clone actif (active-thumb sur clone) */
.mj-pp__thumbs .slick-cloned.active-thumb,
.product-single__thumbnails .slick-cloned.active-thumb {
  display: none !important;
}
