/* ==========================
   M3 Spices
========================== */







*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Poppins',sans-serif;
  background:#e3ddd1;
  color:#111;
  overflow-x:hidden;
}

/* =========================
   GLOBAL
========================= */

.section{
  padding:82px 7%;
}

.section-head{
  text-align:center;
  margin-bottom:60px;
}

.section-head span{
  color:#b68b2d;
  letter-spacing:2px;
  font-size:13px;
  font-weight:600;
}



/* =========================
   NAVBAR
========================= */

.navbar{
  position:fixed;
  top:3px;
  left:50%;
  transform:translateX(-50%);
  width:92%;
  height:85px;
  background:rgba(255,255,255,0.88);
  backdrop-filter:blur(12px);
  border-radius:22px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 35px;
  z-index:999;
  box-shadow:0 10px 40px rgba(0,0,0,0.08);
}

.logo img{
  height:105px;
}

.nav-links{
  display:flex;
  gap:38px;
}

.nav-links a{
  text-decoration:none;
  color:#111;
  font-size:15px;
  font-weight:500;
  transition:0.3s;
}

.nav-links a:hover{
  color:#b68b2d;
}

.nav-btn{
  background:#08210f;
  color:white;
  text-decoration:none;
  padding:14px 28px;
  border-radius:12px;
  transition:0.3s;
  font-size:14px;
}

.nav-btn:hover{
  background:#b68b2d;
}

.menu-btn{
  display:none;
}


/* ==========================
   M3 HERO — MANUAL PRODUCT CAROUSEL
   Active product sharp & centered, other two
   peek behind it, smaller and blurred.
========================== */

.m3-hero{
    --bg-1:#2B1710;
    --bg-2:#4A2818;
    --accent:#C17F3E;
    --accent-soft:rgba(193,127,62,.28);
    --heading-color:#fff;

    position:relative;
    overflow:hidden;
    padding:100px 0 100px;
    min-height:640px;
    background:var(--bg-1);
    isolation:isolate;
}

.m3-hero[data-theme="chilli"]{
    --bg-1:#3D0C0C;
    --bg-2:#7A1F1F;
    --accent:#E8572E;
    --accent-soft:rgba(232,87,46,.28);
}

.m3-hero[data-theme="turmeric"]{
    --bg-1:#3D2B08;
    --bg-2:#8B6914;
    --accent:#F0C43D;
    --accent-soft:rgba(240,196,61,.28);
}

.m3-stack{ display:grid; }
.m3-stack > *{ grid-area:1 / 1; }

/* ---- layered gradient backgrounds ---- */
.m3-hero-bgs{
    position:absolute;
    inset:0;
    z-index:0;
}
.m3-hero-bg{
    width:100%;
    height:100%;
    opacity:0;
    transition:opacity 1.2s ease-in-out;
}
.m3-hero-bg.active{ opacity:1; }
.m3-hero-bg[data-theme="cloves"]{
    background:linear-gradient(135deg,#1E1E1E 0%,#4A2818 50%,#6B3A1F 100%);
}
.m3-hero-bg[data-theme="chilli"]{
    background:linear-gradient(135deg,#1E1E1E 0%,#5B1E1E 50%,#7A1F1F 100%);
}
.m3-hero-bg[data-theme="turmeric"]{
    background:linear-gradient(135deg,#1E1E1E 0%,#5C4008 50%,#8B6914 100%);
}

.m3-hero::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    top:-180px;
    right:-120px;
    border-radius:50%;
    background:radial-gradient(circle, var(--accent-soft), transparent 70%);
    transition:background 1.2s ease-in-out;
    z-index:1;
    pointer-events:none;
}

/* ---- mountain-mist motif ---- */
.m3-mountains{
    position:absolute;
    inset:auto 0 0 0;
    height:55%;
    z-index:1;
    pointer-events:none;
}
.m3-mountain-layer{
    position:relative;
    width:100%;
    height:100%;
    opacity:0;
    transition:opacity 1.2s ease-in-out;
}
.m3-mountain-layer.active{ opacity:1; }

.m3-peak{
    position:absolute;
    bottom:0;
    width:70%;
    height:100%;
    background:var(--accent);
    transition:background 1.2s ease-in-out;
}
.m3-peak-back{
    left:-10%;
    opacity:.14;
    clip-path:polygon(0% 100%, 18% 45%, 34% 68%, 52% 30%, 68% 58%, 84% 20%, 100% 100%);
}
.m3-peak-front{
    left:35%;
    opacity:.22;
    clip-path:polygon(0% 100%, 15% 55%, 30% 75%, 48% 40%, 66% 70%, 82% 35%, 100% 100%);
}

.m3-watermark{
    position:absolute;
    top:24px;
    right:40px;
    font-family:'Cormorant Garamond', serif;
    font-weight:800;
    font-size:22px;
    letter-spacing:2px;
    color:rgba(255,255,255,.35);
    z-index:2;
}

.m3-hero .container{
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:80px;
    position:relative;
    z-index:2;
}

/* ---- static content ---- */
.hero-tag{
    display:inline-block;
    padding:10px 22px;
    border-radius:50px;
    background:var(--accent-soft);
    border:1px solid var(--accent);
    color:var(--accent);
    font-size:13px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:25px;
    margin-left:50px;
    transition:background 1.2s ease-in-out, border-color 1.2s ease-in-out, color 1.2s ease-in-out;
}

.m3-hero-content h1{
    font-family:'Cormorant Garamond', serif;
    padding-left:50px;
    font-size:72px;
    line-height:1.05;
    font-weight:800;
    color:var(--heading-color);
    margin-bottom:25px;
}
.m3-hero-content h1 span{
    display:block;
    color:var(--accent);
    transition:color 1.2s ease-in-out;
}

.m3-hero-content p{
    padding-left:50px;
    font-size:18px;
    line-height:1.8;
    color:rgba(255,255,255,.85);
    max-width:620px;
    margin-bottom:35px;
}

/* ---- buttons ---- */
.hero-buttons{
    padding-left:50px;
    display:flex;
    gap:18px;
}
.hero-btn{
    text-decoration:none;
    padding:16px 34px;
    border-radius:50px;
    font-weight:600;
    transition:.35s ease;
}
.m3-primary-btn{
    background:var(--accent);
    color:#1E1E1E;
    transition:background 1.2s ease-in-out, transform .35s ease, box-shadow .35s ease;
}
.m3-primary-btn:hover{
    transform:translateY(-4px);
    box-shadow:0 15px 30px var(--accent-soft);
}
.m3-secondary-btn{
    border:1px solid rgba(255,255,255,.25);
    color:#fff;
}
.m3-secondary-btn:hover{
    background:rgba(255,255,255,.08);
}

/* ---- product carousel ----
   3 slots: active (sharp, front), next-up (mid, blurred),
   queued (small, more blurred) — receding to the right,
   like the reference image. */
.m3-hero-image{
    padding-top: 75px;
    position:relative;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:30px;
}
.m3-image-glow{
    position:absolute;
    top:44%;
    left:35%;
    width:320px;
    height:320px;
    transform:translate(-50%,-50%);
    background:var(--accent-soft);
    filter:blur(70px);
    transition:background 1.2s ease-in-out;
    z-index:0;
}
.m3-image-carousel{
   
    position:relative;
    width:100%;
    height:420px;
}
.m3-product-img{
    position:absolute;
    top:50%;
    width:440px;
    filter:drop-shadow(0 25px 40px rgba(0,0,0,.4));
    transition:left 1s cubic-bezier(.22,.68,.35,1),
               transform 1s cubic-bezier(.22,.68,.35,1),
               opacity 1s ease-in-out,
               filter 1s ease-in-out;
}

/* slot 0 = active / front */
.m3-product-img.slot-0{
    left:34%;
    transform:translate(-50%,-50%) scale(1);
    opacity:1;
    filter:drop-shadow(0 25px 40px rgba(0,0,0,.4)) blur(0px);
    z-index:3;
}
/* slot 1 = next in line */
.m3-product-img.slot-1{
    left:74%;
    transform:translate(-50%,-46%) scale(.62);
    opacity:.55;
    filter:blur(2.5px);
    z-index:2;
}
/* slot 2 = furthest back */
.m3-product-img.slot-2{
    left:96%;
    transform:translate(-50%,-42%) scale(.42);
    opacity:.32;
    filter:blur(4px);
    z-index:1;
}

/* ---- nav arrows ---- */
.m3-hero-nav{
    position:relative;
    z-index:4;
    display:flex;
    gap:18px;
}
.m3-nav-arrow{
    margin-bottom: 40px;
    width:29px;
    height:29px;
    border-radius:50%;
    border:1px solid rgba(255,255,255,.35);
    background:rgba(255,255,255,.06);
    color:#fff;
    font-size:17px;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.3s ease;
}
.m3-nav-arrow:hover{
    background:var(--accent);
    border-color:var(--accent);
    color:#1E1E1E;
}











/* ==========================
   ABOUT M3 SPICES
========================== */

.m3-about{

    padding:120px 0;

    background:#F8F3EA;
}

.m3-about-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:80px;
}

/* IMAGE */

.m3-about-image{

    position:relative;
}

.m3-about-image img{

    width:100%;

    border-radius:30px;

    display:block;

    box-shadow:
    0 25px 60px rgba(0,0,0,.12);
}

/* ── TAG ── */
.m3-section-tag {
    margin-left: 30px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    width: fit-content;
   margin: 0 auto 20px;
    padding: 7px 20px;
    border-radius: 50px;
    background: rgba(165,42,42,0.12);
    border: 1px solid rgba(165,42,42,0.30);
    color: #c8382a;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.20em;
    text-transform: uppercase;
}
.m3-about-content,
.process-title,
.section-heading {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.m3-section-tag::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #c8382a;
    flex-shrink: 0;
}

/* ── HEADING (m3-heading) ── */
.m3-heading {
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 4.5vw, 58px);
    line-height: 1.12;
    font-weight: 700;
    color: #1F2937;
    letter-spacing: -0.02em;
    margin: 0;
}

