/** Shopify CDN: Minification failed

Line 1344:6 Unexpected "{"
Line 1344:15 Expected ":"
Line 1344:22 Unexpected "{"
Line 1348:6 Unexpected "{"
Line 1348:15 Expected ":"
Line 1353:6 Unexpected "{"
Line 1353:15 Expected ":"
Line 1361:6 Unexpected "{"
Line 1361:15 Expected ":"
Line 1365:6 Unexpected "{"
... and 30 more hidden warnings

**/
@font-face {
    font-family: 'Good Times';
    src: url('/cdn/shop/files/GoodTimes-Regular.eot?v=1780426550');
    src: url('/cdn/shop/files/GoodTimes-Regular.eot?#iefix') format('embedded-opentype'),
        url('/cdn/shop/files/GoodTimes-Regular.woff2?v=1780426550') format('woff2'),
        url('/cdn/shop/files/GoodTimes-Regular.woff?v=1780426550') format('woff'),
        url('/cdn/shop/files/GoodTimes-Regular.ttf?v=1780426551') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

h1, h2, h3, h4, h5, h6  {
    font-family: 'Good Times';
    font-weight: 400;
    font-style: normal;
    line-height:1.1em;
    letter-spacing:3%;
}


/* ==========================
ROOT VARIABLES
========================== */

:root {
  --white: #FFFFFF;
  --green: #1B732C;
  --rust: #F04F39;
  --dark-blue: #283A85;
  --light-blue: #6E83DB;
  --pink: #FFEDD4;
  --black:#000;

  --h1-size: 48px;
  --h2-size: 40px;
  --h3-size: 36px;
  --h4-size: 24px;
  --para-size:16px;

  --transition: all .6s ease;
}
.page-width--narrow  {
  width:100%;
  max-width:1600px !important;
  margin:0 auto;
}
.container {
  width:100%;
  max-width:1600px;
  margin:0 auto;
} 
.spice-inner-content-product-wrapper {
    max-width: 640px;
    place-self: anchor-center;
}
p{
  color:var(--black);
}

/* ==========================
TYPOGRAPHY
========================== */

h1 {
  font-size: var(--h1-size);
  line-height: 1.1;
}

h2 {
  font-size: var(--h2-size);
}

h3 {
  font-size: var(--h3-size);
}

h4 {
  font-size: var(--h4-size);
}


/* ==========================BUTTON========================== */

.banner-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--green);
    color: var(--white);
    text-decoration: none;
    padding: 15px 44px;
    border-radius: 4px;
    text-transform: uppercase;
       font-size: var(--para-size);
    font-weight: 500;
    transition: var(--transition);
    font-family: Good Times;
}
.banner-btn:hover {
  background: var(--black);
  transform: translateY(-2px);
}


/* ==========================HEADER================================= */
.custom-header {
  background: var(--black);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.custom-header__container {
      padding: 50px 40px 50px 160px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto;
  align-items: center;
  gap: 30px;
}

.header-menu ul {
    display: flex;
    gap: 50px;
    list-style: none;
    padding: 0;
    margin: 0;
    margin-right: 50px;
    justify-content: flex-end;
    margin-left: 50px;
}
nav.header-menu.header-menu--right {
    display: flex;
    justify-content: flex-start;
}
.header-menu a {
  text-decoration: none;
  color: var(--white);
  font-size: 15px;
  font-weight: 400;
  transition: var(--transition);
}

.header-menu a:hover , .header-actions  a.header-contact-btn:hover {
  color: var(--green);
}

.header-logo img {
  max-width: 220px;
  width: 100%;
  display: block;
      height: auto;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 30px;
}


.header-cart {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
}
.header-actions  a.header-contact-btn {
    color: var(--white);
    text-decoration: none;
  transition: var(--transition);
}
.header-cart svg {
  width: 20px;
  height: 20px;
    margin-bottom: 5px;
}

.cart-count-bubble {
  position: absolute;
  top: -8px;
  right: -10px;
  background: var(--rust);
  color: var(--white);
  min-width: 20px;
  height: 20px;
  border-radius: 100px;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==========================VIDEO BANNER========================= */

.custom-video-banner {
  position: relative;
  overflow: hidden;
}

.video-wrapper {
  position: relative;
  height: 85vh;
  min-height: 700px;
}

.banner-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.3),
    rgba(0,0,0,.55)
  );
  z-index: 1;
}

.banner-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 20px;
}

.banner-content h1 {
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 3%;
  margin-bottom: 0;
  max-width: 90%;
  font-weight: 400;
}

.spice-banner {
  position: relative;
  width: 98%;
  margin: 50px auto 30px;
}
.banner-content.page-width a {
    margin-top: 24px;
}
.spice-banner__inner {
  position: relative;
 
  padding-inline: 40px;
  min-height: 140px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.spice-banner__content {
  text-align: center;
  max-width: 1190px;
  z-index: 2;
}

.spice-banner__heading {
  margin: 0 0 12px;
  font-size: var(--h2-size);
  text-transform: uppercase;
  line-height: 1.1;
}

.spice-banner__text {
  font-size:var(--para-size);
  line-height: 1.6;
}

.spice-banner__text p {
  margin: 0;
}

.spice-banner__image {
  position: absolute;
  top: -30px;
  right: 30px;
  z-index: 3;
}

.spice-banner__image img {
  width: 350px;
  height: auto;
  display: block;
  margin: -50px 0 0 0;
  z-index: 9999;
}

.spice-banner__text p {
    color: var(--white);
}
/* ===================DUAL PRODUCT===================== */
  .sp-dual {
    display: flex;
    width: 100%;
    min-height: 560px;
    overflow: hidden;
  }

  .sp-dual__half {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 40px 50px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: flex 0.6s ease;
    height: 700px;
        position: relative;
  }

  .sp-dual:hover .sp-dual__half { flex: 0 0 45%; }
  .sp-dual__half:hover           { flex: 0 0 55% !important; }

  .sp-dual__half--left  { background-color: var(--dark-blue); }
  .sp-dual__half--right { background-color: #90241A; }

  /* .sp-dual__half::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
      -45deg,
      rgba(255,255,255,0.03) 0px,
      rgba(255,255,255,0.03) 1px,
      transparent 1px,
      transparent 12px
    );
    pointer-events: none;
    z-index: 0;
  } */
/* .sp-dual__bg-text {
  position: absolute;
  bottom: -15px;
  left: 0;               
  transform: none;       
  font-family: 'Good Times', sans-serif;
  font-size: clamp(80px, 10vw, 150px);
  font-weight: 900;
  color: rgba(255, 255, 255, 0.07);
  -webkit-text-fill-color: rgba(255, 255, 255, 0.07); 
  -webkit-text-stroke: 0px;                           
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  display: block;
  text-align: left;    
  width: 100%;           
} */

.sp-dual__bg-text {
  position: static;
  display: block;
  font-family: 'Good Times', sans-serif;
  font-size: clamp(80px, 10vw, 180px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
  line-height: 1.4;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  text-align: center;
  width: 100%;
  margin: -70px 0px -31px 0px;
  opacity:0.3;
  transition: font-size 0.5s ease;
}
.sp-dual__half:hover .sp-dual__bg-text {
  font-size: clamp(100px, 13vw, 240px);
  transition: font-size 0.6s ease;
}
.sp-dual__half.sp-dual__half--right:hover .sp-dual__bg-text {
  letter-spacing:80px;

}
.sp-dual__bg-text.with-colored {
  color: rgba(255, 255, 255, 0.07);
  -webkit-text-fill-color: rgba(255, 255, 255, 0.07);
  -webkit-text-stroke: 0px;
}

.sp-dual__bg-text.with-stroke {
  color: transparent;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.07);
}

/* Sare spans ek saath wrap karne wala container */
.sp-dual__bg-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 0;
  pointer-events: none;
}

  .sp-dual__label {
    position: absolute;
    top: 55px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Good Times', sans-serif;
    font-weight: 500;
    color: var(--white);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    z-index: 2;
    white-space: nowrap;
    font-size:var(--h3-size);
  }

  .sp-dual__images {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 70%;
    z-index: 2;
    margin-top: 20px;
        position: absolute;
  }

  .sp-dual__img {
    position: absolute;
    transition: var(--transition);
  }

  .sp-dual__img--back {
    width: 55%;
    bottom: 0;
    left: 0;
    transform: rotate(-6deg) translateX(-8%);
    filter: brightness(0.85);
    z-index: 1;
  }

  .sp-dual__img--front {
    width: 65%;
    bottom: 0;
    right: 0;
    z-index: 2;
  }

  .sp-dual__img--solo {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: 60%;
  }

  .sp-dual__img img {
    width: 95%;
    height: 70%;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
  }

  .sp-dual__cta {
    z-index: 3;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
    position: absolute;
    bottom: 50px;
  }

  .sp-dual__half:hover .sp-dual__cta {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .sp-dual__half:hover .sp-dual__img--front {
    transform: scale(1.05) translateY(-8px);
  }

  .sp-dual__half:hover .sp-dual__img--front.sp-dual__img--solo {
    transform: translateX(-50%) scale(0.9) translateY(-8px);
  }

  .sp-dual__half:hover .sp-dual__img--back {
    transform: rotate(-8deg) translateX(-10%) scale(1.03);
  }

  .sp-dual__placeholder {
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 60% !important;
    height: 240px;
    left: 50%;
    transform: translateX(-50%) !important;
  }

  .sp-dual__placeholder span {
    color: rgba(255,255,255,0.5);
    font-size: 13px;
    font-family: sans-serif;
    text-align: center;
  }

  .sp-dual__atc.is-loading {
    opacity: 0.7;
    pointer-events: none;
    cursor: wait;
  }

  .sp-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: var(--green);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 4px;
    font-family: 'Good Times', sans-serif;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0;
    pointer-events: none;
    z-index: 9999;
    transition: opacity 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
  }

  .sp-toast.is-visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
.sp-dual__half::before {
  content: "";
  position: absolute;
  inset: 0;
  background: inherit;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.8s ease;
  z-index: 0;
}

.sp-dual__half:hover::before {
  transform: scale(1.03);
}
button.banner-btn.sp-dual__atc {
    border: none;
}

  


/* ========================how to use ========================= */
.recipe-how-to-use{
    padding:60px 0;
    background: #F2F2F2;
}

.recipe-heading{
    text-align:center;
    text-transform:uppercase;
    margin-bottom:50px;
}

.recipe-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    position:relative;
}