.m3-heading span {
    display: block;
    background: linear-gradient(90deg, #7A1F1F, #A52A2A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    font-style: italic;
}

/* ── SECTION TITLE (m3-section-title) ── */
.m3-section-title {
    font-family: 'Cormorant Garamond', serif;
    text-align: center;
    font-size: clamp(36px, 4.5vw, 58px);
    line-height: 1.12;
    font-weight: 700;
    color: #1F2937;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.m3-section-title span {
    display: block;
    background: linear-gradient(90deg, #7A1F1F, #A52A2A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
}

/* TEXT */

.about-text{

    font-size:18px;

    line-height:1.9;

    color:#555;

    margin-bottom:40px;

    max-width:600px;
}

/* STATS */

.m3-about-stats{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:20px;
}

.about-stat{

    background:#fff;

    border-radius:20px;

    padding:28px 20px;

    text-align:center;

    box-shadow:
    0 12px 30px rgba(0,0,0,.06);

    transition:.35s ease;
}

.about-stat:hover{

    transform:translateY(-8px);
}

.about-stat h3{

    font-size:38px;

    color:#D4A437;

    margin-bottom:8px;
}

.about-stat span{

    font-size:14px;

    font-weight:600;

    color:#555;
}










/* ==========================
   WHY CHOOSE M3
========================== */

.why-m3{
    padding:120px 0;
    background:#ffffff;
}

/* ACCORDION */

.m3-accordion{
    display:flex;
    height:420px;
    margin-top:70px;
    border-radius:24px;
    overflow:hidden;
    border:1px solid rgba(212,164,55,.15);
    box-shadow:0 20px 50px rgba(0,0,0,.05);
}

.accordion-item{
    position:relative;
    flex:1;
    display:flex;
    flex-direction:column;
    align-items:center;
    background:#F8F3EA;
    border-right:1px solid rgba(212,164,55,.15);
    cursor:pointer;
    overflow:hidden;
    transition:flex .5s ease, background .5s ease;
}

.accordion-item:last-child{
    border-right:none;
}

.accordion-item:hover{
    flex:3.2;
    background:#FBF8F2;
}

/* ICON BADGE */

.accordion-badge{
    width:64px;
    height:64px;
    margin-top:50px;
    border-radius:50%;
    background:#EFE4C8;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    color:#D4A437;
    transition:.5s ease;
    z-index:2;
}

.accordion-item:hover .accordion-badge{
    width:84px;
    height:84px;
    margin-top:40px;
    background:linear-gradient(135deg,#f5c842,#f09a28);
    color:#fff;
}

/* COLLAPSED TITLE (vertical) */

.accordion-title{
    position:absolute;
    inset:0;
    display:flex;
    align-items:center;
    justify-content:center;
    padding-top:40px;
    z-index:1;
}

.accordion-title span{
    writing-mode:vertical-rl;
    transform:rotate(180deg);
    font-size:16px;
    font-weight:700;
    color:#2B211A;
    letter-spacing:.5px;
    white-space:nowrap;
    transition:opacity .3s ease;
}

.accordion-item:hover .accordion-title{
    opacity:0;
    pointer-events:none;
}

/* EXPANDED DETAIL */

.accordion-detail{
    position:relative;
    margin-top:24px;
    padding:0 32px;
    text-align:center;
    opacity:0;
    transform:translateY(20px);
    transition:opacity .4s ease .1s, transform .4s ease .1s;
    z-index:2;
}

.accordion-item:hover .accordion-detail{
    opacity:1;
    transform:translateY(0);
}

.accordion-detail h3{
    font-family:'Cormorant Garamond', serif;
    font-size:26px;
    font-weight:700;
    color:#2B211A;
    margin-bottom:12px;
}

.accordion-detail p{
    font-size:14px;
    line-height:1.7;
    color:#6B6255;
    max-width:280px;
    margin:0 auto;
}





/* ==========================
   M3 PRODUCT CATEGORIES
========================== */

.m3-categories{
    position:relative;
    padding:120px 0;
    overflow:hidden;
    background:linear-gradient(180deg, #F8F3EA 0%, #FFFFFF 100%);
}

/* soft depth glows, kept quiet */
.m3-categories::before,
.m3-categories::after{
    content:"";
    position:absolute;
    border-radius:50%;
    pointer-events:none;
    z-index:0;
}
.m3-categories::before{
    width:520px;
    height:520px;
    top:-220px;
    left:-160px;
    background:radial-gradient(circle, rgba(212,164,55,.10), transparent 70%);
}
.m3-categories::after{
    width:460px;
    height:460px;
    bottom:-200px;
    right:-140px;
    background:radial-gradient(circle, rgba(122,31,31,.06), transparent 70%);
}

.m3-categories .container{
    position:relative;
    z-index:1;
}

/* ---- grid ---- */
.m3-cat-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
    gap:35px;
    margin-top:70px;
}

/* ---- card ---- */
.m3-cat-card{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    border:1px solid rgba(212,164,55,.15);
    box-shadow:0 15px 45px rgba(0,0,0,.06);
    transition:transform .45s ease, box-shadow .45s ease, border-color .45s ease;
}

.m3-cat-card:hover{
    transform:translateY(-8px);
    border-color:rgba(212,164,55,.4);
    box-shadow:0 30px 60px rgba(43,33,26,.14);
}

/* ---- media area ---- */
.m3-cat-media{
    position:relative;
    height:260px;
    overflow:hidden;
}

.m3-cat-media::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(20,14,8,.55) 100%);
    opacity:0;
    transition:opacity .45s ease;
}

.m3-cat-card:hover .m3-cat-media::after{
    opacity:1;
}

.m3-cat-media img{
    width:100%;
    height:100%;
    object-fit:cover;
    filter:saturate(.92);
    transform:scale(1.02);
    transition:transform .7s ease, filter .7s ease;
}

.m3-cat-card:hover .m3-cat-media img{
    transform:scale(1.1);
    filter:saturate(1.1);
}

/* gold hairline that draws in on hover */
.m3-cat-media::before{
    content:"";
    position:absolute;
    left:0; right:0; bottom:0;
    height:3px;
    background:#D4A437;
    transform:scaleX(0);
    transform-origin:left;
    transition:transform .5s ease;
    z-index:2;
}

.m3-cat-card:hover .m3-cat-media::before{
    transform:scaleX(1);
}

/* ---- content ---- */
.m3-cat-content{
    padding:32px 30px 30px;
    text-align:center;
}

.m3-cat-tag{
    display:inline-block;
    margin:0 auto 15px;
    padding:7px 16px;
    border-radius:50px;
    background:rgba(122,31,31,.08);
    color:#7A1F1F;
    font-size:11px;
    font-weight:700;
    letter-spacing:1.5px;
    text-transform:uppercase;
}

.m3-cat-content h3{
    font-family:'Cormorant Garamond', serif;
    font-size:28px;
    font-weight:700;
    color:#2B211A;
    margin-bottom:14px;
    transition:color .35s ease;
}

.m3-cat-card:hover .m3-cat-content h3{
    color:#7A1F1F;
}

.m3-cat-content p{
    font-size:15px;
    line-height:1.8;
    color:#6B6156;
    margin-bottom:0;
}







/* ==========================
   SPICE RANGE — CAROUSEL W/ FEATURED CARD
========================== */

.spice-range{
    position:relative;
    padding:120px 0;
    background:#F8F4EE;
    overflow:hidden;
}

.spice-range .m3-about-content{
    text-align:center;
    max-width:900px;
    margin:0 auto 20px;
}

.spice-range .m3-section-tag{
    display:inline-block;
    padding:8px 20px;
    border-radius:50px;
    background:rgba(230,168,23,.12);
    border:1px solid rgba(230,168,23,.3);
    color: #c8382a;
    font-size:12px;
    font-weight:700;
    letter-spacing:2px;
    margin-bottom:20px;
}

.spice-range .m3-section-title{
    font-family:'Cormorant Garamond', serif;
    font-size:56px;
    line-height:1.15;
    font-weight:800;
    color:#1F2937;
    letter-spacing:-1px;
    margin:0 auto 10px;
}

.spice-range .m3-section-title span{
    color:#B54B1A;
    font-style:italic;
}

/* ---- carousel shell ---- */
.spice-carousel{
    position:relative;
    margin-top:70px;
}

.spice-track-wrap{
    overflow:hidden;
    padding:60px 30px 30px;
}

.spice-track{
    display:flex;
    gap:24px;
    transition:transform .7s cubic-bezier(.65,0,.35,1);
    will-change:transform;
}

/* ---- card ---- */
.spice-card{
    flex:0 0 230px;
    background:#fff;
    border-radius:24px;
    padding:28px 20px 26px;
    text-align:center;
    position:relative;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    border:1px solid rgba(0,0,0,.04);
    cursor:pointer;
    transition:transform .6s cubic-bezier(.34,1.56,.64,1),
               background .5s ease,
               box-shadow .5s ease,
               border-color .5s ease;
}

.spice-card::before{
    content:"";
    position:absolute;
    top:0; left:28px;
    width:75%;
    height:4px;
    border-radius:24px 24px 0 0;
    background:linear-gradient(90deg, #B54B1A, #E08A3A);
    transform:scaleX(0);
    transition:transform .4s ease;
}

.spice-card:hover::before{
    transform:scaleX(1);
}

/* ---- featured / active card (auto-cycled + click-triggered) ---- */
.spice-card.active{
    background:linear-gradient(160deg,#17140F 0%, #0c0c0e 100%);
    border-color:rgba(230,168,23,.4);
    transform:translateY(-32px) scale(1.14);
    box-shadow:0 40px 80px rgba(0,0,0,.4), 0 0 0 1px rgba(230,168,23,.25);
    z-index:3;
}

.spice-card.active::before{
    transform:scaleX(1);
    background:linear-gradient(90deg, #e6a817, #f4cf6b);
}

/* ---- media ---- */
.spice-card-media{
    height:150px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:16px;
}

.spice-card-media img{
    max-width:130px;
    max-height:140px;
    object-fit:contain;
    transition:transform .5s ease, filter .5s ease;
}

.spice-card.active .spice-card-media img{
    transform:scale(1.18);
    filter:drop-shadow(0 20px 26px rgba(0,0,0,.5));
}

/* ---- basic content (default state) ---- */
.spice-card-basic{ display:block; }
.spice-card.active .spice-card-basic{ display:none; }

.spice-card-basic h4{
    font-size:19px;
    font-weight:700;
    color:#1D1B18;
    margin-bottom:8px;
}

.spice-card-basic p{
    font-size:13px;
    line-height:1.6;
    color:#6B6259;
}

/* ---- featured content (active state only) ---- */
.spice-card-featured{ display:none; }
.spice-card.active .spice-card-featured{ display:block; }

.spice-card-featured h4{
    font-family:'Cormorant Garamond', serif;
    font-size:24px;
    font-weight:700;
    color:#fff;
    margin-bottom:16px;
    opacity:0;
    animation:spiceFadeUp .5s ease forwards;
    animation-delay:.1s;
}

.spice-option-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:9px 2px;
    border-bottom:1px solid rgba(255,255,255,.08);
    font-size:11px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:.5px;
    color:rgba(255,255,255,.55);
    opacity:0;
    animation:spiceFadeUp .5s ease forwards;
}

.spice-option-row:nth-child(2){ animation-delay:.2s; }
.spice-option-row:nth-child(3){ animation-delay:.3s; }
.spice-option-row:nth-child(4){ animation-delay:.4s; }

.spice-option-row .opt{
    display:flex;
    align-items:center;
    gap:4px;
    color:#e6a817;
    font-weight:700;
}

.spice-cta{
    margin-top:20px;
    width:100%;
    padding:8px;
    border:none;
    border-radius:50px;
    background:#e6a817;
    color:#151513;
    font-size:9px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
    text-decoration:none;
    cursor:pointer;
    opacity:0;
    animation:spiceFadeUp .5s ease forwards;
    animation-delay:.5s;
    transition:transform .3s ease, box-shadow .3s ease;
}

.spice-cta:hover{
    transform:translateY(-3px);
    box-shadow:0 14px 26px rgba(230,168,23,.35);
}

@keyframes spiceFadeUp{
    from{ opacity:0; transform:translateY(10px); }
    to{ opacity:1; transform:translateY(0); }
}

/* ---- arrows ---- */
.spice-arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:46px;
    height:46px;
    border-radius:50%;
    border:1px solid rgba(0,0,0,.12);
    background:#fff;
    color:#1D1B18;
    font-size:15px;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    box-shadow:0 10px 24px rgba(0,0,0,.08);
    transition:.3s ease;
    z-index:5;
}

.spice-arrow:hover{
    background:#e6a817;
    border-color:#e6a817;
    color:#151513;
    transform:translateY(-50%) scale(1.08);
}

.spice-prev{ left:-8px; }
.spice-next{ right:-8px; }












/* =============================================
   M3 SPICES — PROCESS ALTERNATING SPLIT
   Vertical gold timeline, image ↔ content
   ============================================= */
   /* ── M3 PROCESS HEAD — scoped only here ── */
.m3-process .m3-process-head {
    text-align: center;
    margin-bottom: 72px;
}

.m3-process .m3-process-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 18px;
    border-radius: 50px;
    background: rgba(212,164,55,0.10);
    border: 1px solid rgba(212,164,55,0.28);
    color: #D4A437;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.20em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.m3-process .m3-process-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 5vw, 58px);
    font-weight: 700;
    line-height: 1.12;
    color: #ffffff;
    letter-spacing: -0.02em;
    margin: 0;
}

.m3-process .m3-process-title span {
    display: block;
    background: linear-gradient(90deg, #F5D98A, #D4A437);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.m3-process {
    background: linear-gradient(150deg, #1C0E0E 0%, #3D1414 55%, #170A0A 100%);
    padding: 96px 0 80px;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

/* BG glow orbs — matches CTA */
.m3-process::before {
    content: '';
    position: absolute;
    width: 340px; height: 340px;
    top: -100px; left: 12%;
    border-radius: 50%;
    background: radial-gradient(circle,
        rgba(212,164,55,0.30), transparent 70%);
    filter: blur(90px);
    opacity: 0.6;
    pointer-events: none;
    z-index: 0;
}

.m3-process::after {
    content: '';
    position: absolute;
    width: 280px; height: 280px;
    bottom: -90px; right: 12%;
    border-radius: 50%;
    background: radial-gradient(circle,
        rgba(165,42,42,0.28), transparent 70%);
    filter: blur(90px);
    opacity: 0.6;
    pointer-events: none;
    z-index: 0;
}

.m3-process-inner {
    position: relative;
    z-index: 1;
}

.m3-process .container {
    margin-bottom: 72px;
}

/* ── STEPS WRAPPER ── */
.m3-steps {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ── VERTICAL GOLD TIMELINE LINE ── */
.m3-timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    transform: translateX(-50%);
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(200,155,30,0.60) 8%,
        rgba(200,155,30,0.60) 92%,
        transparent 100%
    );
    pointer-events: none;
}

/* ── SINGLE STEP ROW ── */
.m3-step {
    display: grid;
    grid-template-columns: 1fr 80px 1fr;
    align-items: center;
    gap: 0;
    margin-bottom: 80px;
    position: relative;
}

.m3-step:last-child { margin-bottom: 0; }

/* ── IMAGE SIDE ── */
.m3-step-image {
    padding: 0 40px;
}

.m3-step-img-wrap {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow:
        0 24px 56px rgba(0,0,0,0.45),
        0 0 0 1px rgba(200,155,30,0.12);
    transition: transform 0.36s cubic-bezier(0.22,1,0.36,1),
                box-shadow 0.36s ease;
}

.m3-step-img-wrap:hover {
    transform: translateY(-6px);
    box-shadow:
        0 32px 70px rgba(0,0,0,0.55),
        0 0 0 1px rgba(200,155,30,0.28);
}

.m3-step-img-wrap img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.50s ease;
    filter: brightness(0.88) saturate(1.05);
}

.m3-step-img-wrap:hover img {
    transform: scale(1.04);
}

/* Gold glow behind image */
.m3-step-img-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(200,155,30,0.08) 0%,
        transparent 50%
    );
    pointer-events: none;
}