.recipe-grid:after{
    content:'';
    position:absolute;
    left:50%;
    top: 20%;
    transform:translateX(-50%);
    width:1px;
    height: 60%;
    background: var(--green);
    opacity: 0.6;
}

.recipe-title{
    text-align:center;
    text-transform:uppercase;
    margin-bottom:35px;
    font-size: 24px;
}

.recipe-steps{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.recipe-step{
    text-align:center;
    position:relative;
}

.step-number{
    width:22px;
    height:22px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:11px;
    font-weight:700;
    position: absolute;
    right: 90px;
    top: -10px;
}

.step-number.blue{
    background:var(--dark-blue);
}

.step-number.rust{
    background:var(--rust);
}

.recipe-step img{
    width:80px;
    height:80px;
    object-fit:contain;
    margin-bottom:12px;
}

.recipe-step h4{
    font-size:11px;
    text-transform:uppercase;
    margin-bottom:10px;
}

.step-content{
    font-size: var(--para-size);
    line-height:1.6;
}

.recipe-buttons{
    margin-top:50px;
    display:flex;
    justify-content:center;
    gap:10px;
}

.recipe-outline-btn{
    background:#fff;
    color:#000;
    border:1px solid #ccc;
}

.recipe-outline-btn:hover{
    background:var(--rust);
    color:var(--white);
}

.recipe-step:nth-child(2):before {
    content: " ";
    position: absolute;
    left: -35%;
    width: 60%;
    margin:auto;
    top:15%;
    border-bottom:1px solid var(--dark-blue);
    
}
.recipe-step:nth-child(2):after {
    content: " ";
    position: absolute;
    right: -35%;
    width: 60%;
    margin:auto;
    top:15%;
    border-bottom:1px solid var(--dark-blue);
    
}

.recipe-column.recipe-right .recipe-step:nth-child(2):after , .recipe-column.recipe-right .recipe-step:nth-child(2):before {
    border-bottom:1px solid var(--rust);
    
}

/* =====================image & Text ==================== */
.why-spicetin-section{
    padding:80px 0;
}

.why-spicetin-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:100px;
    align-items:center;
}
.why-spicetin-wrapper p {
    font-size:var(--para-size);
}
.why-spicetin-image img{
    width:100%;
    display:block;
}

.why-spicetin-content h2{
    font-size:40px;
    line-height:1.1;
    text-transform:uppercase;
    margin-bottom:25px;
    width:60%;
        margin: 0 0 30px 0;
}

.content-text{
    margin-bottom:30px;
    line-height:1.8;
}
.why-spicetin-content a.banner-btn , a.first-btn-wrapper {
    color: var(--green);
    border: 1px solid var(--green);
    background-color:var(--white);
}
.why-spicetin-content a.banner-btn:hover , a.first-btn-wrapper:hover{
    color: var(--white);
    border: 1px solid var(--rust);
    background-color:var(--rust);
}
.why-spicetin-content h4 {
    margin:0;
}

/* =============why choose us============== */
.why-choose-section{
    position:relative;
    padding:100px 0;
    overflow:hidden;
    background-color:var(--black);
}

.why-choose-bg{
    position:absolute;
    inset:0;
    z-index:0;
}

.why-choose-bg img{
    width:100%;
    height:100%;
    object-fit:cover;
}


.why-choose-section .container{
    position:relative;
    z-index:2;
}

.why-choose-top{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:40px;
    margin-bottom:60px;
}

.why-choose-content{
    max-width: 80%;
    flex: 80%;
}

.why-choose-content h2{
    color:var(--white);
    font-size:var(--h2-size);
    margin:0 0 20px;
    text-transform:uppercase;
    line-height:1.1;
}

.why-choose-description{
    color:var(--white);
    opacity:.9;
    line-height:1.8;
    max-width: 80%;
}

.why-choose-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.why-card {
    border: 1px solid var(--white);
    padding: 30px 40px;
    text-align: center;
    transition: var(--transition);
    border-radius: 6px;
}

.why-card:hover{
    transform:translateY(-5px);
}

.why-card-image{
    margin-bottom:25px;
}

.why-card-image img{
    width:120px;
    height:120px;
    border-radius:50%;
    object-fit:cover;
    display:block;
    margin:0 auto;
}

.why-card h4{
    color:var(--white);
    margin-bottom:15px;
    text-transform:uppercase;
}

.why-card-text{
    color:var(--white);
    line-height:1.8;
}
.why-choose-section p {
    color: var(--white);
      font-size:var(--para-size);
}

.why-choose-description p {
    color: #A2A1A1;
      font-size:var(--para-size);
}
section.why-choose-section .banner-btn {
    border: 1px solid var(--green);
}

section.why-choose-section .banner-btn:hover {
    border: 1px solid var(--white);
}

/* =================footer================ */

.custom-footer{
    padding:80px 0 30px 0;
}

.footer-newsletter{
    background:var(--green);
    border-radius:4px;
    padding: 60px 60px;
    gap: 50px;
    margin-bottom:80px;
    border-radius: 6px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-content: center;
}

.newsletter-left h2{
    color:var(--white);
    font-size:var(--h2-size);
    text-transform:uppercase;
    margin-bottom:20px;
}

.newsletter-text{
    color:var(--white);
    line-height:1.8;
    max-width: 100%;
}

.newsletter-right{
    display:flex;
    max-width: 45%;
    justify-content: center;
    align-items: center;
    align-content: stretch;
    flex-wrap: nowrap;
    flex-direction: row;
    flex: 45%;
}

.newsletter-form{
    width:100%;
    max-width: 100%;
}

.newsletter-form label{
    color:var(--white);
    display:block;
    margin-bottom:10px;
}

.newsletter-fields{
    display:flex;
    gap:10px;
}

.newsletter-fields input{
    flex:1;
    height:60px;
    background:transparent;
    border: 1px solid var(--white);
    color:#fff;
    padding:0 20px;
    border-radius: 6px;
    font-family: 'Good Times';
    font-size:var(--para-size);
}

.newsletter-fields input::placeholder{
    color:#fff;
}

.newsletter-fields button{
    width:180px;
    border:none;
    cursor:pointer;
    background:#fff;
    color:var(--rust);
    text-transform:uppercase;
    font-family: 'Good Times';
    border-radius: 6px;
    transition:var(--transition);
    font-size:var(--para-size);
    font-weight:500;
}

.newsletter-fields button:hover{
    background:var(--black);
    color:var(--white);

}



.footer-middle{
    display:grid;
    grid-template-columns:1fr auto auto;
    align-items:center;
    gap:50px;
    margin-bottom:80px;
}

.footer-logo img{
    max-width:280px;
}

.footer-menu ul,
.footer-policies ul{
    display:flex;
    list-style:none;
    padding:0;
    margin:0;
    gap:40px;
}

.footer-menu a,
.footer-policies a{
    color:var(--black);
    text-decoration:none;
    transition:var(--transition);
      font-size:var(--para-size);
}

.footer-menu a:hover ,
.footer-policies a:hover{
    color:var(--green);
}



.footer-cart a{
    width:54px;
    height:54px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:var(--rust);
    color:#fff;
    text-decoration:none;
    border-radius:4px;
    font-size:24px;
}

.footer-bottom{
    display:flex;
    justify-content:space-between;
    gap:30px;
    align-items:center;
}
.footer-newsletter p {
    color: var(--white);
      font-size:var(--para-size);
}

.newsletter-left {
    max-width: 55%;
}

.footer-copyright {
    color: var(--black);
      font-size:var(--para-size);
}
.footer-cart a svg {
    width: 20px;
    height: 20px;
}
/* /////////////////protein page /////////////////////// */
.spicetein-product-section{
  padding:00px 0;
}

.spicetein-product-wrapper{
  display:flex;
  flex-wrap:wrap;
}

.spicetein-product-image{
  width:50%;
  background-size:cover;
  background-position:center;
  padding:80px;
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:700px;
}

.main-product-image{
  max-width:100%;
  display:block;
}

.spicetein-product-content{
  width:50%;
  padding:70px;
}

.spicetein-product-content h2{
  font-size:60px;
  line-height:1;
  margin:0 0 15px;
  text-transform:uppercase;
}

.spicetein-product-content h4{
  font-size:18px;
  text-transform:uppercase;
  margin-bottom:20px;
}