/* ── TIMELINE NODE (center column) ── */
.m3-step-node {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Horizontal connector line to dot */
.m3-step-node::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg,
        rgba(200,155,30,0.50), rgba(200,155,30,0.50));
    transform: translateY(-50%);
    pointer-events: none;
}

/* Gold circle dot */
.m3-step-dot {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c8980a, #f0d060);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 0 0 6px rgba(200,155,30,0.15),
        0 0 0 12px rgba(200,155,30,0.07),
        0 8px 24px rgba(200,155,30,0.35);
    flex-shrink: 0;
    z-index: 1;
    transition: transform 0.30s ease, box-shadow 0.30s ease;
}

.m3-step:hover .m3-step-dot {
    transform: scale(1.12);
    box-shadow:
        0 0 0 8px rgba(200,155,30,0.20),
        0 0 0 16px rgba(200,155,30,0.08),
        0 12px 32px rgba(200,155,30,0.45);
}

.m3-step-dot span {
    font-size: 14px;
    font-weight: 800;
    color: #1a0e00;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.02em;
}

/* ── CONTENT SIDE ── */
.m3-step-content {
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Step label */
.m3-step-label {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.20em;
    text-transform: uppercase;
    color: #c8980a;
    opacity: 0.80;
}

/* Heading */
.m3-step-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin: 0;
    transition: color 0.26s ease;
}