.product-description{
  margin-bottom:35px;
}

.product-description p{
  margin:0;
}

.icon-box-wrapper{
  display:flex;
  flex-wrap:wrap;
  gap:15px;
  margin-bottom:40px;
}

.icon-box{
  width:110px;
  text-align:center;
}

.icon-box img{
  width:45px;
  height:45px;
  object-fit:contain;
  margin:0 auto 10px;
  display:block;
}

.icon-box span{
  font-size:12px;
  text-transform:uppercase;
  display:block;
  color:var(--black);
}
.icon-box-wrapper .icon-box:nth-child(1) img {
    margin-left: 0;
}

.icon-box-wrapper .icon-box:nth-child(1) span {
    text-align:left;
}
.icon-box-wrapper .icon-box:nth-child(1) {
    width:50px;
}

.spicetein-product-content h5{
  font-size:28px;
  margin-bottom:15px;
  text-transform:uppercase;
}

.second-text{
  margin-bottom:25px;
}

.product-list{
  padding:0;
  margin:0 0 35px;
  list-style:none;
}

.product-list li{
  position:relative;
  padding-left:28px;
  margin-bottom:15px;
  font-size:18px;
}

.product-list li:before{
  content:'✓';
  position:absolute;
  left:0;
  top:0;
  width:18px;
  height:18px;
  border-radius:50%;
  background:#97b24d;
  color:#fff;
  font-size:12px;
  display:flex;
  align-items:center;
      margin: auto;
    justify-content: center;
    bottom: 0;
}

.product-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 30px;
    background: #2f7d32;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 400;
    transition: 0.3s;
    font-family: 'Good Times';
    max-width: 100%;
    width: 100%;
    transition:var(--transition);
}

.product-btn:hover{
  background-color:var(--black);
}

.bottom-text{
    margin-top: 20px;
    font-size: 16px;
    text-align: center;
    color: var(--black);
}
.custom-page-banner{
  width:100%;
}
.custom-page-banner {
    position: relative;
    width: 98%;
    margin: 30px auto;
}

.banner-content{
  text-align:center;
}

.banner-title{
  margin:0;
  text-transform:uppercase;
}
.questions-banner {
  padding: 60px 0;
}

.questions-banner__inner {
  text-align: center;
}

.questions-banner__inner h2 {
  margin: 0 0 20px;
}

.banner-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}


section.questions-banner a.banner-btn {
    background-color: var(--rust);
}
section.questions-banner a.banner-btn:hover {
    background-color: var(--black);
}
/* //////////////contact us ////////////////// */
.contact.page-width {
    max-width: 1600px;
    padding: 50px 80px;
    background-color: var(--black);
    position:relative;
}
.contact.page-width:before {
    content:" ";
    background-image:url('/cdn/shop/files/image_3.png');
    background-position:center;
    background-repeat:no-repeat;
    background-size:contain;
    display:block;
    position:absolute;
    left:-60px;
    top:-100px;
    width:210px;
    height:200px;
}


.contact.page-width:after {
    content:" ";
    background-image:url('/cdn/shop/files/image_12.png');
    background-position:center;
    background-repeat:no-repeat;
    background-size:contain;
    display:block;
    position:absolute;
    right:-60px;
    bottom:-100px;
    width:210px;
    height:200px;
}
.contact-another-heading-wrapper h2 {
    text-align: center;
    font-family: 'Good Times';
    font-weight: 400;
    font-style: normal;
    line-height:1.1em;
    letter-spacing: 0%;
    margin: 80px auto;
}


.contact.page-width input , .contact.page-width textarea {
    background-color: var(--black);
    color: var(--white);
    border: 1px solid var(--white);
    border-radius: 6px;
    font-family: 'Good Times';
    text-transform:none;
    font-weight: 300;
}

.contact.page-width label{
    background-color: var(--black);
    color: var(--white);
    font-family: 'Good Times';
    text-transform:none;
    font-weight: 300;
    font-size:12px;
}




.contact.page-width button.button {
    background-color: var(--rust);
    border-radius: 6px;
    font-family: 'Good Times';
    text-transform:uppercase;
    font-weight: 300;
    transition:var(--transition);
}
.contact.page-width button.button:hover {
    background-color: var(--white);
    color:var(--black);
}
h2.form-status.form-status-list.form__message {
    color: var(--white);
}
/* ///////////////////////faq////////////////// */

#faq-{{ section.id }} {
  padding: 50px 20px;
}

#faq-{{ section.id }} .faq-container{
  max-width: 1400px;
  margin: 0 auto;
}

#faq-{{ section.id }} .faq-item {
  background: #F4F5CA;
  border: 1px solid #d7d7af;
  margin-bottom: 8px;
  transition: all .4s ease;
  border-radius: 8px;
}

#faq-{{ section.id }} .faq-item.active{
  background: var(--rust);
}

#faq-{{ section.id }} .faq-question{
  width:100%;
  border:0;
  background:transparent;
  cursor:pointer;
  padding:16px 20px;
  text-align:left;
}

#faq-{{ section.id }} .faq-left{
  display:flex;
  align-items:center;
  gap:14px;
}

/* ICON */
#faq-{{ section.id }} .faq-icon{
  width:20px;
  height:20px;
  min-width:20px;
  border-radius:50%;
  background:#9CAC5D;
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
}

/* Default + sign */
#faq-{{ section.id }} .faq-icon::before{
  content:"+";
  color:#fff;
  font-size:20px;
  font-weight:600;
  line-height:1;
}

/* Active = minus */
#faq-{{ section.id }} .faq-item.active .faq-icon::before{
  content:"−";
  font-size:20px;
}

#faq-{{ section.id }} .faq-title{
  font-size:16px;
  font-weight:500;
  color:var(--black);
  line-height:1.4;
    font-weight: 600;
    font-size: 24px;
    padding-left: 24px;
}

#faq-{{ section.id }} .faq-item.active .faq-title{
  color:#fff;
}

#faq-{{ section.id }} .faq-answer{
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}

#faq-{{ section.id }} .faq-item.active .faq-answer{
  overflow: hidden;
}
#faq-{{ section.id }} .faq-answer-inner{
    padding: 0 20px 20px 20px;
    color: var(--white);
}

.faq-answer-inner p {
    color: var(--white);
    line-height: 1.2;
}
.page-width.page-width--narrow h1 {
    display: none;
}
.page-width.page-width--narrow hr {
    margin:20px 0
}


/* ////////////////////recipes temaplate //////////////////////////// */
.recipe-section{
  background:var(--black);
  padding:80px 0;
}

.recipe-heading{
  text-align:center;
  margin-bottom:50px;
}

.recipe-heading h2{
  color:var(--white);
  margin-bottom:15px;
}

.recipe-heading p{
  color:var(--white);
}

.recipe-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.recipe-card{
  text-decoration:none;
}

.recipe-card img{
  width:100%;
  height:280px;
  object-fit:cover;
  display:block;
}

.recipe-card h3{
  color:var(--white);
  margin-top:20px;
}

.recipe-card p{
  color:var(--white);
}

.recipe-detail{
  padding: 80px 0;
  background: var(--white);
}

/* TOP SECTION */
.recipe-top{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}

.recipe-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recipe-content h1{
  font-size: var(--h1-size);
  color: var(--black);
  margin-bottom: 20px;
}

.recipe-content p{
  font-size: var(--para-size);
  color: var(--black);
  line-height: 1.6;
}

/* BODY SECTION */
.recipe-body{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 70px;
}

.recipe-body h2{
  font-size: var(--h3-size);
  color: var(--rust);
  margin-bottom: 20px;
}

/* Ingredients */
.ingredients ul{
  padding-left: 18px;
}

.ingredients li{
  font-size: var(--para-size);
  color: var(--black);
  margin-bottom: 10px;
}

/* Instructions */
.instructions ol{
  padding-left: 18px;
}

.instructions li{
  font-size: var(--para-size);
  color: var(--black);
  margin-bottom: 12px;
  line-height: 1.5;
}

/* NUTRITION GRID */
.nutrition-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    justify-content: center;
    align-content: center;
    align-items: center;
    justify-items: center;
}
.nutrition-image-box{
  background: var(--rust);
  padding: 30px 30px;
      width: 100%;
    height: 100%;
        padding: 50px 90px;
    width: 100%;
    height: 100%;
}
.nutrition-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.nutrition-box span{
  display: block;
  margin-top: 8px;
  text-align:center;
  color:var(--black);
}
section.questions-banner.recipe-back-btn-wrapper {
    background-color: var(--black);
}

section.questions-banner.recipe-back-btn-wrapper .questions-banner__inner h2 {
    color: var(--white);
}

section.questions-banner.recipe-back-btn-wrapper p {
    color: var(--white);
    width:40%;
}
section.questions-banner.recipe-back-btn-wrapper .questions-banner__inner {
    text-align: center;
    justify-items: center;
}

section.questions-banner.recipe-back-btn-wrapper a.banner-btn {
    background-color: var(--black);
    color: var(--rust);
}
section.questions-banner.recipe-back-btn-wrapper a.banner-btn:hover {
    color: var(--white);
}
.nutrition-heading-wrapper.container {
    text-align: center;
    margin-bottom: 30px;
}

.nutrition-heading-wrapper.container h2 {
    margin: 0;
}