.m3-step:hover .m3-step-content h3 {
    background: linear-gradient(90deg, #f0d060, #c8980a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Description */
.m3-step-content p {
    font-size: 14.5px;
    color: rgba(245,235,210,0.55);
    line-height: 1.80;
    margin: 0;
    max-width: 380px;
}

/* Tags */
.m3-step-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px;
}

.m3-step-tags span {
    font-size: 11px;
    font-weight: 600;
    color: rgba(200,155,30,0.80);
    background: rgba(200,155,30,0.08);
    border: 1px solid rgba(200,155,30,0.20);
    padding: 5px 13px;
    border-radius: 50px;
    letter-spacing: 0.02em;
    transition: background 0.22s ease, color 0.22s ease;
}

.m3-step:hover .m3-step-tags span {
    background: rgba(200,155,30,0.14);
    color: #f0d060;
    border-color: rgba(200,155,30,0.32);
}

/* ── LEFT: image left, content right ── */
.m3-step--left .m3-step-image  { order: 1; }
.m3-step--left .m3-step-node   { order: 2; }
.m3-step--left .m3-step-content { order: 3; }

/* Content left-aligned */
.m3-step--left .m3-step-content { text-align: left; }

/* ── RIGHT: content left, image right ── */
.m3-step--right .m3-step-content { order: 1; text-align: right; }
.m3-step--right .m3-step-node   { order: 2; }
.m3-step--right .m3-step-image  { order: 3; }

.m3-step--right .m3-step-tags  { justify-content: flex-end; }
.m3-step--right .m3-step-content p { margin-left: auto; }










/* =========================================
     QUALITY & CERTIFICATIONS — SPICE SEAL
     (unique namespace: spice-seal-*)
========================================== */

.spice-seal-section{
    position:relative;
    padding:120px 6%;
    background:linear-gradient(180deg, #ffffff 0%, #F8F3EA 100%);
    overflow:hidden;
}

.spice-seal-container{
    max-width:1200px;
    margin:0 auto;
}

/* HEADING */

.spice-seal-heading{
    text-align:center;
    margin-bottom:80px;
}

.spice-seal-tag{
    display:inline-flex;
    align-items:center;
    gap:8px;
    margin:0 0 16px;
    padding:8px 18px;
    border-radius:50px;
    background:rgba(122,31,31,.06);
    border:1px solid rgba(212,164,55,.3);
    color:#7A1F1F;
    font-family:'Poppins','Segoe UI',system-ui,sans-serif;
    font-size:12px;
    font-weight:700;
    letter-spacing:.6px;
    text-transform:uppercase;
}

.spice-seal-title{
    font-family:'Cormorant Garamond', serif;
    font-size:46px;
    line-height:1.2;
    font-weight:700;
    color:#2B211A;
    margin-bottom:18px;
}

.spice-seal-title span{
    display:block;
    color:#7A1F1F;
    font-style:italic;
}

.spice-seal-subtitle{
    max-width:640px;
    margin:0 auto;
    color:#6B6156;
    font-size:16px;
    line-height:1.8;
}

/* GRID */

.spice-seal-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:70px;
}

/* CARD */

.spice-seal-card{
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
    height:370px;
}

.spice-seal-shape{
    position:absolute;
    width:180px;
    height:180px;
    border-radius:34px;
    transform:rotate(-18deg);
    transition:transform .5s ease;
    z-index:1;
    animation:spiceSealRotate 8s ease-in-out infinite;
}

@keyframes spiceSealRotate{
    0%,100%{ transform:rotate(-18deg); }
    50%{ transform:rotate(-10deg); }
}

/* PER-SPICE ACCENTS */

.spice-seal-card--turmeric .spice-seal-shape{
    background:linear-gradient(135deg, #D4A437, #B5852A);
}

.spice-seal-card--chili .spice-seal-shape{
    background:linear-gradient(135deg, #7A1F1F, #A52A2A);
}

.spice-seal-card--cardamom .spice-seal-shape{
    background:linear-gradient(135deg, #4C7A4A, #6FA26B);
}

/* PLAQUE (white content panel) */

.spice-seal-plaque{
    position:relative;
    width:280px;
    background:#fff;
    border-radius:30px;
    padding:85px 28px 30px;
    text-align:center;
    z-index:2;
    box-shadow:0 20px 50px rgba(43,33,26,.1);
    border:1px solid rgba(212,164,55,.15);
    transition:transform .4s ease, box-shadow .4s ease;
    animation:spiceSealFloat 5s ease-in-out infinite;
}

@keyframes spiceSealFloat{
    0%,100%{ transform:translateY(0); }
    50%{ transform:translateY(-8px); }
}

/* MARK (logo circle) */

.spice-seal-mark{
    position:absolute;
    top:-18px;
    left:50%;
    transform:translateX(-50%);
    width:95px;
    height:95px;
    border-radius:50%;
    background:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:5;
    box-shadow:0 10px 30px rgba(43,33,26,.12);
    border:1px solid rgba(212,164,55,.2);
    transition:transform .4s ease, box-shadow .4s ease;
}

.spice-seal-mark img{
    width:68px;
    height:68px;
    object-fit:contain;
    cursor:pointer;
}

/* RATING DOTS */

.spice-seal-rating{
    display:flex;
    justify-content:center;
    gap:7px;
    margin-bottom:20px;
}

.spice-seal-rating span{
    width:10px;
    height:10px;
    border-radius:50%;
    background:#D4A437;
}

/* TITLE */

.spice-seal-plaque h3{
    font-family:'Cormorant Garamond', serif;
    font-size:26px;
    color:#2B211A;
    margin-bottom:12px;
    font-weight:700;
    transition:color .3s ease;
}

/* ORIGIN */

.spice-seal-origin{
    color:#6B6156;
    font-size:17px;
    font-style:italic;
    margin-bottom:25px;
}

/* TAGS */

.spice-seal-tags{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:10px;
}

.spice-seal-tags span{
    background:rgba(122,31,31,.06);
    color:#7A1F1F;
    padding:8px 16px;
    border-radius:20px;
    font-size:12px;
    font-weight:600;
    transition:background .3s ease, color .3s ease;
}

/* HOVER EFFECTS */

.spice-seal-card:hover .spice-seal-plaque{
    transform:translateY(-15px);
    box-shadow:0 30px 70px rgba(43,33,26,.16);
}

.spice-seal-card:hover .spice-seal-shape{
    transform:rotate(15deg) scale(1.08);
}

.spice-seal-card:hover .spice-seal-mark{
    transform:translateX(-50%) scale(1.08);
    box-shadow:0 18px 40px rgba(43,33,26,.16);
}

.spice-seal-card--turmeric:hover .spice-seal-tags span{
    background:linear-gradient(135deg, #D4A437, #B5852A);
    color:#fff;
}

.spice-seal-card--chili:hover .spice-seal-tags span{
    background:linear-gradient(135deg, #7A1F1F, #A52A2A);
    color:#fff;
}

.spice-seal-card--cardamom:hover .spice-seal-tags span{
    background:linear-gradient(135deg, #4C7A4A, #6FA26B);
    color:#fff;
}

.spice-seal-card--turmeric:hover h3{ color:#B5852A; }
.spice-seal-card--chili:hover h3{ color:#7A1F1F; }
.spice-seal-card--cardamom:hover h3{ color:#4C7A4A; }

/* IMAGE POPUP */

.spice-seal-popup{
    position:fixed;
    inset:0;
    background:rgba(28,20,15,.9);
    display:flex;
    justify-content:center;
    align-items:center;
    opacity:0;
    visibility:hidden;
    transition:opacity .35s ease, visibility .35s ease;
    z-index:9999;
}

.spice-seal-popup.show{
    opacity:1;
    visibility:visible;
}

.spice-seal-popup img{
    max-width:90%;
    max-height:85vh;
    border-radius:15px;
    background:#fff;
    padding:10px;
    box-shadow:0 25px 70px rgba(0,0,0,.4);
}

.spice-seal-popup-close{
    position:absolute;
    top:25px;
    right:35px;
    font-size:45px;
    color:#fff;
    cursor:pointer;
    transition:transform .3s ease, color .3s ease;
}

.spice-seal-popup-close:hover{
    transform:rotate(90deg);
    color:#D4A437;
}

/* RESPONSIVE */

@media(max-width:992px){

    .spice-seal-grid{
        grid-template-columns:repeat(2,1fr);
        gap:60px;
    }

}

@media(max-width:768px){

    .spice-seal-section{
        padding:80px 6%;
    }

    .spice-seal-title{
        font-size:34px;
    }

    .spice-seal-subtitle{
        font-size:15px;
    }

    .spice-seal-grid{
        grid-template-columns:1fr;
        gap:70px;
    }

    .spice-seal-plaque{
        width:270px;
        padding:80px 24px 28px;
    }

    .spice-seal-plaque h3{
        font-size:22px;
    }

    .spice-seal-mark{
        width:85px;
        height:85px;
    }

    .spice-seal-mark img{
        width:60px;
        height:60px;
    }

}

@media(max-width:480px){

    .spice-seal-title{
        font-size:28px;
    }

    .spice-seal-plaque{
        width:240px;
    }

    .spice-seal-shape{
        width:160px;
        height:160px;
    }

    .spice-seal-tags{
        gap:8px;
    }

    .spice-seal-tags span{
        font-size:11px;
        padding:7px 12px;
    }

}

/* ACCESSIBILITY */

@media (prefers-reduced-motion:reduce){

    .spice-seal-plaque,
    .spice-seal-shape,
    .spice-seal-mark{
        animation:none;
        transition:none;
    }

}













/* ==========================
   PACKAGING SOLUTIONS — STACKED DEPTH CARDS
========================== */
/* ==========================
   PACKAGING SOLUTIONS — HEADING
========================== */

/* ==========================
   PACKAGING SOLUTIONS — HEADING
========================== */

.pkg-heading {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.pkg-tag {
        display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 18px;
    border-radius: 50px;
    background: rgba(212, 164, 55, 0.1);
    border: 1px solid rgba(212, 164, 55, 0.28);
    color: rgb(212, 164, 55);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.pkg-title {
        font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 5vw, 58px);
    font-weight: 700;
    line-height: 1.12;
    color: #ffffff;
    letter-spacing: -0.02em;
    margin: 0;
}
.pkg-title span {
    color: #e6a817;
    font-style: italic;
}

@media (max-width: 768px) {
    .pkg-title {
        font-size: 32px;
    }
    .pkg-tag {
        font-size: 12px;
        letter-spacing: 2px;
    }
}

.packaging-section {
    padding-top: 20px;
    padding-bottom: 20px;
    background: linear-gradient(180deg, #332616 0%, #221a10 50%, #150f0a 100%);
}
.depth-grid {
    margin-top: 90px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.depth-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* LAYER STACK */

.depth-layers {
    position: relative;
    width: 100%;
    max-width: 220px;
    height: 220px;
    margin-bottom: 30px;
}

.layer {
    position: absolute;
    inset: 0;
    border-radius: 18px;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.5s ease;
}

/* back layer — solid tint panel */
.layer-back {
    background: rgba(230, 168, 23, 0.06);
    transform: translate(10px, 14px);
}

/* mid layer — gold-outlined frame */
.layer-mid {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(230, 168, 23, 0.35);
    transform: translate(5px, 7px);
}

/* front layer — product image, sits on top */
.layer-front {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(230, 168, 23, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 18px 26px rgba(0, 0, 0, 0.45);
    transform: translate(0, 0);
    z-index: 2;
}

.layer-front img {
    max-width: 94%;
    filter: drop-shadow(0 12px 14px rgba(0, 0, 0, 0.5));
    transition: transform 0.5s ease;
}

/* HOVER — layers separate further apart, then card settles */

.depth-card:hover .layer-back {
    transform: translate(16px, 22px);
}

.depth-card:hover .layer-mid {
    transform: translate(8px, 12px);
    border-color: rgba(230, 168, 23, 0.55);
}

.depth-card:hover .layer-front {
    transform: translate(-4px, -6px);
    box-shadow: 0 24px 32px rgba(0, 0, 0, 0.5);
}

.depth-card:hover .layer-front img {
    transform: scale(1.05);
}

/* BODY */

.depth-num {
    display: inline-block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 15px;
    letter-spacing: 2px;
    color: #e6a817;
    margin-bottom: 10px;
}

.depth-body h3 {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #f5f5f5;
    margin: 0 0 10px;
}

.depth-body p {
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    line-height: 1.7;
    color: rgba(245, 245, 245, 0.6);
    margin: 0;
    max-width: 220px;
}





















/* ==========================
   INDUSTRIES WE SERVE
========================== */

.m3-industries{

    padding:50px 0;
    padding-left: 20px;
    padding-right: 20px;

    background:
    linear-gradient(
    rgba(122,31,31,.92),
    rgba(90,18,18,.95)),
    url("images/m3spices/spices-bg.webp")
    center/cover no-repeat;

    position:relative;
}

/* ==========================
   HEADING AREA
========================== */

.industries-content{
    text-align: center;

    text-align:center;

    max-width:900px;

    margin:0 auto 70px;
}

.industries-content .m3-section-tag{

    color:#E0B44C;
}

.industries-content .m3-section-title{

    text-align:center;

    color:#F8F3EA;

    margin:20px auto 25px;
}

.industries-content .m3-section-title span{

    color:#F0C75E;
}

.industries-content .m3-section-title::after{

    content:"";

    display:block;

    width:90px;

    height:4px;

    background:#E0B44C;

    border-radius:20px;

    margin:25px auto 0;
}

.industries-content p{

    color:rgba(248,243,234,.82);

    line-height:1.9;

    font-size:16px;

    max-width:700px;

    margin:0 auto;
}

/* ==========================
   HIGHLIGHT BOX
========================== */

.industry-highlight{

    max-width:550px;

    margin:35px auto 0;

    background:rgba(255,255,255,.10);

    backdrop-filter:blur(16px);

    border:1px solid rgba(224,180,76,.25);

    border-radius:24px;

    padding:30px;
}

.industry-highlight h3{

    color:#F0C75E;

    font-size:32px;

    margin-bottom:12px;
}

.industry-highlight p{

    margin:0;
}

/* ==========================
   GRID
========================== */

.industries-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:25px;
}

/* ==========================
   CARD
========================== */

.industry-card{

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(15px);

    border:1px solid rgba(224,180,76,.18);

    border-radius:26px;

    padding:35px 30px;

    transition:.4s ease;
}

.industry-card:hover{

    transform:translateY(-10px);

    background:rgba(255,255,255,.16);

    border-color:#E0B44C;

    box-shadow:
    0 20px 45px rgba(0,0,0,.18);
}

/* NUMBER */

.industry-card span{
    padding-left: 199px;
    align-items: center;

    font-size:13px;

    font-weight:700;

    color:#E0B44C;

    letter-spacing:3px;

    text-transform:uppercase;
}

/* TITLE */

.industry-card h4{
    text-align: center;

    color:#F6E7C8;

    font-size:24px;

    margin:16px 0 12px;

    font-weight:700;
}

/* TEXT */

.industry-card p{
    text-align: center;

    color:rgba(248,243,234,.75);

    line-height:1.7;

    margin:0;
}

/* ==========================
   TABLET
========================== */

@media(max-width:991px){

    .industries-grid{

        grid-template-columns:repeat(2,1fr);
    }
}

/* ==========================
   MOBILE
========================== */

@media(max-width:768px){

    .m3-industries{

        padding:80px 0;
    }

    .industries-grid{

        grid-template-columns:1fr;
    }

    .industry-card{

        padding:28px;
    }

    .industry-card h4{

        font-size:22px;
    }

    .industry-highlight{

        padding:25px;
    }

    .industry-highlight h3{

        font-size:26px;
    }

    .industries-content{

        margin-bottom:50px;
    }
}

/* ==========================
   GLOBAL PRESENCE
========================== */

.m3-global{

    padding:120px 0;

    background:
    linear-gradient(
    180deg,
    #F8F3EA 0%,
    #FFFFFF 100%);
}

/* MAP */

.global-map-wrap{

    text-align:center;

    margin:60px 0 70px;
}

.global-map-wrap img{

    width:100%;

    max-width:900px;

    opacity:.95;

    transition:.5s ease;
}

.global-map-wrap:hover img{

    transform:scale(1.02);
}

/* MARKETS GRID */

.global-markets-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:25px;

    margin-bottom:70px;
}

/* CARD */

.global-market-card{

    background:#fff;

    padding:35px;

    border-radius:24px;

    text-align:center;

    border:1px solid rgba(212,164,55,.15);

    box-shadow:
    0 15px 40px rgba(0,0,0,.05);

    transition:.4s ease;
}

.global-market-card:hover{

    transform:translateY(-8px);

    border-color:#D4A437;

    box-shadow:
    0 25px 55px rgba(0,0,0,.10);
}

.global-market-card span{

    display:inline-block;

    font-size:12px;

    font-weight:700;

    letter-spacing:2px;

    color:#D4A437;

    margin-bottom:15px;
}

.global-market-card h3{

    font-size:24px;

    color:#7A1F1F;

    margin-bottom:10px;
}

.global-market-card p{

    color:#666;

    margin:0;

    font-size:15px;
}

/* STATS */

.global-stats{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;
}

.global-stat{

    text-align:center;

    padding:35px 20px;

    background:#fff;

    border-radius:24px;

    border:1px solid rgba(212,164,55,.12);

    box-shadow:
    0 10px 30px rgba(0,0,0,.04);
}

.global-stat h3{

    font-size:48px;

    color:#D4A437;

    margin-bottom:10px;

    line-height:1;
}

.global-stat span{

    color:#555;

    font-weight:500;
}

/* TABLET */

@media(max-width:991px){

    .global-markets-grid{

        grid-template-columns:repeat(2,1fr);
    }

    .global-stats{

        grid-template-columns:repeat(2,1fr);
    }
}

/* MOBILE */

@media(max-width:768px){

    .m3-global{

        padding:80px 0;
    }

    .global-map-wrap{

        margin:40px 0 50px;
    }

    .global-markets-grid{

        grid-template-columns:1fr;
    }

    .global-stats{

        grid-template-columns:1fr;
    }

    .global-market-card{

        padding:28px;
    }

    .global-stat h3{

        font-size:40px;
    }
}


/* ==========================
   FAQ
========================== */


.m3-faq-section{
    padding:120px 0;
    background:#F8F4EE;
}

.m3-faq-container{
    max-width:950px;
    margin:70px auto 0;
}

.m3-faq-item{
    background:#fff;

    margin-bottom:18px;

    border-radius:20px;

    overflow:hidden;

    box-shadow:
    0 10px 25px rgba(0,0,0,.04);
}

.m3-faq-question{
    padding:28px 30px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    cursor:pointer;
}

.m3-faq-question h3{
    font-size:20px;
    color:#1D1B18;
}

.m3-faq-question span{
    font-size:28px;
    color:#C26B2D;
    transition:.3s;
}

.m3-faq-answer{
    max-height:0;
    overflow:hidden;

    transition:max-height .4s ease;
}

.m3-faq-answer p{
    padding:0 30px 25px;
    color:#6B6259;
    line-height:1.8;
}

.m3-faq-item.active .m3-faq-answer{
    max-height:250px;
}

.m3-faq-item.active .m3-faq-question span{
    transform:rotate(45deg);
}









/* ==========================
   M3 SPICES — CTA SECTION
   Dark maroon + gold theme, matching the brand
========================== */
/* ==========================
   M3 CTA SECTION — TAG + HEADING
   (matches pkg-tag / pkg-title style)
========================== */

.m3-cta-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 18px;
    border-radius: 50px;
    background: rgba(212, 164, 55, 0.1);
    border: 1px solid rgba(212, 164, 55, 0.28);
    color: rgb(212, 164, 55);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.m3-cta-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 5vw, 58px);
    font-weight: 700;
    line-height: 1.12;
    color: #ffffff;
    letter-spacing: -0.02em;
    margin: 0;
}
.m3-cta-heading span {
    color: #e6a817;
    font-style: italic;
}

@media (max-width: 768px) {
    .m3-cta-heading {
        font-size: 32px;
    }
    .m3-cta-tag {
        font-size: 12px;
        letter-spacing: 2px;
    }
}

.m3-cta-section{
    position:relative;
    padding:100px 8%;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;

    overflow:hidden;
    isolation:isolate;

    background:linear-gradient(150deg,#1C0E0E 0%,#3D1414 55%,#170A0A 100%);
}

/* BACKGROUND GLOW — warm gold + maroon bokeh */

.m3-cta-bg{
    position:absolute;
    inset:0;
    z-index:0;
    pointer-events:none;
}

.m3-cta-glow{
    position:absolute;
    border-radius:50%;
    filter:blur(90px);
    opacity:.6;
}

.m3-cta-glow--a{
    width:340px;
    height:340px;
    top:-100px;
    left:12%;
    background:radial-gradient(circle,rgba(212,164,55,.3),transparent 70%);
}

.m3-cta-glow--b{
    width:280px;
    height:280px;
    bottom:-90px;
    right:12%;
    background:radial-gradient(circle,rgba(165,42,42,.28),transparent 70%);
}

/* CONTENT */

.m3-cta-inner{
    position:relative;
    z-index:1;
    max-width:640px;
}

.m3-cta-heading{
    font-family:'Cormorant Garamond',serif;
    font-size:clamp(1.8rem,3.6vw,2.8rem);
    font-weight:700;
    line-height:1.25;
    color:#ffffff;
    margin:0 0 16px;
}

.m3-cta-sub{
    font-family:'Poppins',sans-serif;
    font-size:16px;
    line-height:1.8;
    color:rgba(255,255,255,.68);
    margin:0 0 34px;
}

/* CTA BUTTON — gold gradient */

.m3-cta-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;

    padding:10px 36px;
    border-radius:60px;

    background:linear-gradient(135deg,#F5D98A,#D4A437);
    color:#3B2604;

    font-family:'Poppins',sans-serif;
    font-weight:700;
    font-size:15px;
    text-decoration:none;

    box-shadow:0 12px 28px rgba(212,164,55,.35);
    transition:transform .35s,box-shadow .35s;
}

.m3-cta-btn:hover{
    transform:translateY(-4px);
    box-shadow:0 18px 38px rgba(212,164,55,.45);
}

.m3-cta-btn svg{
    transition:transform .3s;
}

.m3-cta-btn:hover svg{
    transform:translateX(4px);
}

.m3-cta-btn:active{
    transform:scale(.97);
}

.m3-cta-btn:focus-visible{
    outline:2px solid #D4A437;
    outline-offset:3px;
}

/* RESPONSIVE */

@media(max-width:768px){
    .m3-cta-section{
        padding:80px 24px;
    }
}










/* =============================================
   M3 SPICES — FOOTER
   Dark maroon + gold glassy theme, matching the brand
   ============================================= */

/* ── FOOTER WRAPPER ── */
.m3-footer{
    position:relative;
    background:linear-gradient(135deg,#1C0E0E 0%,#3D1414 50%,#170A0A 100%);
    border-top:1px solid rgba(212,164,55,.18);
    overflow:hidden;
}

/* Glow shimmer layer, same language as the CTA's bokeh */
.m3-footer::before{
    content:'';
    position:absolute;
    inset:0;
    background:
        radial-gradient(ellipse at 20% 50%,rgba(212,164,55,.1) 0%,transparent 60%),
        radial-gradient(ellipse at 80% 20%,rgba(165,42,42,.08) 0%,transparent 50%);
    pointer-events:none;
}

/* Dot grid texture */
.m3-footer::after{
    content:'';
    position:absolute;
    inset:0;
    background-image:radial-gradient(circle,rgba(255,255,255,.03) 1px,transparent 1px);
    background-size:24px 24px;
    pointer-events:none;
}

/* ── INNER ── */
.m3-footer-inner{
    position:relative;
    z-index:1;
    max-width:1160px;
    margin:0 auto;
    padding:0 32px;
}

/* ── TOP ROW ── */
.m3-footer-top{
    display:grid;
    grid-template-columns:280px 1fr;
    gap:64px;
    align-items:start;
    padding:56px 0 44px;
    border-bottom:1px solid rgba(212,164,55,.12);
}

/* ── BRAND ── */
.m3-footer-brand{
    display:flex;
    flex-direction:column;
    gap:16px;
}

.m3-footer-brand img{
    height:160px;
    width:auto;
    object-fit:contain;
    object-position:left center;
    filter:brightness(0) invert(1);
    opacity:.92;
}

.m3-footer-brand p{
    font-family:'Poppins',sans-serif;
    font-size:13px;
    color:rgba(255,255,255,.4);
    line-height:1.75;
    max-width:240px;
}

/* ── NAV GROUP ── */
.m3-footer-nav{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:32px;
}

/* ── COLUMN ── */
.m3-footer-col{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.m3-footer-col h4{
    font-family:'Poppins',sans-serif;
    font-size:10.5px;
    font-weight:700;
    letter-spacing:.18em;
    text-transform:uppercase;
    color:#D4A437;
    margin-bottom:6px;
    padding-bottom:10px;
    border-bottom:1px solid rgba(212,164,55,.15);
}

.m3-footer-col a,
.m3-footer-col span{
    font-family:'Poppins',sans-serif;
    font-size:13px;
    font-weight:400;
    color:rgba(255,255,255,.5);
    text-decoration:none;
    display:flex;
    align-items:center;
    gap:8px;
    transition:color .18s ease,padding-left .18s ease;
}

.m3-footer-col a:hover{
    color:#D4A437;
    padding-left:4px;
}

.m3-footer-col i{
    font-size:11px;
    color:#D4A437;
    flex-shrink:0;
    width:14px;
    text-align:center;
}

/* ── BOTTOM ROW ── */
.m3-footer-bottom{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:16px 0;
    gap:16px;
}

.m3-footer-bottom p{
    font-family:'Poppins',sans-serif;
    font-size:12px;
    color:rgba(255,255,255,.2);
}

.m3-footer-bottom__links{
    display:flex;
    align-items:center;
    gap:12px;
}

.m3-footer-bottom__links a{
    font-family:'Poppins',sans-serif;
    font-size:12px;
    color:rgba(255,255,255,.2);
    text-decoration:none;
    transition:color .18s ease;
}

.m3-footer-bottom__links a:hover{
    color:rgba(255,255,255,.55);
}

.m3-footer-bottom__links span{
    font-size:14px;
    color:rgba(255,255,255,.1);
}

/* ── RESPONSIVE ── */
@media(max-width:860px){
    .m3-footer-top{
        grid-template-columns:1fr;
        gap:40px;
        padding:44px 0 36px;
    }

    .m3-footer-brand img{ height:44px; }
    .m3-footer-brand p{ max-width:100%; }
    .m3-footer-nav{ grid-template-columns:repeat(3,1fr); gap:24px; }
}

@media(max-width:560px){
    .m3-footer-nav{ grid-template-columns:1fr 1fr; }

    .m3-footer-bottom{
        flex-direction:column;
        align-items:flex-start;
        gap:8px;
    }
}

@media(max-width:380px){
    .m3-footer-nav{ grid-template-columns:1fr; }
}







/* =========================
   NAVBAR
========================= */

.navbar{
  position:fixed;
  top:3px;
  left:50%;
  transform:translateX(-50%);
  width:92%;
  height:85px;
  background:rgba(255,255,255,0.88);
  backdrop-filter:blur(12px);
  border-radius:22px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 35px;
  z-index:999;
  box-shadow:0 10px 40px rgba(0,0,0,0.08);
}

.logo img{
  height:105px;
}

.nav-links{
  display:flex;
  gap:38px;
}

.nav-links a{
  text-decoration:none;
  color:#111;
  font-size:15px;
  font-weight:500;
  transition:0.3s;
}

.nav-links a:hover{
  color:#b68b2d;
}

.nav-btn{
  background:#08210f;
  color:white;
  text-decoration:none;
  padding:14px 28px;
  border-radius:12px;
  transition:0.3s;
  font-size:14px;
}

.nav-btn:hover{
  background:#b68b2d;
}

.menu-btn{
  display:none;
}


/* =========================
   NAVBAR - RESPONSIVE
========================= */

@media (max-width: 1024px){
  .navbar{
    padding:0 25px;
  }

  .nav-links{
    gap:22px;
  }

  .nav-links a{
    font-size:14px;
  }

  .nav-btn{
    padding:12px 20px;
    font-size:13px;
  }
}

@media (max-width: 860px){
  .navbar{
    height:70px;
    padding:0 20px;
  }

  .logo img{
    height:92px;
  }

  .nav-links{
    position:fixed;
    top:85px;
    left:50%;
    transform:translateX(-50%);
    width:92%;
    background:rgba(255,255,255,0.97);
    backdrop-filter:blur(12px);
    border-radius:18px;
    flex-direction:column;
    align-items:center;
    gap:0;
    max-height:0;
    overflow:hidden;
    transition:max-height 0.35s ease;
    box-shadow:0 10px 40px rgba(0,0,0,0.08);
    z-index:998;
  }

  .nav-links.active{
    max-height:400px;
    padding:20px 0;
  }

  .nav-links a{
    width:100%;
    text-align:center;
    padding:14px 0;
    font-size:16px;
  }

  .nav-btn{
    display:none;
  }

  .menu-btn{
    display:block;
    background:none;
    border:none;
    font-size:32px;
    cursor:pointer;
    color:#111;
    line-height:1;
  }
}

@media (max-width: 480px){
  .navbar{
    width:92%;
    height:70px;
    padding:0 15px;
    border-radius:16px;
  }

  .logo img{
    height:92px;
  }

  .nav-links{
    top:78px;
    width:94%;
  }

  .nav-links a{
    font-size:15px;
  }
}







/* ==========================
   RESPONSIVE — M3 HERO
========================== */

@media (max-width: 991px) {

    .m3-hero{
        padding:32px 0 40px;
        min-height:auto;
    }

    .m3-watermark{
        font-size:14px;
        top:14px;
        right:20px;
    }

    /* flatten content wrapper so tag/h1/p/buttons become direct
       grid items of .m3-hero-inner, letting us reorder the image
       block in between via `order` — same trick as the other hero */
    .m3-hero-content{
        display:contents;
    }

    .m3-hero .container,
    .m3-hero-inner{
        grid-template-columns:1fr;
        gap:0;
        padding:55px 16px;
        text-align:center;
    }

    /* order: tag -> header -> paragraph -> image -> buttons.
       tag uses justify-self:start to pin it to the left edge even
       though the rest of the container is centered */
    .m3-hero-content .hero-tag{
        order:1;
        display:inline-block;
        justify-self:start;
        margin:0 0 14px;
        text-align:left;
        padding:5px 14px;
        font-size:9px;
        letter-spacing:1px;
    }

    .m3-hero-content h1{
        order:2;
        padding-left:0;
        font-size:clamp(28px,8vw,38px);
        line-height:1.15;
        margin-bottom:10px;
    }

    .m3-hero-content p{
        order:5;
        padding-left:0;
        font-size:12.5px;
        line-height:1.6;
        max-width:420px;
        margin:40px auto -12px;

    }

    .m3-hero-image{
        order:4;
        padding-top:0;
        gap:14px;
        margin-bottom:18px;
    }

    .m3-image-carousel{
        height:220px;
    }

    .m3-product-img{
        width:220px;
    }

    .m3-image-glow{
        width:180px;
        height:180px;
        filter:blur(45px);
    }

    .m3-hero-content .hero-buttons{
        order:5;
        padding-left:0;
        justify-content:center;
        gap:10px;
        flex-wrap:wrap;
    }

    .hero-btn{
        padding:10px 20px;
        font-size:12px;
    }

    .m3-hero-nav{
        justify-content:center;
        margin:14px auto 0;
    }

    .m3-nav-arrow{
        width:26px;
        height:26px;
        font-size:13px;
        margin-bottom:0;
    }
}

@media (max-width: 600px) {

    .m3-hero{
        padding:24px 0 30px;
    }

    .m3-hero .container,
    .m3-hero-inner{
        padding:70px 16px;
    }

    .m3-hero-content .hero-tag{
        font-size:8px;
        padding:4px 12px;
    }

    .m3-hero-content h1{
        font-size:clamp(29px,7.5vw,30px);
    }

    .m3-hero-content p{
        font-size:11.5px;
    }

    .m3-image-carousel{
        height:170px;
    }

    .m3-product-img{
        padding-top: 50px;
        width:200px;
    }

    .m3-image-glow{
        width:140px;
        height:140px;
        filter:blur(36px);
    }

    .hero-btn{
        margin-top: 30px;
        margin-bottom: -30px;
        padding:9px 16px;
        font-size:11px;
    }

    .m3-nav-arrow{
        width:22px;
        height:22px;
        font-size:11px;
    }
}










/* TABLET */

@media(max-width:991px){

    .m3-about{
        padding:36px 0;
    }

    .m3-about .container{
        padding:0 20px;
    }

    /* flatten content wrapper so its children become direct grid
       items, letting us reorder the image in between via `order` —
       same trick used in the hero sections */
    .m3-about-content{
        display:contents;
    }

    .m3-about-grid{
        grid-template-columns:1fr;
        gap:0;
    }

    /* order: tag -> header -> image -> paragraph -> stats */
    .m3-about-content .m3-section-tag{
        order:1;
        margin:0 auto 10px;
        font-size:9px;
        padding:5px 12px;
    }

    .m3-about-content .m3-section-title{
        order:2;
        font-size:clamp(22px,6vw,30px);
        line-height:1.15;
        margin-bottom:18px;
    }

    .m3-about-image{
        order:3;
        margin-bottom:18px;
    }

    .m3-about-image img{
        border-radius:16px;
    }

    .m3-about-content .about-text{
        order:4;
        text-align:justify;
        text-align-last:center;
        text-indent:1.4em;
        margin:0 auto 20px;
        font-size:14.5px;
        line-height:1.8;
        max-width:480px;
    }

    .m3-about-content .m3-about-stats{
        order:5;
        grid-template-columns:repeat(3,1fr);
        gap:8px;
    }

    .about-stat{
        padding:14px 6px;
        border-radius:12px;
    }

    .about-stat h3{
        font-size:18px;
        margin-bottom:2px;
    }

    .about-stat span{
        font-size:9px;
        line-height:1.3;
    }
}

/* MOBILE */

@media(max-width:600px){

    .m3-about{
        padding:24px 0;
    }

    .m3-about .container{
        padding:0 16px;
    }

    .m3-about-content .m3-section-tag{
        font-size:8px;
        padding:4px 10px;
    }

    .m3-about-content .m3-section-title{
        font-size: 32px;
        margin-bottom:14px;
    }

    .m3-about-image{
        margin-bottom:14px;
    }

    .m3-about-image img{
        border-radius:12px;
    }

    .m3-about-content .about-text{
        text-align:justify;
        text-align-last:center;
        font-size:13.5px;
        line-height:1.7;
        margin-bottom:16px;
    }

    .m3-about-content .m3-about-stats{
        gap:6px;
    }

    .about-stat{
        padding:10px 4px;
        border-radius:10px;
    }

    .about-stat h3{
        font-size:15px;
    }

    .about-stat span{
        font-size:7.5px;
    }
}









/* TABLET */

@media(max-width:991px){

    .why-m3{
        padding:36px 0;
    }

    .why-m3 .container{
        padding:0 20px;
    }

    .why-m3 .m3-about-content{
        display:flex;
        flex-direction:column;
        align-items:center;
        text-align:center;
    }

    .why-m3 .m3-section-tag{
        justify-self:auto;
        margin:0 auto 10px;
    }

    .m3-accordion{
        height:auto;
        flex-direction:column;
        margin-top:24px;
        border-radius:16px;
    }

    .accordion-item{
        flex:none !important;
        flex-direction:row;
        align-items:center;
        height:56px;
        border-right:none;
        border-bottom:1px solid rgba(212,164,55,.15);
    }

    .accordion-item:last-child{
        border-bottom:none;
    }

    .accordion-item:hover{
        height:150px;
    }

    .accordion-badge{
        position:absolute;
        top:50%;
        left:16px;
        transform:translateY(-50%);
        margin-top:0;
        width:32px;
        height:32px;
        font-size:13px;
    }

    .accordion-item:hover .accordion-badge{
        top:14px;
        left:16px;
        transform:none;
        width:44px;
        height:44px;
        font-size:16px;
    }

    .accordion-title{
        padding-top:0;
        padding-left:60px;
        justify-content:flex-start;
    }

    .accordion-title span{
        writing-mode:horizontal-tb;
        transform:none;
        font-size:11px;
    }

    .accordion-detail{
        position:absolute;
        margin-top:0;
        left:16px;
        right:16px;
        bottom:14px;
        padding:0;
        text-align:left;
    }

    .accordion-detail h3{
        font-size:14px;
        margin-bottom:4px;
    }

    .accordion-detail p{
        font-size:10px;
        line-height:1.5;
        max-width:100%;
        margin:0;
    }
}

/* MOBILE */

@media(max-width:600px){

    .why-m3{
        padding:24px 0;
    }

    .why-m3 .container{
        padding:0 16px;
    }

    .m3-accordion{
        margin-top:18px;
        border-radius:12px;
    }

    .accordion-item{
        height:48px;
    }

    .accordion-item:hover{
        height:130px;
    }

    .accordion-badge{
        left:12px;
        width:26px;
        height:26px;
        font-size:11px;
    }

    .accordion-item:hover .accordion-badge{
        top: -20px;
        left:12px;
        width:38px;
        height:38px;
        font-size:14px;
    }

    .accordion-title{
        padding-left:48px;
    }

    .accordion-title span{
        font-size:10px;
    }

    .accordion-detail{
        left:12px;
        right:12px;
        bottom:10px;
    }

    .accordion-detail h3{
        font-size:12.5px;
    }

    .accordion-detail p{
        font-size:9px;
    }
}







/* ---- tablet ---- */
@media(max-width:991px){

    .m3-categories{
        padding:36px 0;
    }

    .m3-categories .container{
        padding:0 20px;
    }

    .m3-categories .m3-about-content{
        display:flex;
        flex-direction:column;
        align-items:center;
        text-align:center;
    }

    .m3-categories .m3-section-tag{
        justify-self:auto;
        margin:0 auto 10px;
    }

    .m3-cat-grid{
        grid-template-columns:repeat(2, 1fr);
        gap:16px;
        margin-top:24px;
    }

    .m3-cat-card{
        border-radius:16px;
    }

    .m3-cat-media{
        height:150px;
    }

    .m3-cat-content{
        padding:14px 12px 16px;
    }

    .m3-cat-tag{
        font-size:8px;
        padding:4px 10px;
        margin-bottom:8px;
    }

    .m3-cat-content h3{
        font-size:15px;
        margin-bottom:6px;
    }

    .m3-cat-content p{
        font-size:10.5px;
        line-height:1.55;
    }
}

/* ---- mobile ---- */
@media(max-width:600px){

    .m3-categories{
        padding:24px 0;
    }

    .m3-categories .container{
        padding:0 16px;
    }

    .m3-cat-grid{
        gap:10px;
        margin-top:18px;
    }

    .m3-cat-card{
        border-radius:12px;
    }

    .m3-cat-media{
        height:150px;
    }

    .m3-cat-content{
        padding:10px 8px 12px;
    }

    .m3-cat-tag{
        font-size:7px;
        padding:3px 8px;
        margin-bottom:6px;
    }

    .m3-cat-content h3{
        font-size:12.5px;
        margin-bottom:4px;
    }

    .m3-cat-content p{
        font-size:9px;
        line-height:1.45;
    }
}








/* ---- tablet ---- */
@media(max-width:992px){

    .spice-range{
        padding:36px 0;
    }

    .spice-range .container{
        padding:0 20px;
    }

    .spice-range .m3-about-content{
        display:flex;
        flex-direction:column;
        align-items:center;
        text-align:center;
        margin:0 auto 10px;
    }

    .spice-range .m3-section-tag{
        display:inline-block;
        justify-self:auto;
        margin:0 auto 10px;
        font-size:9px;
        padding:5px 12px;
        letter-spacing:1px;
    }

    .spice-range .m3-section-title{
        font-size:clamp(22px,6vw,30px);
        margin-bottom:0;
    }

    .spice-carousel{
        margin-top:24px;
    }

    .spice-card{ flex-basis:200px; }
    .spice-card-media{ height:130px; }
    .spice-card-media img{ max-width:110px; max-height:120px; }
}

/* ---- mobile ---- */
@media(max-width:768px){

    .spice-range{ padding:24px 0; }

    .spice-range .container{
        padding:0 16px;
    }

    .spice-range .m3-section-tag{
        font-size:8px;
        padding:4px 10px;
    }

    .spice-range .m3-section-title{
        font-size:clamp(19px,6.5vw,24px);
    }

    .spice-track-wrap{ padding:40px 8px 16px; }

    .spice-card{
        flex-basis:150px;
        padding:16px 12px 16px;
        border-radius:16px;
    }

    .spice-card-basic h4{ font-size:13px; margin-bottom:4px; }
    .spice-card-basic p{ font-size:10px; line-height:1.5; }

    .spice-card-media{ height:85px; margin-bottom:8px; }

    .spice-card-media img{ max-width:70px; max-height:80px; }

    .spice-card.active{
        transform:translateY(-18px) scale(1.08);
    }

    .spice-card-featured h4{ font-size:16px; margin-bottom:8px; }

    .spice-option-row{
        padding:6px 2px;
        font-size:8.5px;
    }

    .spice-cta{
        margin-top:12px;
        padding:9px;
        font-size:9px;
    }

    .spice-arrow{ width:30px; height:30px; font-size:11px; }

    .spice-prev{ left:-2px; }
    .spice-next{ right:-2px; }
}






/* ── RESPONSIVE ── */

@media (max-width: 991px) {

    .m3-process{
        padding:36px 0 40px;
    }

    .m3-process .container{
        margin-bottom:32px;
        padding:0 20px;
    }

    .m3-process .m3-process-head{
        margin-bottom:0;
        text-align:center;
    }

    /* HTML uses .pkg-tag / .pkg-title, not the .m3-process-tag /
       .m3-process-title your base CSS defines — targeting the real
       classes here so sizing actually applies */
    .m3-process .pkg-tag{
        display:inline-flex;
        margin:0 auto 10px;
        font-size:9px;
        padding:5px 12px;
        letter-spacing:1px;
    }

    .m3-process .pkg-title{
        font-size:clamp(22px,6vw,30px);
        line-height:1.15;
        margin:0;
    }
}

@media (max-width: 860px) {

    .m3-steps{ padding:0 12px; }

    /* keep the desktop two-column zigzag — image on one side,
       content on the other, timeline centered — just shrink the
       node/gutter width and every piece of content to fit */
    .m3-step{
        grid-template-columns: 1fr 40px 1fr;
        margin-bottom: 36px;
    }

    .m3-step-image{ padding:0 12px; }

    .m3-step-img-wrap{ border-radius:14px; }
    .m3-step-img-wrap img{ height:130px; }

    .m3-step-dot{
        width:32px;
        height:32px;
        box-shadow:
            0 0 0 4px rgba(200,155,30,0.15),
            0 0 0 8px rgba(200,155,30,0.07),
            0 6px 16px rgba(200,155,30,0.35);
    }

    .m3-step-dot span{ font-size:9px; }

    .m3-step-content{
        padding:0 12px;
        gap:6px;
    }

    .m3-step-label{ font-size:7.5px; letter-spacing:0.14em; }

    .m3-step-content h3{
        font-size:13px;
        line-height:1.2;
    }

    .m3-step-content p{
        font-size:9.5px;
        line-height:1.5;
        max-width:100%;
    }

    .m3-step-tags{
        gap:4px;
        margin-top:2px;
    }

    .m3-step-tags span{
        font-size:7px;
        padding:3px 7px;
    }
}

@media (max-width: 480px) {

    .m3-process { padding: 24px 4% 28px; }

    .m3-process .pkg-tag{
        font-size:8px;
        padding:4px 10px;
    }

    .m3-process .pkg-title{
        font-size:clamp(19px,6.5vw,24px);
    }

    .m3-steps{ padding:0 6px; }

    .m3-step{
        grid-template-columns: 1fr 30px 1fr;
        margin-bottom: 26px;
    }

    .m3-step-image{ padding:0 8px; }
    .m3-step-img-wrap{ border-radius:10px; }
    .m3-step-img-wrap img{ height:95px; }

    .m3-step-dot{ width:24px; height:24px; }
    .m3-step-dot span{ font-size:7.5px; }

    .m3-step-content{ padding:0 8px; gap:4px; }
    .m3-step-label{ font-size:6.5px; }
    .m3-step-content h3{ font-size:11px; }
    .m3-step-content p{ font-size:8px; line-height:1.4; }
    .m3-step-tags span{ font-size:6px; padding:2px 5px; }
}












/* RESPONSIVE */

@media(max-width:991px){

    .spice-seal-section{
        padding:36px 5%;
    }

    .spice-seal-heading{
        margin-bottom:32px;
    }

    .spice-seal-tag{
        font-size:9px;
        padding:5px 12px;
        margin-bottom:10px;
    }

    .spice-seal-title{
        font-size:clamp(22px,6vw,30px);
        line-height:1.15;
        margin-bottom:10px;
    }

    .spice-seal-subtitle{
        font-size:13px;
        line-height:1.7;
        max-width:420px;
    }

    /* flexbox instead of grid: with justify-content:center, the
       leftover 3rd card on its own row centers itself instead of
       hugging the left edge — 2 per row, 3rd centered below */
    .spice-seal-grid{
        display:flex;
        flex-wrap:wrap;
        justify-content:center;
        gap:30px 20px;
    }

    .spice-seal-card{
        flex:0 0 calc(50% - 10px);
        max-width:calc(50% - 10px);
        height:auto;
        padding-top:40px;
    }

    .spice-seal-shape{
        width:130px;
        height:130px;
    }

    .spice-seal-plaque{
        width:100%;
        padding:34px 14px 20px;
        border-radius:20px;
    }

    .spice-seal-mark{
        width:62px;
        height:62px;
        top:-14px;
    }

    .spice-seal-mark img{
        width:42px;
        height:42px;
    }

    .spice-seal-rating{
        gap:4px;
        margin-bottom:10px;
    }

    .spice-seal-rating span{
        width:6px;
        height:6px;
    }

    .spice-seal-plaque h3{
        font-size:14px;
        margin-bottom:5px;
    }

    .spice-seal-origin{
        font-size:10.5px;
        margin-bottom:12px;
    }

    .spice-seal-tags{
        gap:5px;
    }

    .spice-seal-tags span{
        font-size:8px;
        padding:4px 8px;
    }
}

@media(max-width:600px){

    .spice-seal-section{
        padding:24px 4%;
    }

    .spice-seal-tag{
        font-size:8px;
        padding:4px 10px;
    }

    .spice-seal-title{
        font-size:clamp(19px,6.5vw,24px);
    }

    .spice-seal-subtitle{
        font-size:12px;
    }

    .spice-seal-grid{
        gap:24px 14px;
    }

    .spice-seal-card{
        flex:0 0 calc(50% - 7px);
        max-width:calc(50% - 7px);
        padding-top:32px;
    }

    .spice-seal-shape{
        width:105px;
        height:105px;
        border-radius:24px;
    }

    .spice-seal-plaque{
        padding:28px 10px 16px;
        border-radius:16px;
    }

    .spice-seal-mark{
        width:50px;
        height:50px;
        top:-11px;
    }

    .spice-seal-mark img{
        width:34px;
        height:34px;
    }

    .spice-seal-plaque h3{
        font-size:11.5px;
    }

    .spice-seal-origin{
        font-size:9px;
        margin-bottom:9px;
    }

    .spice-seal-tags span{
        font-size:7px;
        padding:3px 7px;
    }
}

@media(max-width:400px){

    .spice-seal-card{
        flex:0 0 calc(50% - 5px);
        max-width:calc(50% - 5px);
    }

    .spice-seal-shape{
        width:88px;
        height:88px;
    }

    .spice-seal-mark{
        width:42px;
        height:42px;
    }

    .spice-seal-mark img{
        width:28px;
        height:28px;
    }

    .spice-seal-plaque h3{
        font-size:10px;
    }

    .spice-seal-tags span{
        font-size:6.5px;
        padding:2px 6px;
    }
}

/* ACCESSIBILITY */

@media (prefers-reduced-motion:reduce){

    .spice-seal-plaque,
    .spice-seal-shape,
    .spice-seal-mark{
        animation:none;
        transition:none;
    }

}







/* ── PACKAGING HEADING — RESPONSIVE ── */

@media (max-width: 991px) {
    .packaging-section{
        padding-top:36px;
        padding-bottom:36px;
    }

    .pkg-heading{
        margin-bottom:0;
    }

    .pkg-tag{
        font-size:9px;
        padding:5px 12px;
        letter-spacing:1px;
        margin-bottom:10px;
    }

    .pkg-title{
        font-size:clamp(22px,6vw,30px);
        line-height:1.15;
    }
}

@media (max-width: 600px) {
    .packaging-section{
        padding-top:24px;
        padding-bottom:24px;
    }

    .pkg-tag{
        font-size:8px;
        padding:4px 10px;
    }

    .pkg-title{
        font-size:clamp(19px,6.5vw,24px);
    }
}

/* RESPONSIVE — CARDS */

@media (max-width: 992px) {
    .depth-grid {
        margin-top:36px;
        grid-template-columns: repeat(2, 1fr);
        gap:24px;
        row-gap: 36px;
    }

    .depth-layers{
        max-width:170px;
        height:170px;
        margin-bottom:16px;
    }

    .layer{ border-radius:14px; }

    .depth-body h3{
        font-size:14px;
        margin-bottom:6px;
    }

    .depth-body p{
        font-size:10.5px;
        line-height:1.55;
        max-width:170px;
        margin:0 auto;
    }
}

@media (max-width: 576px) {
    .depth-grid {
        margin-top:26px;
        grid-template-columns: repeat(2, 1fr);
        gap:14px;
        row-gap: 26px;
    }

    .depth-layers {
        max-width: 130px;
        height: 130px;
        margin-bottom:10px;
    }

    .layer{ border-radius:10px; }

    .depth-body h3{
        font-size:11.5px;
        margin-bottom:4px;
    }

    .depth-body p{
        font-size:9px;
        line-height:1.45;
        max-width:130px;
    }
}

@media (max-width: 380px) {
    .depth-layers{
        max-width:110px;
        height:110px;
    }

    .depth-body h3{ font-size:10px; }
    .depth-body p{ font-size:8px; max-width:110px; }
}









/* ==========================
   CLASS-MISMATCH FIX
   HTML uses .pkg-tag / .pkg-title (not .m3-section-tag /
   .m3-section-title), so the colour/spacing overrides below
   target the classes that actually exist in the markup.
========================== */

.industries-content .pkg-tag{
    color:#E0B44C;
    background:rgba(224,180,76,.12);
    border-color:rgba(224,180,76,.3);
}

.industries-content .pkg-title{
    text-align:center;
    color:#F8F3EA;
    margin:20px auto 25px;
}

.industries-content .pkg-title span{
    color:#F0C75E;
}

.industries-content .pkg-title::after{
    content:"";
    display:block;
    width:90px;
    height:4px;
    background:#E0B44C;
    border-radius:20px;
    margin:25px auto 0;
}

/* ==========================
   TABLET
========================== */

@media(max-width:991px){

    .m3-industries{
        padding:36px 20px;
    }

    .industries-content{
        margin:0 auto 32px;
    }

    .industries-content .pkg-tag{
        font-size:9px;
        padding:5px 12px;
        letter-spacing:1px;
        margin-bottom:10px;
    }

    .industries-content .pkg-title{
        font-size:clamp(22px,6vw,30px);
        line-height:1.15;
        margin:10px auto 16px;
    }

    .industries-content .pkg-title::after{
        width:60px;
        height:3px;
        margin-top:16px;
    }

    .industry-highlight{
        margin-top:20px;
        padding:22px;
        border-radius:18px;
    }

    .industry-highlight h3{
        font-size:22px;
        margin-bottom:8px;
    }

    .industry-highlight p{
        font-size:13px;
        line-height:1.6;
    }

    .industries-grid{
        grid-template-columns:repeat(2,1fr);
        gap:14px;
    }

    .industry-card{
        padding:20px 14px;
        border-radius:16px;
    }

    .industry-card span{
        padding-left:0;
        display:block;
        text-align:center;
        font-size:10px;
        letter-spacing:2px;
    }

    .industry-card h4{
        font-size:14px;
        margin:8px 0 6px;
    }

    .industry-card p{
        font-size:10.5px;
        line-height:1.5;
    }
}

/* ==========================
   MOBILE
========================== */

@media(max-width:600px){

    .m3-industries{
        padding:24px 16px;
    }

    .industries-content .pkg-tag{
        font-size:8px;
        padding:4px 10px;
    }

    .industries-content .pkg-title{
        font-size:clamp(19px,6.5vw,24px);
    }

    .industry-highlight{
        padding:16px;
    }

    .industry-highlight h3{
        font-size:18px;
    }

    .industry-highlight p{
        font-size:11.5px;
    }

    .industries-grid{
        gap:10px;
    }

    .industry-card{
        padding:16px 10px;
        border-radius:12px;
    }

    .industry-card span{
        font-size:9px;
    }

    .industry-card h4{
        font-size:12.5px;
        margin:6px 0 4px;
    }

    .industry-card p{
        font-size:9.5px;
        line-height:1.4;
    }
}









/* ==========================
   RESPONSIVE
========================== */

@media(max-width:991px){

    .m3-faq-section{
        padding:36px 0;
    }

    .m3-faq-section .container{
        padding:0 20px;
    }

    .m3-faq-section .m3-about-content{
        display:flex;
        flex-direction:column;
        align-items:center;
        text-align:center;
    }

    .m3-faq-section .m3-section-tag{
        order:1;
        display:inline-block;
        justify-self:auto;
        margin:0 auto 10px;
        font-size:9px;
        padding:5px 12px;
    }

    .m3-faq-section .m3-heading{
        order:2;
        font-size:clamp(22px,6vw,30px);
        line-height:1.15;
    }

    .m3-faq-section .m3-heading span{
        font-style:normal;
    }

    .m3-faq-container{
        margin-top:28px;
    }

    .m3-faq-item{
        margin-bottom:12px;
        border-radius:14px;
    }

    .m3-faq-question{
        padding:16px 18px;
    }

    .m3-faq-question h3{
        font-size:13px;
        line-height:1.4;
    }

    .m3-faq-question span{
        font-size:18px;
        flex-shrink:0;
        margin-left:10px;
    }

    .m3-faq-answer p{
        padding:0 18px 16px;
        font-size:11.5px;
        line-height:1.6;
    }

    .m3-faq-item.active .m3-faq-answer{
        max-height:220px;
    }
}

@media(max-width:600px){

    .m3-faq-section{
        padding:24px 0;
    }

    .m3-faq-section .container{
        padding:0 16px;
    }

    .m3-faq-section .m3-section-tag{
        font-size:8px;
        padding:4px 10px;
    }

    .m3-faq-section .m3-heading{
        font-size:clamp(19px,6.5vw,24px);
    }

    .m3-faq-container{
        margin-top:20px;
    }

    .m3-faq-item{
        margin-bottom:10px;
        border-radius:12px;
    }

    .m3-faq-question{
        padding:13px 14px;
    }

    .m3-faq-question h3{
        font-size:11.5px;
    }

    .m3-faq-question span{
        font-size:15px;
    }

    .m3-faq-answer p{
        padding:0 14px 13px;
        font-size:10.5px;
        line-height:1.55;
    }

    .m3-faq-item.active .m3-faq-answer{
        max-height:260px;
    }
}







/* ==========================
   RESPONSIVE
========================== */

@media(max-width:991px){

    .m3-cta-section{
        padding:36px 6%;
    }

    .m3-cta-inner{
        max-width:100%;
    }

    .m3-cta-tag{
        font-size:9px;
        padding:5px 12px;
        letter-spacing:1px;
        margin-bottom:10px;
    }

    .m3-cta-heading{
        font-size:clamp(22px,6vw,30px);
        line-height:1.15;
        margin-bottom:0;
    }

    .m3-cta-sub{
        font-size:12.5px;
        line-height:1.65;
        margin:14px 0 22px;
        max-width:420px;
    }

    .m3-cta-btn{
        padding:9px 26px;
        font-size:12px;
    }

    .m3-cta-btn svg{
        width:14px;
        height:14px;
    }

    .m3-cta-glow--a{
        width:220px;
        height:220px;
        filter:blur(60px);
    }

    .m3-cta-glow--b{
        width:180px;
        height:180px;
        filter:blur(60px);
    }
}

@media(max-width:600px){

    .m3-cta-section{
        padding:24px 5%;
    }

    .m3-cta-tag{
        font-size:8px;
        padding:4px 10px;
    }

    .m3-cta-heading{
        font-size:clamp(19px,6.5vw,24px);
    }

    .m3-cta-sub{
        font-size:11.5px;
        margin:12px 0 18px;
    }

    .m3-cta-btn{
        padding:8px 22px;
        font-size:11px;
    }
}







/* ── RESPONSIVE ── */

@media(max-width:860px){

    .m3-footer-top{
        grid-template-columns:1fr;
        gap:32px;
        padding:40px 0 32px;
    }

    .m3-footer-brand img{
        height:90px;
    }

    .m3-footer-brand p{
        max-width:100%;
    }

    /* Products column not needed on mobile — hide it and let
       Company + Contact take the freed-up space */
    .m3-footer-col:first-child{
        display:none;
    }

    .m3-footer-nav{
        grid-template-columns:1fr 1fr;
        align-items:start;
        gap:24px;
    }
}

@media(max-width:560px){

    .m3-footer-inner{
        padding:0 20px;
    }

    .m3-footer-brand img{
        height:76px;
    }

    .m3-footer-nav{
        grid-template-columns:1fr 1fr;
        align-items:start;
        gap:16px;
    }

    .m3-footer-bottom{
        flex-direction:column;
        align-items:flex-start;
        gap:8px;
    }
}

@media(max-width:380px){

    .m3-footer-brand img{
        height:64px;
    }

    .m3-footer-nav{
        grid-template-columns:1fr 1fr;
        gap:12px;
    }

    .m3-footer-col a,
    .m3-footer-col span{
        font-size:11.5px;
    }
}