.nutrition-heading-wrapper.container p {
    font-family: 'Good Times';
    text-transform: uppercase;
}

section.recipe-detail.container h2 {
    color: var(--black);
    margin-bottom: 50px;
}

section.recipe-detail.container h4 {
    margin: 0;
    font-size: 22px;
    font-family: 'Poppins';
    font-weight: 600;
    letter-spacing: 0;
    position: relative;
}

section.recipe-detail.container .instructions h4:before {
    content: " ";
    background-color: var(--rust);
    display: block;
    position: absolute;
    left: -24px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    top: 5px;
}

section.recipe-detail.container .instructions .metafield-rich_text_field {
    padding-left: 24px;
}

section.recipe-detail.container .metafield-rich_text_field ul li {
    margin: 0;
}
.ingredients .metafield-rich_text_field li {
    position: relative;
    list-style: none;
    padding-left: 16px;
}

.ingredients .metafield-rich_text_field li:before {
    content: " ";
    background-image: url('/cdn/shop/files/circle-check.png');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    left: -20px;
    display: block;
    width: 15px;
    height: 15px;
    margin: auto;
    top: -4px;
    bottom: 0;
}
.nutrition-heading-wrapper.container h2 {
    margin: 0 !important;
}
/* ////////////////////////////recipe and tips main page ///////////////////// */

.recipe-blog-grid {
  padding: 60px 0;
}

.section-heading {
  text-align: center;
  margin-bottom: 40px;
  font-size: 40px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-card {
  background: #fff;
}

.blog-image-wrap {
  position: relative;
}

.blog-image-wrap img {
  width: 100%;
  display: block;
  border-radius: 12px;
}

.blog-tag {
  position: absolute;
  right: 0;
  top: 20px;
  background: #f15a29;
  color: #fff;
  padding: 10px 8px;
  writing-mode: vertical-rl;
  text-transform: uppercase;
  font-size: 12px;
}

.blog-content {
  padding: 20px 0;
}

.blog-content h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.blog-content p {
  font-size: 14px;
  color: #666;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
  font-size: 12px;
  color: #999;
}

.read-more {
  display: inline-block;
  margin-top: 15px;
  color: #000;
  font-weight: 600;
}


/* ==========================RESPONSIVE========================== */

@media only screen and (max-width:1600px){
  .container {
  width:100%;
  max-width:1400px;
  margin:0 auto;
} 
.spice-inner-content-product-wrapper {
    max-width: 600px;
    place-self: anchor-center;
}
.page-width--narrow  {
  width:100%;
  max-width:1400px !important;
  margin:0 auto;
}
.contact.page-width {
   max-width:1400px;
    padding: 50px 60px;

}

:root {
  --h1-size: 40px;
  --h2-size: 32px;
  --h3-size: 28px;
  --h4-size: 18px;
  --para-size:14px;
}
.step-number {
    right: 70px;
}
.banner-btn {
    padding: 15px 32px;
    font-size: var(--para-size);
}
.header-menu ul {
    gap: 45px;
    margin: 0 40px;
}

.recipe-step img{
    width:70px;
    height:70px;
}
#faq-{{ section.id }} .faq-container{
  max-width: 1140px;
  margin: 0 auto;
}
}

@media only screen and (max-width:1440px){
.sp-dual__half {
    height: 600px;
}
.sp-dual__images {
    height: 60%;
}
.why-spicetin-wrapper {
    gap: 50px;
}
  .container {
  width:100%;
  max-width:1300px;
  margin:0 auto;
} 
.spice-inner-content-product-wrapper {
    max-width: 600px;
    place-self: anchor-center;
}
.page-width--narrow  {
  width:100%;
  max-width:1300px !important;
  margin:0 auto;
}
.contact.page-width {
    max-width:1300px;
    padding: 50px 60px;

}
.banner-btn {
    padding: 12px 32px;
    font-size: var(--para-size);
}
.why-card-image img {
    width: 80px;
    height: 80px;
}
.header-menu ul li a {
    font-size: 14px;
}

.header-menu ul {
    gap: 30px;
    margin: 0 30px;
}
.recipe-step:nth-child(2):before {
    left: -37%;
}
}


@media only screen and (max-width:1370px){
  .container {
  width:100%;
  max-width:1280px;
  margin:0 auto;
} 
.spice-inner-content-product-wrapper {
    max-width: 600px;
    place-self: anchor-center;
}
.page-width--narrow  {
  width:100%;
  max-width:1280px !important;
  margin:0 auto;
}
.spicetein-product-content {
    width: 50%;
    padding: 70px 20px;
}
.contact.page-width {
    max-width:1280px;
    padding: 50px 60px;

}
.header-menu ul {
    gap: 30px;
    margin: 0 20px;
}
.product-description {
    margin-bottom: 15px;
}
}



@media only screen and (max-width:1280px){
  .container {
  width:100%;
  max-width:1140px;
  margin:0 auto;
} 
    .spice-inner-content-product-wrapper {
        max-width: 500px;
    }
    .icon-box-wrapper {
    margin-bottom: 20px;
    gap:0;
}
.page-width--narrow  {
  width:100%;
  max-width:1140px !important;
  margin:0 auto;
}
.contact.page-width {
    max-width:1140px;
    padding: 50px 60px;

}
.custom-header__container {
    padding: 50px 10px 50px 110px;
    gap: 20px;
}
#faq-{{ section.id }} .faq-container{
  max-width: 991px;
  margin: 0 auto;
}
}
@media (max-width:1024px){
    .recipe-top{
    grid-template-columns: 1fr;
  }

  .recipe-body{
    grid-template-columns: 1fr;
  }

  .nutrition-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 991px) {

  :root {
    --h1-size: 38px;
    --h2-size: 34px;
    --h3-size: 30px;
    --h4-size: 22px;
  }

  .video-wrapper {
    min-height: 550px;
  }
   .spice-banner__inner {
    padding-inline: 30px;
  }

  .spice-banner__image img {
    width: 140px;
  }
    .custom-header__container {
    grid-template-columns: auto 1fr auto;
  }

  .header-menu {
    display: none;
  }

  .header-logo {
    text-align: left;
    margin-left: 20px;
  }

  .header-logo img {
    max-width: 170px;
  }

  .header-contact-btn {
    display: none;
  }
    .sp-dual {
      flex-direction: column;
      min-height: auto;
    }

    .sp-dual__half {
      padding: 50px 24px 40px;
      min-height: 420px;
    }

    .sp-dual__images {
      height: 280px;
      max-width: 320px;
    }

    /* On mobile, always show the CTA (no hover on touch) */
    .sp-dual__cta {
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
    }
 .recipe-grid{
        grid-template-columns:1fr;
        gap:50px;
    }

    .recipe-grid:after{
        display:none;
    }
  .why-choose-grid{
        grid-template-columns:1fr;
    }

    .why-choose-top{
        flex-direction:column;
    }
    .footer-newsletter{
        grid-template-columns:1fr;
    }

    .footer-middle{
        grid-template-columns:1fr;
        text-align:center;
    }

    .footer-menu ul,
    .footer-policies ul{
        flex-wrap:wrap;
        justify-content:center;
    }

    .footer-bottom{
        flex-direction:column;
        text-align:center;
    }

      .spicetein-product-image,
  .spicetein-product-content{
    width:100%;
  }

  .spicetein-product-image{
    min-height:auto;
    padding:40px;
  }

  .spicetein-product-content{
    padding:40px 25px;
  }

  .spicetein-product-content h2{
    font-size:42px;
  }
}

@media (max-width: 767px) {

  :root {
    --h1-size: 30px;
    --h2-size: 28px;
    --h3-size: 24px;
    --h4-size: 20px;
  }

  .video-wrapper {
    min-height: 450px;
  }

  .banner-content h1 {
    letter-spacing: 1px;
  }

  .banner-btn {
    padding: 12px 28px;
    font-size: 13px;
  }
    .spice-banner__inner {
    padding-inline: 20px;
    min-height: auto;
  }

  .spice-banner__heading {
    font-size: 28px;
  }

  .spice-banner__text {
    font-size: 13px;
  }

  .spice-banner__image {
    position: relative;
    top: unset;
    right: unset;
    margin-top: 20px;
    text-align: center;
  }

  .spice-banner__inner {
    flex-direction: column;
  }
    .sp-dual__images {
      height: 230px;
    }
  .spice-banner__image img {
    width: 120px;
  }
      .recipe-steps{
        grid-template-columns:1fr;
    }

    .recipe-buttons{
        flex-direction:column;
        align-items:center;
    }
     .why-spicetin-wrapper{
        grid-template-columns:1fr;
        gap:30px;
    }

    .why-spicetin-content h2{
        font-size:28px;
    }
    .why-choose-section{
        padding:70px 0;
    }

    .why-choose-content h2{
        font-size:32px;
    }

    .why-card{
        padding:30px 20px;
    }
        .footer-newsletter{
        padding:30px;
    }

    .newsletter-fields{
        flex-direction:column;
    }

    .newsletter-fields button{
        width:100%;
        height:60px;
    }
      #faq-{{ section.id }} {
    padding: 40px 15px;
  }

  #faq-{{ section.id }} .faq-top-box h2 {
    font-size: 18px;
  }

  #faq-{{ section.id }} .faq-question {
    font-size: 14px;
    padding: 15px;
  }
    .nutrition-grid{
    grid-template-columns: 1fr;
  }


}
