@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@300..700&family=Roboto:wght@100..900&display=swap');

@font-face {
  font-family: "Billgates";
  src: url("../fonts/Billgates.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {

  --color-primary: #e92620;
  --color-secondary: #f9e036;

  --font-primary: "Roboto", sans-serif;
  --font-secondary: "Fredoka", sans-serif;
  --font-headings: "Billgates", cursive; 
}

* {
  box-sizing: border-box; 
}

body {
  font-family: var(--font-primary);
  overflow-x: hidden;
  line-height: 1.6; 
}
body.home {
    background: #fff !important;
}
body.wp-singular {
    background: #fff !important;
}
body.post-type-archive-recipes {
    background: #fff !important;
}
/* Utility Classes */
.text-primary { color: var(--color-primary) !important; }
.bg-primary { background-color: var(--color-primary) !important; }
.text-secondary { color: var(--color-secondary) !important; }
.bg-secondary { background-color: var(--color-secondary) !important; }

.font-main { font-family: var(--font-primary); }
.font-secondary { font-family: var(--font-secondary); }
.font-heading { font-family: var(--font-headings); }



.uppercase{
  text-transform: uppercase;
}
.capitalize{
  text-transform: capitalize;
}
.z-index-1{
  z-index: 1;
}

.sec-title{
  font-weight: 900;
  font-size: 48px;
}
.sec-sub-title {
    font-size: 36px;
}
.sec-desc {
    font-size: 18px;
    margin-bottom: 0;
}

.btn {
    position: relative;
    font-size: 18px;
    color: #fff;
    border-radius: 50px;
    padding: 18px 25px 18px 70px !important;
    font-weight: bold;
    transition: all 0.4s ease;
    border: 3px solid;
    font-family: var(--font-primary);
}
.btn-shadow{
  box-shadow: 0px 12px 23px 0px rgba(0, 0, 0, 0.32);
}
.icon-box {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute !important;
    left: 6px;
    top: 6px;
}
.icon-box-prim{
  background: var(--color-secondary);
}
.btn-prim {
  background: var(--color-primary);
  color: #fff;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  transition: all 0.35s ease;
  overflow: hidden;
  border-color: var(--color-secondary);
    
}
.btn-prim::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #290001;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: 0;
  border-radius: inherit;
  /* border:3px solid var(--color-secondary) !important; */
}
.btn-prim:hover::before {
  transform: scaleX(1);
}
.btn-prim span,
.btn-prim img {
  position: relative;
  z-index: 2;
}
.btn-prim:hover {
  color: #fff;
  border-color: var(--color-secondary) !important;
}

/* Secondary Btn  */

.icon-box-secondary{
  background: var(--color-primary);
}
.btn-secondary {
  background: var(--color-secondary) !important;
  color: #000; 
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  transition: all 0.35s ease;
  overflow: hidden;
  border-color: var(--color-primary) !important;
    
}
.btn-secondary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #e3ca1f;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: 0;
  border-radius: inherit;
  /* border: 3px solid #e3ca1f; */
  border-color: var(--color-primary) !important;
}
.btn-secondary:hover::before {
  transform: scaleX(1);
}
.btn-secondary span,
.btn-secondary img {
  position: relative;
  z-index: 2;
}
.btn-secondary:hover {
  color: #000;
}

/* Dark Btn  */

.icon-box-dark{
  background: var(--color-secondary);
}
.btn-dark {
  background: #350000;
  color: #fff;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  transition: all 0.35s ease;
  overflow: hidden;
  border-color: var(--color-secondary) !important;
    
}
.btn-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color-primary) !important;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: 0;
  border-radius: inherit;
  border:3px solid var(--color-primary) !important;
}
.btn-dark:hover::before {
  transform: scaleX(1);
}
.btn-dark span,
.btn-dark img {
  position: relative;
  z-index: 2;
}
.btn-dark:hover {
  color: #fff;
}

/* btn white  */

.icon-box-white{
  background: var(--color-primary);
}
.btn-white {
  background: #fff;
  color: #000; 
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  transition: all 0.35s ease;
  overflow: hidden;
  border-color: var(--color-secondary) !important;
    
}
.btn-white::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color-secondary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: 0;
  border-radius: inherit;
  /* border: 3px solid #e3ca1f; */
  border-color: var(--color-secondary) !important;
}
.btn-white:hover::before {
  transform: scaleX(1);
}
.btn-white span,
.btn-white img {
  position: relative;
  z-index: 2;
}
.btn-white:hover {
  color: #000;
}

/* 
**********************************
**********************************
******* Navbar Css ******** 
********************************** 
**********************************
*/


        /* .header-wrapper {
            background: linear-gradient(180deg, #8B0000 0%, #6B0000 100%);
            padding: 20px 0;
        } */
         .header-wrapper {
    position: fixed; 
    width: 100%;
    top: 35px;
    left: 0;
    z-index: 999;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); 
}
      .header-wrapper.sticky {
    top: 0;
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.header-wrapper.sticky .header-inner-sec {
    border-radius: 0;
    border: none;
    height: 100px; 
    max-width: 100%; 
      padding: 0;
    box-shadow: none;
}
.header-wrapper .logo-box {
    transition: all 0.3s ease;
    z-index: 10;
}



.header-wrapper.sticky .main-nav li a {
    padding: 32px 10px;
}
        .header-wrapper .header-inner-sec {
            background: white;
            border-radius: 12px;
            padding: 0 30px 0px 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 100px;
            border: 2px solid #8d0d0b;
            box-shadow: 0px 23px 32px 0px rgba(69, 2, 5, 0.22);
            transition: all 0.5s ease;
        }

        .header-wrapper .main-nav {
            display: flex;
            gap: 35px;
            margin: 0;
            padding: 0;
            list-style: none;
        }

        /* .header-wrapper .main-nav li a {
                color: #000;
                text-decoration: none;
                font-weight: 700;
                font-size: 18px;
                transition: color 0.3s;
                padding: 38px 10px;
        }

        .header-wrapper .main-nav li a:hover,
        .header-wrapper .main-nav li a.active {
            color: #df232a;
        }

        .header-wrapper .main-nav li a.active {
            border-bottom: 2px solid #8B0000;
        } */

        .header-wrapper .main-nav li a {
    color: #000;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: color 0.3s;
    padding: 30px 10px; 
    position: relative;
    display: inline-block;
    overflow: hidden; 
    z-index: 1;
    height: 100%;
    
}


.header-wrapper .main-nav li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0; 
    background: linear-gradient(to bottom, #ffffff 60%, #f3c4c5 100%);
    transition: height 0.4s ease;
    z-index: -1; 
}

.header-wrapper .main-nav li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px; 
    background-color: #e22b2d;
    transform: scaleX(0); 
    transform-origin: bottom left; 
    transition: transform 0.4s ease;
}

.header-wrapper .main-nav li a:hover::before,
.header-wrapper .main-nav li a.active::before {
    height: 100%; 
}

.header-wrapper .main-nav li a:hover::after,
.header-wrapper .main-nav li a.active::after {
    transform: scaleX(1); 
}

.header-wrapper .main-nav li a:hover,
.header-wrapper .main-nav li a.active {
    color: #d93436;
    border-bottom: none; 
}

       .header-wrapper .social-icons {
            display: flex;
            gap: 12px;
        }

       .header-wrapper .social-icons a {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: transform 0.3s;
            background-color: #df232a;
                font-size: 28px;
        }

        .header-wrapper .social-icons a:hover {
            transform: scale(1.1);
            background: #600001;
        }


.header-wrapper .logo-box img {
    max-height: 140px; 
    transition: all 0.5s ease;
    transform-origin: left center;
}

.header-wrapper.sticky .logo-box img {
    max-height: 100px;
    transform: scale(0.9); 
}


/* 
        @media (max-width: 991px) {
            .nav-section {
                flex-direction: column;
                gap: 20px;
            }

            .main-nav {
                flex-wrap: wrap;
                justify-content: center;
                gap: 20px;
            }
        } */
.res-menu{
  display: none;
}

/* Header Css End  */

 /* Start Home Banner Section  */
.hide-desktop{
  display: none;
}
.home-banner-sec{
  background-image: url('../images/custom/rays-bg.png');
  padding: 200px 0px 30px 0px;
  background-color: #640001;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.home-banner-sec .title{
  font-size: 48px;
  font-weight: 900 !important;
  line-height: 48px;
}
.home-banner-sec .desc{
  font-size: 18px;
  margin-top: -26px;
}
.home-banner-sec .img_box {
    margin-top: -14px;
    position: relative;
    z-index: 2;
}
.banner-connet {
    margin: 0px 120px;
}
.banner-circle-img-box {
    /* height: 400px;
    width: 400px; */
    height: 350px;
    width: 350px;
    border: 6px solid var(--color-primary);;
    border-radius: 50%;
    overflow: hidden;
}
.circle-img-box-1 {
    position: absolute;
    z-index: 0;
    left: -5%;
    bottom: 25%;
}
.wrapper-box-2 {
    position: absolute;
     right: -4%;
    top: 2%;
}
.banner-circle-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.banner-styled-text {
    transform: rotate(-16deg);
    margin-top: 2px;
    margin-left: 40%;
}
.banner-styled-text p {
    font-size: 36px;
    margin: 0;
    line-height: 1.2;
}
.banner-styled-text .styled-text-2 {
    margin-left: 35px;
}
.banner-slider button.slick-prev.custom-arrow.slick-arrow {
    top: 40%;
    left: -3%;
}
.banner-slider button.slick-next.custom-arrow.slick-arrow {
    top: 40%;
    right: -3%;
}
.banner-slider .slick-track{
      padding-bottom: 30px;
}
 /* End Home Banner Section  */

/*  Search Filter Sec Start  */
.search-filter-section {
    background-color: #290001;
}

.search-filter-section .filter-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.search-filter-section .filter-bottle-icon {
    width: 40px; 
    height: auto;
}

.search-filter-section .filter-title .filter-title-heading {
    font-size: 20px;
    letter-spacing: 1px;
}

.search-filter-section .filter-controls {
    border: 1px solid #ddd;
    overflow: visible !important; 
    position: relative;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
}

.search-filter-section .filter-controls .form-control:focus {
    box-shadow: none;
    background: transparent;
}

.search-filter-section .btn-search {

    border: none;
    border-radius: 12px;
    transition: transform 0.2s;
    background: var(--color-primary);
    border-top: 6px solid #861519;
}

.search-filter-section .btn-search:hover {
    color: white;
    background: #861519;
    border-color:var(--color-primary);
}
.search-filter-section .search-btn-box i {
    font-size: 20px;
    color: var(--color-secondary);
}
.search-filter-section .form-control::placeholder {
    color: #230002;
}

.search-filter-section .filter-controls .btn.dropdown-toggle {
    background: white;
    font-size: 16px;
    height: 100%;
    padding-left: 30px !important;
}

.search-filter-section .filter-controls .dropdown .btn.dropdown-toggle {
    background: transparent;
    font-size: 16px;
    font-weight: 500;
    color: #4a4a4a !important; 
    padding-right: 40px !important; 
    position: relative;
}


.search-filter-section .filter-controls .dropdown-toggle::after {
    display: none !important;
}

.search-filter-section .filter-controls .dropdown-toggle::before {
    content: "";
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-20%); 
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 8px solid #d4a0a1; 
    pointer-events: none;
}
@keyframes slow-shake {
  0% { transform: translate(0, 0) rotate(0deg); }
  15% { transform: translate(-2px, 0) rotate(-2deg); }
  30% { transform: translate(2px, 0) rotate(2deg); }
  45% { transform: translate(-2px, 0) rotate(-2deg); }
  60% { transform: translate(2px, 0) rotate(2deg); }
  75% { transform: translate(-2px, 0) rotate(-2deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}

/* Apply slow shake to the bottle */
.filter-bottle-icon {
  display: inline-block;
  animation: slow-shake 2s infinite; /* 2 seconds for slower movement */
}
@media (max-width: 991px) {
    .search-filter-section .filter-wrapper {
        flex-direction: column;
        align-items: stretch;
    }
}
/*  Search Filter Sec End  */


/* Story Section Start */
.story-sec{
  padding: 60px 0px 580px 0px;
}
.story-sec .story-slider {
    /* padding: 40px 0px 0px 0px; */
    background-image: url(../images/custom/story-bar.png);
    background-position: 40% 34%;
    background-repeat: no-repeat;
}
.story-sec .story-slider .slick-list.draggable {
    padding-top: 40px;
}
.story-sec .story-box {
    width: 90%;
}
.story-sec .story-box .year-box {
    background-image: url(../images/custom/icons/circle-shape.webp);
    background-position: center;
    background-size: contain;
    height: 160px;
    width: 160px;
    background-repeat: no-repeat;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 28px;
}
.story-sec .story-box .year-box .story-year {
    font-size: 60px;
    text-align: center;
    color: var(--color-secondary);
    font-family: var(--font-headings);
    margin-bottom: 0;
      line-height: 1.1;
}
.story-year-small {
    font-size: 36px;
}
/* .story-sec .story-box .story-icon {
    width: 46px;
    height: 46px;
    border-radius: 50px;
    border: 2px solid var(--color-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
} */
.story-sec .story-box .story-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 2px solid var(--color-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    overflow: visible; /* needed for ring */
}

/* Breathing ring */
.story-sec .story-box .story-icon::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--color-secondary);
    top: 0;
    left: 0;
    z-index: -1;
    animation: storyplus-animation 2s infinite;
}

/* Animation keyframes */
@keyframes storyplus-animation {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}



.story-sec .story-box .story-details {
    font-size: 18px;
}
.story-sec .custom-arrow {
    position: absolute;
    top: 34%;                   
    transform: translateY(-50%); 
    z-index: 2;
    background: transparent; 
    border: none;
}
.story-sec .slick-prev.custom-arrow {
    left: -8%;
}

.story-sec .slick-next.custom-arrow {
    right: -8%; 
}

/* Story Section End */

/* Shop Collection section Start */

.shop-collection-sec {
    margin-top: -540px;
    z-index: 1;
    position: relative;
}
.shop-collection-wrapper {
    background-image: url('../images/custom/shop-col-sec-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 60px;
    border: 2px solid var(--color-secondary);
    padding: 70px 90px 60px 90px;
    box-shadow: 0px -32px 45px 0px rgba(249, 224, 54, 0.17);
}
.shop-product-slider {
    padding: 60px 0px;
}


.shop-product-box {
    background: #e2252a;
    border-radius: 60px;
    /* padding: 40px 35px 60px 35px; */
    padding: 35px 35px 50px 35px;
    text-align: center;
    margin: 0px 10px;
}
.shop-product-box .prod-title {
    font-size: 21px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
    /* margin-top: 25px; */
}
.shop-product-box .prod-desc {
    font-size: 16px;
    color: #fff;
}
.shop-product-box .img-box {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 25px;
  height: 360px;
}
.img-box img {
    width: 100%;
    height: 100%;
  /* max-width: 100%;
  height: auto; */
  filter: drop-shadow(0px 10px 15px rgba(0, 0, 0, 0.3));
  position: relative;
  z-index: 2;
}

.img-box::after {
  content: "";
  position: absolute;
  bottom: 20px; 
  left: 50%;
  transform: translateX(-50%);
  width: 60%; 
  height: 20px; 
  /* background: rgba(0, 0, 0, 0.6);  */
  background: rgb(0 0 0 / 20%);
  border-radius: 50%; 
  filter: blur(10px); 
  z-index: 1;
}

/* .box-btn-small-prim{
    background: var(--color-primary);
    border: 2px solid var(--color-secondary);
    border-radius: 50px;
    padding: 8px 13px 8px 38px;
    position: relative;
    font-size: 16px;
    font-weight: bold;
    line-height: 16px;
    overflow: hidden;
    transition: all 0.35s ease;
    color: #fff;
    display: inline-block;
}
.box-btn-small-icon-prim{
    width: 26px;
    height: 26px;
    background: var(--color-secondary);
    border-radius: 50%;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute !important;
    top: 3px;
    left: 3px;
} */

.box-btn-small-prim {
    background: var(--color-primary);
    border: 2px solid var(--color-secondary);
    border-radius: 50px;
    padding: 8px 13px 8px 38px;
    position: relative;
    font-size: 14px;
    font-weight: bold;
    line-height: 16px;
    overflow: hidden; 
    transition: all 0.35s ease;
    color: #fff;
    display: inline-block;
    z-index: 1; 
}

.box-btn-small-prim::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #290001; 
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: -1; 
    border-radius: inherit;
}

.box-btn-small-prim:hover::before {
    transform: scaleX(1);
}

.box-btn-small-prim:hover {
    color: #fff;
    border-color: var(--color-secondary);
}

.box-btn-small-icon-prim {
    width: 26px;
    height: 26px;
    background: var(--color-secondary);
    border-radius: 50%;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute !important;
    top: 3px;
    left: 3px;
    z-index: 2; /
}

.box-btn-small-prim .position-relative {
    z-index: 2;
}

/* .box-btn-small-white{
    background: #fff;
    border: 2px solid var(--color-secondary);
    border-radius: 50px;
    padding: 8px 13px 8px 38px;
    position: relative;
    font-size: 16px;
    font-weight: bold;
    line-height: 16px;
    overflow: hidden;
    transition: all 0.35s ease;
    color: #000;
    display: inline-block;
}
.box-btn-small-icon-white{
    width: 26px;
    height: 26px;
    background: var(--color-primary);
    border-radius: 50%;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute !important;
    top: 3px;
    left: 3px;
} */

.box-btn-small-white {
    background: #fff;
    border: 2px solid var(--color-secondary);
    border-radius: 50px;
    padding: 8px 13px 8px 38px;
    position: relative;
    font-size: 14px;
    font-weight: bold;
    line-height: 16px;
    overflow: hidden;
    transition: all 0.35s ease;
    color: #000;
    display: inline-block;
    z-index: 1; 
}

.box-btn-small-white::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--color-secondary); 
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: -1;
    border-radius: inherit;
}

.box-btn-small-white:hover::before {
    transform: scaleX(1);
}

.box-btn-small-white:hover {
    color: #000;
    border-color: var(--color-secondary);
}

.box-btn-small-icon-white {
    width: 26px;
    height: 26px;
    background: var(--color-primary); 
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute !important;
    top: 3px;
    left: 3px;
    z-index: 2;
}

.box-btn-small-icon-white img {
    max-width: 14px; 
    height: auto;
}

.box-btn-small-white .position-relative {
    z-index: 2;
}

.shop-product-slider .custom-arrow {
    position: absolute;
    top: 50%;                   
    transform: translateY(-50%); 
    z-index: 2;
    background: transparent; 
    border: none;
}
.shop-product-slider .slick-prev.custom-arrow {
    left: -6%;
}

.shop-product-slider .slick-next.custom-arrow {
    right: -6%; 
}
.shop-product-slider .custom-arrow img {
    width: 50px;
}
/* Shop Collection section End */


/* Sauceman Sec Start */

/* Parent Section */
.sauceman-section {
    padding: 0px 0;
    /* overflow: hidden; */
    background-color: #fff;
}

/* Left Text Styles */
.sauceman-section .sauceman-intro {
      margin-bottom: 110px;
      padding-right: 30px;

}
.sauceman-section .sauceman-intro .sub-title {
    font-family: var(--font-headings);
    color: var(--color-primary);
    display: block;
    font-size: 36px;
    line-height: 1;
}

.sauceman-section .sauceman-intro .main-title {
    font-weight: 900;
    line-height: 1.1;
    color: #333;
    /* font-size: 48px; */
    font-size: 44px;
    font-style: italic;
}

.sauceman-section .sauceman-intro .main-title span {
    color: #e31e24;
}

/* Middle Image Composition */
.sauceman-section .sauceman-image-container {
    position: relative;
    text-align: center;
    z-index: 5;
    top: 70px;
}

.sauceman-section .red-circle-bg {
    position: absolute;
    bottom: 76px;
    left: 58%;
    transform: translate(-50%, 0%);
    width: 410px;
    height: 410px;
    /* background-color: #e31e24; */
    border-radius: 50%;
    z-index: -1;
    background-image: url(../images/custom/sauceman-bg.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.sauceman-section .red-circle-bg .circle-inner{
    width: 410px;
    height: 410px;
}
.sauceman-section .red-circle-bg .circle-inner .sauceman-element-1 {
    left: -11%;
    bottom: 48%;
}
.sauceman-section .red-circle-bg .circle-inner .sauceman-element-2 {
    left: -6%;
    top: 13%;
}
.sauceman-section .red-circle-bg .circle-inner .sauceman-element-3 {
    left: 1%;
    top: -17%;
}
.sauceman-section .red-circle-bg .circle-inner .sauceman-element-4 {
    right: 17%;
    top: -17%;
}
.sauceman-section .red-circle-bg .circle-inner .sauceman-element-5 {
    right: -6%;
    top: -10%;
}
.sauceman-section .red-circle-bg .circle-inner .sauceman-element-6 {
    right: -7%;
    top: 24%;
}
.sauceman-section .red-circle-bg .circle-inner .sauceman-element-7 {
    right: -9%;
    bottom: 45%;
    width: 70px;
}
.sauceman-section .chef-img {
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.2));
}

/* Floating Elements Positioning */
.sauceman-section .floating-element {
    position: absolute;
    z-index: 10;
}

.sauceman-section .floating-element.grill {
    top: 0;
    left: -20px;
    width: 80px;
}

.sauceman-section .floating-element.bottle {
    bottom: 20%;
    right: 0;
    width: 50px;
}

.sauceman-section .floating-element.skewer {
    top: 10%;
    right: -10px;
    width: 60px;
}

/* Right Content Styles */
.sauceman-section .sauceman-content{
  margin-bottom: 110px;
  padding-left: 60px;
}
.sauceman-section .sauceman-content .desc{
    font-size: 16px;
    color: #000;
    line-height: 1.6;
}

.sauceman-section .sauceman-content .signature {
    color: var(--color-primary);
    font-weight: bold;
    margin-top: 15px;
}

.sauceman-element {
    transition-timing-function: ease-out !important;
}

[data-aos].sauceman-element.aos-animate {
    animation: floatingLoop 3s ease-in-out infinite alternate;
}

@keyframes floatingLoop {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-15px); 
    }
}

.sauceman-element-1 { animation-delay: 0.2s !important; }
.sauceman-element-2 { animation-delay: 0.5s !important; }
.sauceman-element-3 { animation-delay: 0.8s !important; }
.sauceman-element-4 { animation-delay: 0.3s !important; }
.sauceman-element-5 { animation-delay: 0.6s !important; }
.sauceman-element-6 { animation-delay: 0.9s !important; }
.sauceman-element-7 { animation-delay: 0.4s !important; }
/* Responsive adjustments */
@media (max-width: 991px) {
    .sauceman-section .sauceman-intro {
        text-align: center !important;
        margin-bottom: 30px;
    }
    .sauceman-section .sauceman-content {
        text-align: center;
        margin-top: 30px;
    }
}


/* Sauceman Sec End */




/*  Recipe of the Day Section Start  */
.recipe-sec{
  background-color: var(--color-primary);
  padding: 250px 0px 60px 0px;
  border-radius: 60px;
      margin-top: -120px;
}
.recipes_wrapper {
    padding: 70px 0px 60px 0px;
}
.recipes_wrapper .recipe-box {
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 12px 23px 0px rgba(69, 2, 5, 0.17);
    border-radius: 60px;
    padding: 10px;
}
.recipes_wrapper .recipe-box .img_box {
    height: 300px;
    border-radius: 50px;
    overflow: hidden;
}
.recipes_wrapper .recipe-box .img_box img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.recipes_wrapper .box-title {
    font-size: 18px;
    font-weight: 800;
    /**/
    width: 50%;
    height: 44px;
    display: flex;
    align-items: center;
}
.recipes_wrapper .content_box {
    padding: 20px 12px;
}
.recipes_wrapper .recipe-box-btn {
    background: var(--color-primary);
    border: 2px solid var(--color-secondary);
    border-radius: 50px;
    padding: 10px 15px 10px 40px;
    position: relative;
    font-size: 16px;
    font-weight: bold;
    line-height: 16px;
    overflow: hidden;
    transition: all 0.35s ease;
    color: #fff;
        display: inline-block;
}
.recipes_wrapper .recipe-box-btn:hover {
    background: #290001;
}
.recipes_wrapper .recipe-box-btn .btn-icon {
    width: 26px;
    height: 26px;
    background: var(--color-secondary);
    border-radius: 50%;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute !important;
    top: 5px;
    left: 5px;
}
/*  Recipe of the Day Section End  */



/* reviews sec Start  */

.reviews-sec{
  padding: 80px 0px;
}
.reviews-sec .review-box {
    background: #f8f4f4;
    border: 2px solid var(--color-primary);
    border-radius: 60px;
    padding: 50px 30px 50px 100px;
    margin-left: 90px;
    margin-right: 10px;
}
.reviews-sec .review-box .review-title {
    font-size: 26px;
    font-weight: 300;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 36px;
}
.reviews-sec .review-prim {
     background: var(--color-primary);
    border: 2px solid var(--color-secondary);
    border-radius: 50px;
    padding: 10px 40px 10px 15px;
    position: relative;
    font-size: 16px;
    font-weight: bold;
    line-height: 16px;
    overflow: hidden;
    transition: all 0.35s ease;
    color: #fff;
}
.reviews-sec .review-prim::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--color-secondary); 
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 0;
    border-radius: 50px;
}
.reviews-sec .review-prim:hover::before {
    transform: scaleX(1);
}
.reviews-sec .review-prim span,
.reviews-sec .review-prim .review-btn-icon {
    position: relative;
    z-index: 2; 
}

.reviews-sec .review-btn-icon {
    width: 25px;
    height: 25px;
    background: var(--color-secondary); 
    border-radius: 50%;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute !important;
    top: 5px;
    right: 5px;
}
.review-box-icon {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
}
.reviews-sec .custom-arrow {
    position: absolute;
    top: 50%;                   
    transform: translateY(-50%); 
    z-index: 2;
    background: transparent; 
    border: none;
}
.reviews-sec .reviews-slider {
    padding: 60px 0px;
}
.reviews-sec .slick-prev.custom-arrow {
    left: -8%;
}

.reviews-sec .slick-next.custom-arrow {
    right: -8%; 
}

/* .reviews-sec .custom-arrow img {
    width: 30px;
    height: auto;
} */
/* reviews sec End  */


/*************************************************************************/
/****************** Products Page Start Here *****************************/
/*************************************************************************/

/* Start Products Banner Section  */

.products-banner-sec {
    background: #640001 url('../images/custom/rays-bg.png') center/cover no-repeat;
    padding: 100px 0 40px;
    position: relative;
    overflow: hidden; 
}
.products-banner-sec .static-circles-wrapper {
    position: absolute;
    top: 45%; 
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 1300px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end; 
    z-index: 1;
    pointer-events: none;
    height: 480px;
    padding: 0 40px; 
}

.products-banner-sec .circle-bg {
    border-radius: 50%;
    border: 3px solid #e92620;
}

.products-banner-sec .side-circle {
    width: 250px;
    height: 250px;
    background: linear-gradient(-157deg, #6c0a0e 0%, #450001 100%);
}

.products-banner-sec .center-circle {
    width: 480px;
    height: 480px;
    background-color: #df232a;
    border-width: 6px;
}


.products-banner-sec .product-banner-slider {
    position: relative;
    z-index: 2;
    width: 100%;
    /* max-width: 1320px;  */
    max-width: 1450px !important;
    margin: 0 auto;
    overflow: hidden; 
}

.products-banner-sec .product-banner-slider .slick-list {
    overflow: hidden !important; 
    /* padding: 40px 0 !important; */
    padding: 10px 0px 0px 0px !important;
}

/* .products-banner-sec .product-banner-slider .slide {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    height: 620px; 
    outline: none;
} */
.products-banner-sec .product-banner-slider .slide {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    height: 650px;
    outline: none;
    overflow: visible;
    padding-bottom: 20px;
}

.products-banner-sec .slider-product-box {
    /* margin-bottom: 60px; */
    /* margin-bottom: 25px; */
    margin-bottom: 25px;
}
.products-banner-sec .slick-center .slider-product-box {
    margin-bottom: 10px;
}
.products-banner-sec .slider-product-box img {
    transition: all 0.6s ease;
    transform: scale(0.6);
    opacity: 0.1; 
}

/* .slick-center img {
    transform: scale(1.1) rotate(5deg) !important;
    opacity: 1 !important;
    height: 450px !important;
} */

.products-banner-sec .slick-center img {
    transform: scale(1.04) rotate(16deg) !important;
    opacity: 1 !important;
    height: 430px !important;
    position: relative;
    top: 12px;
    filter: drop-shadow(0px 25px 35px rgba(0, 0, 0, 0.35));
}

.products-banner-sec .slick-active img {
    opacity: 1;
    height: 200px;
    transform: scale(1);
}

.products-banner-sec .product-banner-slider .product-title {
    text-align: center;
    margin-top: 15px;
    width: 100%;
    font-size: 24px;
    font-family: 'Billgates';
    /* transform: rotate(-21deg);
    position: relative;
    left: 20px;
    top: -20px; */
    transform: rotate(-18deg);
    position: relative;
    left: 30px;
    top: -5px;
    line-height: 1.2;
}
/* .products-banner-sec .slick-center .product-title {
    font-size: 48px;
    position: relative;
    top: -106px;
    left: 210px;
} */
 .products-banner-sec .slick-center .product-title {
    font-size: 40px;
    position: relative;
    top: -106px;
    left: 210px;
    line-height: 58px;
}
.products-banner-sec .slick-center .product-title .sauce_name {
    position: relative;
    top: -12px;
}
.products-banner-sec .custom-arrow {
    position: absolute;
    top: 60%;
    transform: translateY(-50%);
    z-index: 99;
    background: none;
    border: none;
    cursor: pointer;
}

.products-banner-sec .slick-prev { left: 10px; }
.products-banner-sec .slick-next { right: 10px; }

.products-banner-sec .static-circles-wrapper .center-circle .left-img {
    position: absolute;
    left: -50px;
    top: 40px;
}
.products-banner-sec .static-circles-wrapper .center-circle .right-img {
    right: -130px;
    position: absolute;
}
.products-banner-sec .banner-btns {
    position: relative;
    top: -25px;
}




/* Start Request Sample Section Css */
.req_sample_sec{
    /* padding:50px 0px; */
    padding: 80px 0px;
}
.req_sample_sec .req_sample_box{
    border-width: 2px;
    border-color: rgb(254, 59, 39);
    border-radius: 60px;
    background-image: -moz-linear-gradient( 90deg, rgb(106,9,9) 0%, rgb(198,38,44) 100%);
    background-image: -webkit-linear-gradient( 90deg, rgb(106,9,9) 0%, rgb(198,38,44) 100%);
    background-image: -ms-linear-gradient( 90deg, rgb(106,9,9) 0%, rgb(198,38,44) 100%);
    box-shadow: 0px -32px 45px 0px rgba(4, 4, 0, 0.17);
    /* padding: 60px 80px 60px 60px; */
    padding:50px;
    overflow: hidden;
}
.req_sample_sec .sub-title{
    font-family: var(--font-headings);
    color: var(--color-secondary);
    font-size: 30px;
    line-height: 30px;
    margin-bottom: 5px;
}
.req_sample_sec .title{
    font-size: 30px;
    font-weight: 900 !important;
    line-height: 30px;
}
.req_sample_sec .desc{
    font-size: 18px;
    line-height: 24px;
}


.req_sample_sec .request-form-section label {
    font-size: 18px;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1;
}
.req_sample_sec .request-form-section input , .request-form-section select {
    border-radius: 8px;
    background-color: rgb(255, 255, 255);
    height: 48px;
}
.req_sample_sec .request-form-section textarea{
    height: 48px;
    max-height: 100%;
    border-radius: 8px;
    background-color: rgb(255, 255, 255);
}
.req_sample_sec .custom-select{
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #fff !important;
  background-image: none !important;
  padding-right: 3rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6'%3E%3Cpath fill='%23e92620' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 14px 10px;
}

/* .req_sample_sec .bottles-img {
    max-width: 140%;
    height: auto;
    margin-bottom: -62px;
    margin-left: -50px;  
    z-index: 1;
} */
 .req_sample_sec .bottles-img {
    max-width: 480px;
    height: auto;
    margin-bottom: -52px;
    margin-left: -250px;
    z-index: 1;
}


/* Start Request Sample Section End */


/* Start Main Products Sec  */
/* ============================== */
/* Main Products Section           */
/* ============================== */
.main-products-sec {
    padding: 50px 0px 10px 0px;
}

/* ============================== */
/* Product Listing Section         */
/* ============================== */
.product-listing-sec {
    padding-top: 50px;
}

/* ============================== */
/* Sidebar                         */
/* ============================== */
.products-sidebar {
    border-radius: 20px;
    background-color: rgb(175, 20, 26);
    overflow: hidden;
}

/* Sidebar Search */
.sidebar-search-wrapper {
    background-color: #290001;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.sidebar-search-wrapper input {
    background-color: #fff;
    height: 44px;
    border-radius: 50px;
    padding: 10px 20px;
    font-size: 15px;
    color: #290001;
    width: 100%;
}

.sidebar-search-wrapper input::placeholder {
    font-size: 15px;
    color: #290001;
}

.side-search-btn {
    background: #df232a !important;
    border: none !important;
    border-radius: 50px !important;
    font-size: 20px !important;
    height: 44px !important;
    width: 44px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
}

.side-search-btn i {
    color: #f9e036;
}

/* Sidebar Groups */
.sidebar-group {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-group:last-child {
    border-bottom: none;
}

.sidebar-header {
    background-color: #640001;
    color: #f9e036;
    padding: 15px 25px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
}

/* Sidebar Menu */
.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-menu li a {
    display: flex;
    align-items: center;
    padding: 18px 20px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    position: relative;
    transition: 0.3s;
}

.sidebar-menu li a:after {
    content: "";
    height: 1px;
    width: 90%;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    background: #ff2e36;
    z-index: 1;
}
.sidebar-menu li a.active::after {
    width: 100%;
}
.sidebar-menu li:last-child a:after {
    display: none;
}

.sidebar-menu li.active a,
.sidebar-menu li a:hover:not(.active) {
    background-color: #ff2e36;
}

.sidebar-menu .icon {
    width: 35px;
    display: flex;
    justify-content: flex-start;
}

.sidebar-menu .icon img {
    max-width: 22px;
}

/* ============================== */
/* Product Box                     */
/* ============================== */
.product-box {
    border: 1px solid rgb(241, 199, 195);
    border-radius: 20px;
    background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgb(244, 243, 243) 100%);
    box-shadow: 0px 20px 38px rgba(43, 3, 2, 0.1);
    text-align: center;
    padding-top: 30px;
    overflow: hidden;
    margin-bottom: 20px;
    transition: all 0.3s ease-in-out;
}

/* Product Image */
.product-box .prod-img-box {
    height: 240px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    overflow: hidden;
}


/* .product-box .prod-img-box img {
    height: 100%;
    mix-blend-mode: multiply;
} */
 .product-box .prod-img-box img {
    height: 240px;
    mix-blend-mode: multiply;
    width: 100%;
    object-fit: contain;
}
.products-boxes-sec {
    padding-top: 40px;
}
.product-box .product-title {
    font-size: 18px;
    font-weight: bold;
}
.product-box .product-title a {
    text-decoration: none;
    color: #000;
    font-size: 18px;
    font-weight: bold;
    display: block;
}
.product-box .product-price {
    font-size: 20px;
    font-weight: bold;
        color: #df232a;
}

.product-box-btns {
    display: flex;
    justify-content: space-between;
}

.product-box-btns .req_sample_btn {
    background: #fff;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    color: #000;
    padding: 16px;
    display: inline-block;
    width: 100%;
    border-top: 1px solid #f1c7c3;
     transition: 0.4s;
}
.product-box-btns .req_sample_btn:hover {
    background: #640001;
    color: #fff;
    border-top: 1px solid #640001;
}
.product-box-btns .add_to_cart_btn {
    background: #df232a;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    color: #fff;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    transition: 0.4s;
}
.product-box-btns .add_to_cart_btn:hover {
    background: #640001;
}
.custom-pagination .page-link {
    width: 40px; height: 40px; border-radius: 50% !important;
    margin: 0 10px; display: flex; align-items: center; justify-content: center;
    border: 1px solid #fe3b27; color: #333; font-weight: bold;
}
.custom-pagination .page-item.active .page-link {
    background-color: #fe3b27; border-color: #fe3b27; color: white;
}

.sidebar-search-wrapper form {
    display: flex;
    align-items: center;
    width: 100%;
}

.sidebar-search-wrapper input[type="search"] {
    padding-right: 40px; 
}

/* .side-search-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
} */


/* Popup Overlay */
.sample-popup-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.7);
    display: flex; align-items: center; justify-content: center;
    z-index: 99999;
    opacity: 0; pointer-events: none;
    transition: all 0.4s ease;
}

.sample-popup-overlay.active {
    opacity: 1; pointer-events: auto;
}

.sample-popup-content {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    max-width: 400px;
    text-align: center;
    transform: translateY(-100px); 
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.sample-popup-overlay.active .sample-popup-content {
    transform: translateY(0); 
}

.popup-icon { font-size: 50px; margin-bottom: 15px; }
.sample-popup-content h3 { font-weight: 700; text-transform: uppercase; }
.success-popup-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex; align-items: center; justify-content: center;
    z-index: 100000;
    opacity: 0; visibility: hidden;
    transition: all 0.4s ease-in-out;
}

.success-popup-overlay.active {
    opacity: 1; visibility: visible;
}

.success-popup-content {
background: #fff;
    padding: 40px;
    border-radius: 20px;
    max-width: 450px;
    width: 90%;
    text-align: center;
    border-top: 5px solid #f9e036;
    transform: translateY(-150px);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background-image: -webkit-linear-gradient(90deg, rgb(106, 9, 9) 0%, rgb(198, 38, 44) 100%);
    background-image: -ms-linear-gradient( 90deg, rgb(106,9,9) 0%, rgb(198,38,44) 100%);
    box-shadow: 0px -32px 45px 0px rgba(4, 4, 0, 0.17);
    color: #fff;
}

.success-popup-overlay.active .success-popup-content {
    transform: translateY(0);
}

.success-popup-icon { margin-bottom: 20px; }
.success-popup-content h3 { font-size: 28px; font-weight: 800; color: #fff; text-transform: uppercase; }
.contact-msg { font-style: italic; color: #fff; margin-top: 10px; }
.custom-btn {
    background: var(--color-secondary) !important;
    color: #000;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    transition: all 0.35s ease;
    overflow: hidden;
    border-color: var(--color-primary) !important;
    padding: 10px 30px;
}
.form-notice-text {
    font-size: 20px;
    letter-spacing: 1px;
    border-left: 4px solid #ffc107;
    padding-left: 15px;
    display: inline-block;
}

[data-aos="jump-shake"].aos-animate {
    animation: jumpShake 0.8s ease-in-out infinite alternate;
}

@keyframes jumpShake {
    0% { transform: translateX(0); }
    25% { transform: translateX(3px) rotate(1deg); }
    50% { transform: translateX(-3px) rotate(-1deg); }
    75% { transform: translateX(2px) rotate(0.3deg); }
    100% { transform: translateX(0); }
}
.reqsample-btn {
    background: #dc3545;
    padding: 10px 25px;
    color: #fff;
    border-radius: 50px;
}
/*************************************************************************/
/******************** Products Page ENd Here *****************************/
/*************************************************************************/


/* Start Footer Section */

.cookies-footer {
  background: #fff;
}

.cookies-footer .footer-box {
  padding: 90px 80px;
  background: radial-gradient(circle at top, #290001, #290001);
  border-radius: 40px 40px 0px 0px;
  color: #fff;
}
.cookies-footer .footer-box .footer-col-1 {
    gap: 24px;
}
.cookies-footer  .footer-logo {
  max-width: 180px;
}

.cookies-footer .footer-tagline {
    color: #e92620;
    font-style: italic;
    font-size: 24px;
    font-family: "Billgates";
    line-height: 28px;
}

.cookies-footer .footer-title {
  color: var(--color-secondary);
  font-weight: 600;
  margin-bottom: 20px;
}

.cookies-footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cookies-footer .footer-links li {
  margin-bottom: 15px;
}

.cookies-footer .footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-size: 18px;
  font-weight: bold;
}

.cookies-footer .footer-links a:hover {
  color: #ffc107;
}

.cookies-footer .social-icons {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.cookies-footer .social-icons a {
  width: 46px;
  height: 46px;
  background-color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 28px;
  text-decoration: none;
}

.cookies-footer .social-icons a:hover {
  background: var(--color-secondary);
}
.cookies-footer .footer-box .footer-col-3 {
    padding-left: 54px;
}
/* .footer-col-2 .footer-menu-box {
    padding-left: 60px;
} */
/* End Footer Section */

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #df232a 0%, #8B0000 100%);
    color: #fff;
    border-radius: 50%; 
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(223, 35, 42, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: visible;
}

.back-to-top i {
    font-size: 22px;
    color: #fff;
    transition: transform 0.3s ease;
}

.back-to-top:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, #8B0000 0%, #df232a 100%);
    box-shadow: 0 8px 25px rgba(223, 35, 42, 0.6);
    color: #fff;
}

.back-to-top:hover i {
    animation: arrowBounce 0.5s infinite alternate;
}

.back-to-top .pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #df232a;
    animation: pulseButton 2s infinite;
    z-index: -1;
}

@keyframes arrowBounce {
    from { transform: translateY(0); }
    to { transform: translateY(-5px); }
}

@keyframes pulseButton {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.6); opacity: 0; }
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

#bbq-ajax-loader-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(255, 255, 255, 0.7);
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
}
.loader-spinner {
    width: 50px; height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #df232a; 
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
.sidebar-menu li a.active {
    background-color: #ff2e36;
}

.product-box:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px); 
    border-color: #df232a; 
}

.prod-img-box img {
    transition: transform 0.5s ease;
}

.product-box:hover .prod-img-box img {
    transform: scale(1.08); 
}

.req_sample_btn {
    transition: background 0.3s ease, color 0.3s ease;
}

.req_sample_btn:hover {
    background-color: #df232a;
    color: #fff !important;
}

.add_to_cart_btn {
    transition: all 0.3s ease;
}

.add_to_cart_btn:hover {
    letter-spacing: 1px; 
    opacity: 0.9;
}
/*******************************/
/* Single Product Page Start  */
/*******************************/

.custom_single_page_banner {
    padding: 180px 0 60px !important;
    position: relative !important;
    overflow: hidden !important;
}
.woocommerce-message:focus-visible {
    outline: none !important;
}
/*************************************************************************/
/****************** Recipes Page Start Here *****************************/
/*************************************************************************/
.main-recipes-sec {
    padding: 50px 0;
}

/* ============================== */
/* Product Listing Section         */
/* ============================== */
.recipes-listing-sec {
    padding-top: 50px;
}
.recipes-sidebar {
    border-radius: 20px;
    background-color: rgb(175, 20, 26);
    overflow: hidden;
}
.recipes-box {
    border-style: solid;
    border-width: 1px;
    border-color: rgb(241, 199, 195);
    border-radius: 20px;
    background-image: -moz-linear-gradient( 90deg, rgb(255,255,255) 0%, rgb(244,243,243) 100%);
    background-image: -webkit-linear-gradient(90deg, rgb(255, 255, 255) 0%, rgb(244, 243, 243) 100%);
    background-image: -ms-linear-gradient( 90deg, rgb(255,255,255) 0%, rgb(244,243,243) 100%);
    box-shadow: 0px 20px 38px 0px rgba(43, 3, 2, 0.1);
    overflow: hidden;
}
.recipes-content {
    padding: 20px 15px;
}


.recipes-img-box {
    height: 220px;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
}
.recipes-title {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    height: 48px !important;
}
.view_recipes_btn {
    font-size: 18px;
    font-weight: bold;
    color: #e92620;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    padding: 15px 0px;
    border-top: 1px solid #f1c7c3;
}
.recipes-content .box-title {
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    color: #808080;
    line-height: 1;
}
.recipes-content .prep-time{
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    color: #000;
    line-height: 1;
}
.recipes-content .serves{
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    color: #000;
    line-height: 1;
}

.custom-filter-wrapper {
    padding: 0;
}

.custom-select-wrapper {
    position: relative;
}

.custom-filter-select {
    width: 100%;
    background: #9a050b;
    border: 1px solid #ff2e36;
    border-radius: 50px;
    padding: 15px 45px 15px 25px;
    color: white;
    font-size: 1rem;
    appearance: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.custom-filter-select:hover {
    background: #9a050b;
    border-color: #ff2e36;
}

.custom-filter-select:focus {
    outline: none;
    border-color: #DC143C;
    /* box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.2); */
}

.custom-filter-select option {
    background-color: #8B0000;
    color: white;
    padding: 10px;
}

.dropdown-icon-custom {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #FFD700;
    font-size: 14px;
}

.cook-time-section {
    padding: 15px 10px;
}

.cook-time-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.cook-time-label {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

.cook-time-value {
    color: #fff;
    font-size: 1.1rem;
    font-weight: bold;
}

.slider-wrapper {
    position: relative;
}
.filter_wrapper {
    padding: 15px 10px;
}
.range-slider {
    width: 100%;
    height: 4px;
    background: #f93825;
    outline: none;
    border-radius: 10px;
    -webkit-appearance: none;
    cursor: pointer;
}

.range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 12px solid #FFD700;
    cursor: pointer;
    position: relative;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    top: -15px;
}

.range-slider::-moz-range-thumb {
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 12px solid #FFD700;
    cursor: pointer;
    border-radius: 0;
    background: transparent;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    top: -15px;
}

.range-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 0;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 500;
}
.view_recipes_btn:hover {
    background: #e92620;
    color: #fff;
}
.view_recipes_btn:hover img {
    filter: brightness(0) invert(1);
}

@media (max-width: 768px) {
    .custom-filter-select {
        font-size: 0.9rem;
        padding: 12px 40px 12px 20px;
    }

    .cook-time-label,
    .cook-time-value {
        font-size: 0.9rem;
    }
    
    .range-slider::-webkit-slider-thumb {
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-top: 11px solid #FFD700;
    }
    
    .range-slider::-moz-range-thumb {
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-top: 11px solid #FFD700;
    }
}

.recipes-banner-sec {
    background: #640001 url('../images/custom/recipes-banner-bg.webp') center/cover no-repeat;
    padding: 100px 0 40px;
    position: relative;
    overflow: hidden; 
}

.recipes-banner-sec .static-circles-wrapper {
    position: absolute;
    top: 45%; 
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 1300px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end; 
    z-index: 1;
    pointer-events: none;
    height: 480px;
    padding: 0 40px; 
}

.recipes-banner-sec .circle-bg {
    border-radius: 50%;
    border: 3px solid #e92620;
}

.recipes-banner-sec .side-circle {
    width: 250px;
    height: 250px;
    background: linear-gradient(-157deg, #6c0a0e 0%, #450001 100%);
}

.recipes-banner-sec .center-circle {
    width: 480px;
    height: 480px;
    background-color: #df232a;
    border-width: 6px;
}

.recipes-banner-sec .recipe-banner-slider {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1450px !important;
    margin: 0 auto;
    overflow: hidden; 
}

.recipes-banner-sec .recipe-banner-slider .slick-list {
    overflow: hidden !important; 
    padding: 10px 0px 0px 0px !important;
}

.recipes-banner-sec .recipe-banner-slider .slide {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    height: 650px;
    outline: none;
    overflow: visible;
    padding-bottom: 20px;
}

/* Image Box */
/* .recipes-banner-sec .slider-recipe-box {
    margin-bottom: 25px;
} */

.recipes-banner-sec .slick-center .slider-recipe-box {
    margin-bottom: 10px;
}

.recipes-banner-sec .slider-recipe-box img {
    transition: all 0.6s ease;
    transform: scale(0.6);
    opacity: 0.1; 
}

.recipes-banner-sec .slick-center img {
    transform: scale(1.04) !important;
    opacity: 1 !important;
    height: 310px !important;
    position: relative;
    top: 40px;
    filter: drop-shadow(0px 25px 35px rgba(0, 0, 0, 0.35));
}

.recipes-banner-sec .slick-active img {
    opacity: 1;
    /* height: 260px; */
    height: 240px;
    /* transform: scale(1); */
}

.recipes-banner-sec .recipe-banner-slider .recipe-title {
    text-align: center;
    margin-top: 15px;
    width: 100%;
    font-size: 24px;
    font-family: 'Billgates';
    transform: rotate(-18deg);
    position: relative;
    left: 30px;
    top: -5px;
    line-height: 1.2;
}

.recipes-banner-sec .slick-center .recipe-title {
    font-size: 38px;
    position: relative;
    top: -408px;
    left: -58px;
    line-height: 55px;
}

.recipes-banner-sec .slick-center .recipe-title .recipe_subtitle {
    position: relative;
    top: -12px;
}

.recipes-banner-sec .custom-arrow {
    position: absolute;
    top: 60%;
    transform: translateY(-50%);
    z-index: 99;
    background: none;
    border: none;
    cursor: pointer;
}

.recipes-banner-sec .slick-prev { left: 10px; }
.recipes-banner-sec .slick-next { right: 10px; }

.recipes-banner-sec .static-circles-wrapper .center-circle .left-img {
    position: absolute;
    left: -50px;
    top: 40px;
}

.recipes-banner-sec .static-circles-wrapper .center-circle .right-img {
    right: 28px;
    position: absolute;
    transform: rotate(45deg);
}

.recipes-banner-sec .banner-btns {
    position: relative;
    top: -25px;
}
.recipes-sidebar img {
    width: 50px;
}
  #bbq-grid-wrapper { position: relative; min-height: 500px; }
    /* #recipe-ajax-loader {
        display: none;
        position: absolute;
        top: 0; left: 0; width: 100%; height: 100%;
        background: rgba(255, 255, 255, 0.7);
        z-index: 100;
        border-radius: 15px;
    } */
     #recipe-ajax-loader {
    display: none;
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    background: rgba(255, 255, 255, 0.8); 
    z-index: 999999; 
    border-radius: 0; 
}

.loader-inner-content { 
    position: absolute; 
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%); 
    text-align: center; 
}

#recipe-ajax-loader {
    display: none;
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    z-index: 999999; 
    border-radius: 0; 
}

.loader-inner-content { 
    position: absolute; 
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%); 
    text-align: center; 
}

.loader-inner-content .spinner-border {
    width: 3rem;
    height: 3rem;
}


.bbq-modal-popup {
  display: none;
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  overflow-y: auto;
}
.bbq-modal-dialog {
  margin: 50px auto;
  padding: 20px;
  border-radius: 15px;
  width: 1100px;
  max-width: 95%;
  position: relative;
 border-style: solid;
  border-width: 2px;
  border-color: rgb(233, 38, 32);
  border-radius: 40px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 23px 32px 0px rgba(69, 2, 5, 0.22);
}
.bbq-modal-close {
    position: absolute;
    right: 40px;
    top: 36px;
    font-size: 35px;
    cursor: pointer;
    z-index: 999;
    background: #ffffff;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
}
.popup-header{
border-radius: 20px;
  background-image: -moz-linear-gradient( 90deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.6) 100%);
  background-image: -webkit-linear-gradient( 90deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.6) 100%);
  background-image: -ms-linear-gradient( 90deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.6) 100%);
   height: 455px;
  background-blend-mode: overlay;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 20px !important;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    padding: 40px 30px !important;
}

#bbq-popup-title {
    font-size: 36px;
    font-family: 'Billgates';
    color: #f9e036;
    width: 340px;
    transform: rotate(-15deg);
}
.popup-header-bottom-box{
    border-style: solid;
    border-width: 2px;
    border-color: rgb(233, 38, 32);
    background-color: rgba(0, 0, 0, 0.62);
    box-shadow: 0px 20px 38px 0px rgba(255, 32, 25, 0.43);
    display: flex;
    gap: 30px;
    padding: 10px 20px;
    border-radius: 50px;
}
.popup-header-bottom-box .box-title {
    color: #f9a6a6;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: bold;
    text-align: left;
}
.popup-header-bottom-box .box-data  {
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    line-height: 1;
    text-align: left;
}
.popup-header-bottom-box img {
    width: 34px;
    margin-right: 4px;
}
#popIngredientsList {
    list-style: none;
    padding-left: 0;
    counter-reset: ingredient;
    column-count: 2;
    column-gap: 40px;
}

#popIngredientsList li {
    counter-increment: ingredient;
    position: relative;
    padding-left: 50px;
    margin-bottom: 14px;
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
    font-size: 18px;
    line-height: 1.6;
    color: #000;
}

#popIngredientsList li::before {
    content: counter(ingredient);
    position: absolute;
    left: 0;
    top: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;

    border-style: solid;
    border-width: 2px;
    border-color: rgb(233, 38, 32);
    border-radius: 13px;
    background-color: rgb(0, 0, 0);
    color: #f9e036;

    font-weight: 700;
    font-size: 14px;
}

.popup-Recipe-title {
    font-family: 'Billgates';
    font-size: 40px;
    margin-bottom: 30px !important;
}
.recipes-box {
    transition: all 0.3s ease;
}

.recipes-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.popup-ingredients-sec{
    background-color: rgb(175, 20, 26);
    border-radius: 20px;
    padding: 20px 30px;
    margin-top: 30px;
}



.modal-ingredients-list-items {
    list-style: none;
    padding-left: 0;
    margin: 0;
    column-count: 2;
    column-gap: 40px;
}

.modal-ingredients-list-items li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    color: #fff;
    font-size: 18px;
    line-height: 1.4;
}

.modal-ingredients-list-items li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 0;
    height: 0;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 12px solid #f9e036; 
}
.popup-ingredients-title {
    font-size: 26px;
    font-family: 'Billgates';
    color: #f9e036;
    margin-bottom: 20px;
}
.special-ingred-title {
    font-size: 18px;
    color: #fff;
    font-weight: bold;
    width: 80%;
}      
.popup-btn {
    background: #000000;
    color: #fff;
    text-decoration: none;
    padding: 6px 24px 6px 9px;
    border-radius: 50px;
    border: 2px solid #f9e036;
    font-size: 18px;
    font-weight: bold;
    display: inline-flex !important;
    align-items: center !important;
}   
.popup-btn:hover{
    color:#fff;
}
@media (max-width: 575.98px) {
 #bbq-popup-title {
    font-size: 24px;
    width: 240px;
}
 .mobile-column {
    flex-direction: column;
  }
  .popup-header-bottom-box.left {
    margin-bottom: 10px;
}
.modal-ingredients-list-items {
    column-count: 1;
}
#popIngredientsList {
    column-count: 1;
}
.popup-header {
    height: 380px;
}
}
li.page-item.disabled a.page-link {
    background: transparent;
}
li.page-item.disabled span.page-link {
    background: transparent;
}
@media (min-width: 992px) {
    .toggle-content-mobile {
        display: block !important;
    }
}
.toggle-sidebar-trigger {
    cursor: pointer;
}
.inside-banner-sec{
    /* background: #640001 url(../images/custom/inner-rays-bg.png) center / cover no-repeat; */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 160px 0 60px;
    position: relative;
    overflow: hidden;
}
.inside-banner-title{
    text-align: center;
    margin-top: 15px;
    width: 100%;
    font-size: 64px;
    font-family: 'Billgates';
    line-height: 1.2;
    color: #fff;
}
.contact_info_sec {
    padding: 60px 0px;
}
.contact-info-card {
    background: #fff;
    padding: 30px 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border:1px solid #290001;
    border-radius: 16px;
    /* display: flex; */
    flex-direction: column;
}
.contact_page_cards .col-lg-4:nth-child(2) .contact-info-card{
  background-color: rgb(255 242 242);
}
.contact_page_cards .col-lg-4:nth-child(3) .contact-info-card{
  /* background: linear-gradient(313deg, rgb(247 207 208) 0%, rgb(249 199 200) 100%); */
    background: linear-gradient(313deg, rgb(247 207 208) 0%, rgb(255 242 242) 100%);
}
.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(98, 154, 65, 0.15);
}

.contact-icon-circle.shadowed {
    box-shadow: 0 0 30px rgb(100 0 1 / 39%);
}

.contact-icon-circle {
    width: 130px;
    height: 130px;
    background: linear-gradient(#fff, #fff) padding-box, linear-gradient(135deg, #640001, #640001) border-box;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 35px rgba(98, 154, 65, 0.3);
    border: 4px solid transparent;
}

.contact-icon-circle img {
    width: 65px;
    height: auto;
}

.contact-phone-number {
    color: #4a7c2c;
    font-weight: 700;
    font-size: 1.1rem;
}

.btn-green-nhf-pill {
    background-color: #386c1a;
    color: #fff;
    border-radius: 50px;
    padding: 12px 35px;
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    transition: all 0.3s ease;
    margin-top: auto;
    width: fit-content;
    align-self: center;
}

.btn-green-nhf-pill:hover {
    background-color: #3d6b24;
    color: #fff;
    transform: scale(1.02);
}

.btn-submit-custom {
    background-color: #4a7c2c;
    color: #fff;
    border-radius: 50px;
    padding: 12px 35px;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.btn-submit-custom:hover {
    background-color: #3d6b24;
    color: #fff;
}

.contact-main-section {
    background-color: #f2f5f7; 
}

.contact-form-wrapper {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.contact-form-content .form-control {
    border-radius: 10px;
    padding: 12px 15px;
    border: 1px solid #ced4da;
    transition: all 0.3s ease;
}

.contact-form-content .form-control:focus {
    border-color: #629a41;
    box-shadow: 0 0 0 0.25rem rgba(98, 154, 65, 0.25);
    outline: none;
}

.contact-form-content .form-label {
    color: #333;
    margin-bottom: 0.5rem;
}
.main_contact_sec {
    padding-bottom: 60px;
}
.contact-form-redesign-wrapper {
    background-color: #fff;
    overflow: hidden;
        box-shadow: 0 0 30px rgb(100 0 1 / 39%);
        border: 2px solid rgb(41 0 1);
    border-radius: 20px;
        background-color: rgb(255 242 242);
}

.contact-image-col {
    /* background-image: url(../images/custom//banner-circle-img-1.webp); */
    background-size: cover;
    background-position: center;
    min-height: 500px;
}

.contact-form-col {
   background-color: rgb(255 242 242);
    padding: 60px 45px;
}

.contact-form-col h2 {
    color: #000;
    font-weight: 800;
    font-size: 2.3rem;
    line-height: 1.2;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.contact-form-col p {
    margin-bottom: 0px;
}

.custom-form-group {
    margin-bottom: 22px;
}

.custom-form-group label {
    display: block;
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.custom-form-control {
    width: 100%;
    padding: 12px 20px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    color: #333;
    border:2px solid rgb(122, 156, 62);
    border-radius: 8px;
    background-color: rgb(255, 255, 255);
}

.custom-form-control::placeholder {
    color: #999;
}

.custom-form-control:focus {
    outline: none;
    border-color: #4a7c2c;
    box-shadow: 0 4px 15px rgba(98, 154, 65, 0.15);
}

.contact-form-col input {
    border-radius: 8px;
    background-color: rgb(255, 255, 255);
    height: 48px;
}
.contact-form-col textarea {
    border-radius: 8px;
    background-color: rgb(255, 255, 255);
}
.contact-form-col .wpcf7-submit {
    background: #350000 !important;
    color: #fff;
    border-radius: 50px !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    transition: all 0.35s ease;
    overflow: hidden;
    padding: 12px 40px;
    height: unset !important;
    border: 2px solid var(--color-secondary) !important;
    margin-top: 20px;
}
.contact-form-col label {
    font-size: 18px;
    margin-bottom: 10px;
    margin-top: 10px;
    font-weight: bold;
}
.product_cta{
    border-width: 2px;
    border-color: rgb(254, 59, 39);
    border-radius: 20px;
    background-image: -moz-linear-gradient( 90deg, rgb(106,9,9) 0%, rgb(198,38,44) 100%);
    background-image: -webkit-linear-gradient(90deg, rgb(106, 9, 9) 0%, rgb(198, 38, 44) 100%);
    background-image: -ms-linear-gradient( 90deg, rgb(106,9,9) 0%, rgb(198,38,44) 100%);
    box-shadow: 0px -32px 45px 0px rgba(4, 4, 0, 0.17);
    padding: 25px 40px;
    overflow: hidden;
}
.contact_product_sec .title {
    font-size: 44px;
    color: #fff;
    margin-bottom: 0;
    font-family: 'Billgates';
}
@media (max-width:768.98px){
    .inside-banner-sec{
           padding: 130px 0 40px; 
    }
    .inside-banner-title {
        font-size: 44px;
    }
    .contact-form-col {
        padding: 40px 30px;
    }
    .contact-form-col h2{
      font-size: 2rem;  
    }
    .contact_product_sec .title {
        font-size: 34px;
    }
}

/* ===== CART PAGE ===== */

.woocommerce table.shop_table {
    background: transparent;
}

.woocommerce table.shop_table th {
    background: #f7f7f7;
    color: #333;
    font-weight: 600;
    border: none;
    padding: 15px;
}
.woocommerce table.shop_table tbody tr {
    background: #ffffff;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    border-radius: 12px;
}
.woocommerce table.shop_table td {
    border: none;
    padding: 18px 15px;
    color: #222;
}

.woocommerce table.shop_table td a {
    color: #df232a;
    font-weight: 600;
    text-decoration: none;
}

.woocommerce table.shop_table td a:hover {
    text-decoration: underline;
}

.quantity input[type=number] {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 8px;
    width: 70px;
    text-align: center;
}

.woocommerce a.remove {
    color: #df232a !important;
    font-size: 18px;
}

.woocommerce a.remove:hover {
    background: #df232a;
    color: #fff !important;
    border-radius: 50%;
}

td.actions .button {
    background: #df232a !important;
    color: #fff !important;
    border-radius: 30px;
    padding: 10px 25px;
    font-weight: 600;
}

td.actions .button:hover {
    background: #b91c22 !important;
}

.woocommerce .cart-collaterals .cart_totals {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

a.checkout-button.button.alt {
    background: #df232a;
    border-radius: 35px;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
}

a.checkout-button.button.alt:hover {
    background: #b91c22;
}
.woocommerce table.shop_table th, .woocommerce table.shop_table td {
    border: 0.3px solid #ebe6e6;
}
a.checkout-button.button.alt.wc-forward {
    margin-bottom: 0;
}
table caption+thead tr:first-child td, table caption+thead tr:first-child th, table colgroup+thead tr:first-child td, table colgroup+thead tr:first-child th, table thead:first-child tr:first-child td, table thead:first-child tr:first-child th{
    border-block-start: 1px solid hsl(0deg 11.11% 91.18%);
}
/* .woocommerce-cart table.shop_table {
    background: #111;
    border-radius: 20px;
    overflow: hidden;
    border: none;
}

.woocommerce-cart thead th {
    background: #8b0000;
    color: #ffd84d;
    text-transform: uppercase;
    font-weight: 700;
}

.woocommerce-cart tbody td {
    background: #111;
    border-color: #222;
    color: #fff;
}

.woocommerce-cart td.product-name a {
    color: #ffd84d;
    font-weight: 600;
}

.woocommerce-cart .quantity input.qty {
    background: #000;
    color: #ffd84d;
    border: 1px solid #ffd84d;
    border-radius: 999px;
    padding: 6px 12px;
}

.woocommerce-cart .button,
.woocommerce-cart button.button {
    background: linear-gradient(135deg, #ffcc00, #ff8c00);
    color: #000;
    font-weight: 700;
    border-radius: 999px;
    padding: 10px 28px;
    border: none;
    transition: 0.3s;
}

.woocommerce-cart .button:hover {
    transform: scale(1.05);
}

.woocommerce-cart a.remove {
    color: #ff4d4d !important;
    font-size: 22px;
}

.woocommerce-cart .cart_totals {
    background: #111;
    border-radius: 20px;
    padding: 30px;
}

.woocommerce-cart .cart_totals h2 {
    color: #ffd84d;
    font-size: 26px;
} */

/* ===== CHECKOUT PAGE ===== */

/* ===== CHECKOUT PAGE ===== */
.woocommerce table.shop_table tfoot td {
    color: #fff;
}
.checkout_wrapper_sec {
    padding: 60px 0px;
}

#customer_details .col-1, #customer_details .col-2 {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    margin-bottom: 25px;
}

.woocommerce-checkout input.input-text, 
.woocommerce-checkout select, 
.woocommerce-checkout textarea {
    border-radius: 8px !important;
    padding: 12px 15px !important;
    border: 1px solid #ddd !important;
    background: #f9f9f9 !important;
    transition: 0.3s;
}

.woocommerce-checkout input.input-text:focus {
    border-color: #df232a !important;
    background: #fff !important;
    box-shadow: 0 0 0 3px rgba(223, 35, 42, 0.1);
}

#order_review_heading {
    /* font-family: 'Billgates', sans-serif; */
    color: #df232a;
    font-size: 32px;
}

#order_review {
    /* background: #fff;
    padding: 30px;
    border-radius: 20px; */
    border: 2px solid #df232a; 
        background: #111;
    border-radius: 20px;
    padding: 30px;
    color: #fff;
}


.shop_table.woocommerce-checkout-review-order-table {
    border: none !important;
}

.shop_table.woocommerce-checkout-review-order-table thead th {
    background: #df232a;
    color: #fff;
    /* border-radius: 10px 10px 0 0; */
    padding: 15px !important;
}

#place_order {
    background-color: #df232a !important;
    color: #fff !important;
    padding: 15px 30px !important;
    font-size: 20px !important;
    font-weight: 800 !important;
    border-radius: 50px !important;
    width: 100%;
    margin-top: 20px;
    transition: 0.4s;
    text-transform: uppercase;
}

#place_order:hover {
    background-color: #000 !important;
    color: #f9e036 !important; 
}

.woocommerce-form-coupon-toggle .woocommerce-info,
.woocommerce-checkout .woocommerce-info {
    border-top-color: #df232a !important; 
    background-color: #fff !important;
    color: #333 !important;
    padding: 16px 25px 16px 50px !important; 
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    font-weight: 600;
    font-size: 16px;
    position: relative;
    border-left: none !important;
    border-right: none !important;
    border-bottom: none !important;
    margin-bottom: 20px !important;
}

.woocommerce-form-coupon-toggle .woocommerce-info::before,
.woocommerce-checkout .woocommerce-info::before {
    color: #df232a !important;
    content: "\f02c" !important; 
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900;
    left: 20px !important; 
    top: 18px !important;
}

.woocommerce-form-coupon-toggle .woocommerce-info a.showcoupon {
    color: #df232a !important;
    text-decoration: none;
    border-bottom: 2px dashed #df232a;
    padding-bottom: 2px;
    margin-left: 5px;
    transition: 0.3s;
}

.woocommerce-form-coupon-toggle .woocommerce-info a.showcoupon:hover {
    color: #000 !important;
    border-bottom-color: #000;
}

form.checkout_coupon {
    border: 2px solid #eee !important;
    border-radius: 15px !important;
    padding: 25px !important;
    margin-top: 15px !important;
    background: #f9f9f9;
}

form.checkout_coupon input.input-text {
    border-radius: 50px !important;
    padding: 12px 20px !important;
    border: 1px solid #ddd !important;
}

form.checkout_coupon button.button {
    background-color: #000 !important;
    color: #f9e036 !important; 
    border-radius: 50px !important;
    padding: 10px 25px !important;
    font-weight: bold;
    text-transform: uppercase;
}
/* -----  */

.cart_wrapper_sec {
    padding: 60px 0px;
}
a.checkout-button.button.alt.wc-forward {
    font-size: 18px;
    color: #fff;
    border-radius: 50px;
    padding: 18px 25px 18px 70px !important;
    background: #df232a;
}
table.shop_table.shop_table_responsive {
    color: #fff;
}
#add_payment_method table.cart img, .woocommerce-cart table.cart img, .woocommerce-checkout table.cart img {
    width: 72px;
    box-shadow: none;
}
input#coupon_code {
    width: 140px;
    border-radius: 4px;
}
p.form-row.form-row-first input#coupon_code {
    width: 100%;
}
    .add_to_cart_btn {
    position: relative;
}

.add_to_cart_btn.added {
    background: #640001;
    color: #fff;
}
.header-wrapper .social-icons .bbq-cart-link {
    font-size: 20px;
    background: #600001 !important;
}
span.cart-contents-count
 {
    font-size: 14px !important;
    width: 30px;
    height: 30px;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}
#toast-notification {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(-30px);
    min-width: 320px;
    max-width: 90%;
    padding: 14px 20px;
    background: #222;
    color: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    font-size: 14px;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
}

#toast-notification.success {
    background: linear-gradient(135deg, #28a745, #218838);
}

#toast-notification.warning {
    background: linear-gradient(135deg, #ff9800, #f57c00);
}

#toast-notification .toast-title {
    font-weight: 600;
    margin-bottom: 4px;
}

#toast-notification.show {
    animation: slideDown 0.45s ease forwards,
               fadeOutUp 0.4s ease 3s forwards;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes fadeOutUp {
    to {
        opacity: 0;
        transform: translateX(-50%) translateY(-30px);
    }
}
.empty_wrapper_sec {
    padding:60px 0px;
}

/* Empty Cart Notification Box */
.woocommerce-cart .woocommerce-info {
    border-top-color: #df232a !important; /* BBQ Red Top Border */
    background-color: #fff !important;
    color: #333 !important;
    padding: 16px 25px 16px 50px !important; /* Proper spacing for icon */
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    font-weight: 600;
    font-size: 16px;
    position: relative;
    border-left: none !important;
    border-right: none !important;
    border-bottom: none !important;
    margin-bottom: 30px !important;
}


.woocommerce-cart .woocommerce-info::before {
    color: #df232a !important;
    content: "\f07a" !important; 
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900;
    left: 20px !important;
    top: 18px !important;
    position: absolute;
}

.woocommerce-cart .return-to-shop a.button {
    background-color: #df232a !important; 
    color: #fff !important;
    padding: 12px 30px !important;
    border-radius: 50px !important; 
    font-weight: 700 !important;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none !important;
    display: inline-block;
    text-decoration: none;
}

.woocommerce-cart .return-to-shop a.button:hover {
    background-color: #000 !important; 
    color: #f9e036 !important;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Thank You / Order Received Page Overhaul */
.woocommerce-order-received .woocommerce-thankyou-order-received {
    border-top: 4px solid #df232a !important; 
    background-color: #fff !important;
    color: #333 !important;
    padding: 20px 25px 20px 50px !important;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    font-weight: 600;
    font-size: 18px;
    position: relative;
    margin-bottom: 30px;
}

.woocommerce-order-received .woocommerce-thankyou-order-received::before {
    color: #df232a !important;
    content: "\f058" !important; 
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900;
    position: absolute;
    left: 20px;
}

ul.woocommerce-thankyou-order-details {
    background: #f9f9f9;
    padding: 20px !important;
    border-radius: 10px;
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    border: 1px solid #eee;
}

ul.woocommerce-thankyou-order-details li {
    font-size: 14px;
    text-transform: uppercase;
    color: #666;
}

ul.woocommerce-thankyou-order-details li strong {
    display: block;
    color: #df232a; 
    font-size: 16px;
}
.woocommerce-table--order-details {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #eee !important;
}

.woocommerce-table--order-details thead th {
    background-color: #df232a !important;
    color: #fff !important;
    text-transform: uppercase;
    padding: 15px !important;
}
.thankyou_wrapper_sec {
    padding: 60px 0px;
}

.woocommerce-MyAccount-navigation {
    flex: 0 0 250px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-top: 4px solid #df232a; 
}

.woocommerce-MyAccount-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.woocommerce-MyAccount-navigation ul li {
    border-bottom: 1px solid #f2f2f2;
}

.woocommerce-MyAccount-navigation ul li a {
    display: block;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.woocommerce-MyAccount-navigation ul li.is-active a,
.woocommerce-MyAccount-navigation ul li a:hover {
    background-color: #df232a;
    color: #fff !important;
}

.woocommerce-MyAccount-content {
    flex: 1;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-top: 4px solid #df232a; 
}

.woocommerce-EditAccountForm input.input-text, 
.woocommerce-address-fields input.input-text {
    border-radius: 8px !important;
    padding: 12px !important;
    border: 1px solid #ddd !important;
}

.woocommerce-EditAccountForm .button, 
.woocommerce-address-fields .button {
    background-color: #df232a !important;
    border-radius: 50px !important;
    padding: 12px 30px !important;
    color: #fff !important;
    font-weight: 700;
}
.myaccount_wrapper_sec{
    padding: 60px 0px;
    display: table;
    width: 100%;
}

.woocommerce-account .woocommerce-info,
.woocommerce-account .woocommerce-message,
.woocommerce-account .woocommerce-error {
    border-top: 4px solid #df232a !important;
    background-color: #efefef !important;
    color: #333 !important;
    padding: 16px 25px 16px 50px !important;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    position: relative;
    border-left: none !important;
    border-right: none !important;
    border-bottom: none !important;
    margin-bottom: 25px !important;
}


.woocommerce-account .woocommerce-info::before {
    color: #df232a !important;
    content: "\f05a" !important; 
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900;
    left: 20px !important;
    top: 18px !important;
    position: absolute;
}

.woocommerce-account .woocommerce-info .button.wc-forward {
    background-color: #df232a !important; 
    color: #fff !important;
    padding: 8px 20px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    font-size: 13px;
    float: right;
    transition: 0.3s ease;
    border: none !important;
    margin-top: -4px; 
}

.woocommerce-account .woocommerce-info .button.wc-forward:hover {
    background-color: #000 !important; 
    color: #f9e036 !important; 
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
header.woocommerce-Address-title.title h2 {
    font-size: 24px;
}
.woocommerce-account .addresses .title .edit {
    float: left;
}
table.woocommerce-orders-table thead {
    background-color: #df232a !important;
    color: #fff !important;
    text-transform: uppercase;
    padding: 15px !important;
}
table.woocommerce-orders-table td {
    color: #000;
}
/* Login  */

.woocommerce-account .u-columns.col2-set {
    display: flex;
    /* gap: 40px; */
    /* margin-top: 120px !important; */
    padding: 0px; 
    background: #fff;
    border-radius: 20px;
    /* box-shadow: 0 10px 30px rgba(0,0,0,0.08); */
    /* max-width: 1000px; */
    margin-left: auto;
    margin-right: auto;
}

.woocommerce-account .u-column1, 
.woocommerce-account .u-column2 {
    flex: 1;
    padding: 20px;
}

.woocommerce-account .form-row input.input-text {
    border-radius: 8px !important;
    padding: 12px 15px !important;
    border: 1px solid #ddd !important;
    background: #fcfcfc !important;
}

.woocommerce-account .button {
    background-color: #df232a !important;
    color: #fff !important;
    padding: 12px 30px !important;
    border-radius: 50px !important;
    font-weight: 800 !important;
    text-transform: uppercase;
    /* width: 100%; */
    margin-top: 15px;
    transition: 0.3s ease;
    text-align: center;
}

.woocommerce-account .button:hover {
    background-color: #000 !important;
    color: #f9e036 !important;
}

.woocommerce-form-login__rememberme {
    margin-bottom: 15px;
    display: block;
}

.woocommerce-LostPassword a {
    color: #df232a;
    font-weight: 600;
    text-decoration: none;
}

.woocommerce-message {
    border-top: 4px solid #df232a !important; 
    background-color: #fff !important;
    color: #333 !important;
    padding: 16px 25px 16px 50px !important;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    font-weight: 600;
    font-size: 16px;
    position: relative;
    border-left: none !important;
    border-right: none !important;
    border-bottom: none !important;
    margin-bottom: 25px !important;
}

.woocommerce-message::before {
    color: #df232a !important; 
    content: "\f058" !important;
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900;
    left: 20px !important;
    top: 18px !important;
    position: absolute;
    background: transparent !important;
}

.woocommerce-message .button {
    background-color: #df232a !important;
    color: #fff !important;
    border-radius: 50px !important;
    padding: 12px 20px !important;
    float: right;
    margin-top: -4px;
    font-size: 13px;
    text-transform: uppercase;
}

/* Faq Page Css  */
.inside-banner-sec{
    /* background: #640001 url(../images/custom/inner-rays-bg.png) center / cover no-repeat; */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 160px 0 60px;
    position: relative;
    overflow: hidden;
}
.inside-banner-title{
    text-align: center;
    margin-top: 15px;
    width: 100%;
    font-size: 64px;
    font-family: 'Billgates';
    line-height: 1.2;
    color: #fff;
}
/* Contact Page Styles */
.contact_info_sec {
    padding: 60px 0px;
}
.contact-info-card {
    background: #fff;
    padding: 30px 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border:1px solid #290001;
    border-radius: 16px;
    /* display: flex; */
    flex-direction: column;
}
.contact_page_cards .col-lg-4:nth-child(2) .contact-info-card{
  background-color: rgb(255 242 242);
}
.contact_page_cards .col-lg-4:nth-child(3) .contact-info-card{
  background: linear-gradient(313deg, rgb(247 207 208) 0%, rgb(249 199 200) 100%);
}
.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(98, 154, 65, 0.15);
}

.contact-icon-circle.shadowed {
    box-shadow: 0 0 30px rgb(100 0 1 / 39%);
}

.contact-icon-circle {
    width: 130px;
    height: 130px;
    background: linear-gradient(#fff, #fff) padding-box, linear-gradient(135deg, #640001, #640001) border-box;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 35px rgba(98, 154, 65, 0.3);
    border: 4px solid transparent;
}

.contact-icon-circle img {
    width: 65px;
    height: auto;
}

.contact-phone-number {
    color: #4a7c2c;
    font-weight: 700;
    font-size: 1.1rem;
}

.btn-green-nhf-pill {
    background-color: #386c1a;
    color: #fff;
    border-radius: 50px;
    padding: 12px 35px;
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    transition: all 0.3s ease;
    margin-top: auto;
    width: fit-content;
    align-self: center;
}

.btn-green-nhf-pill:hover {
    background-color: #3d6b24;
    color: #fff;
    transform: scale(1.02);
}

.btn-submit-custom {
    background-color: #4a7c2c;
    color: #fff;
    border-radius: 50px;
    padding: 12px 35px;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.btn-submit-custom:hover {
    background-color: #3d6b24;
    color: #fff;
}

/* Contact Page Main Area */
.contact-main-section {
    background-color: #f2f5f7; 
}

.contact-form-wrapper {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.contact-form-content .form-control {
    border-radius: 10px;
    padding: 12px 15px;
    border: 1px solid #ced4da;
    transition: all 0.3s ease;
}

.contact-form-content .form-control:focus {
    border-color: #629a41;
    box-shadow: 0 0 0 0.25rem rgba(98, 154, 65, 0.25);
    outline: none;
}

.contact-form-content .form-label {
    color: #333;
    margin-bottom: 0.5rem;
}
.main_contact_sec {
    padding-bottom: 60px;
}
/* Redesigned Contact Form Section */
.contact-form-redesign-wrapper {
    background-color: #fff;
    overflow: hidden;
        box-shadow: 0 0 30px rgb(100 0 1 / 39%);
        border: 2px solid rgb(41 0 1);
    border-radius: 20px;
        background-color: rgb(255 242 242);
}

.contact-image-col {
    /* background-image: url(../images/custom//banner-circle-img-1.webp); */
    background-size: cover;
    background-position: center;
    min-height: 500px;
}

.contact-form-col {
   background-color: rgb(255 242 242);
    padding: 60px 45px;
}

.contact-form-col h2 {
    color: #000;
    font-weight: 800;
    font-size: 2.3rem;
    line-height: 1.2;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.contact-form-col p {
    margin-bottom: 0px;
}

.custom-form-group {
    margin-bottom: 22px;
}

.custom-form-group label {
    display: block;
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.custom-form-control {
    width: 100%;
    padding: 12px 20px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    color: #333;
    border:2px solid rgb(122, 156, 62);
    border-radius: 8px;
    background-color: rgb(255, 255, 255);
}

.custom-form-control::placeholder {
    color: #999;
}

.custom-form-control:focus {
    outline: none;
    border-color: #4a7c2c;
    box-shadow: 0 4px 15px rgba(98, 154, 65, 0.15);
}

.contact-form-col input {
    border-radius: 8px;
    background-color: rgb(255, 255, 255);
    height: 48px;
}
.contact-form-col textarea {
    border-radius: 8px;
    background-color: rgb(255, 255, 255);
}
.contact-form-col .wpcf7-submit {
    background: #350000 !important;
    color: #fff;
    border-radius: 50px !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    transition: all 0.35s ease;
    overflow: hidden;
    padding: 12px 40px;
    height: unset !important;
    border: 2px solid var(--color-secondary) !important;
    margin-top: 20px;
}
.contact-form-col label {
    font-size: 18px;
    margin-bottom: 10px;
    margin-top: 10px;
    font-weight: bold;
}
.product_cta{
    border-width: 2px;
    border-color: rgb(254, 59, 39);
    border-radius: 20px;
    background-image: -moz-linear-gradient( 90deg, rgb(106,9,9) 0%, rgb(198,38,44) 100%);
    background-image: -webkit-linear-gradient(90deg, rgb(106, 9, 9) 0%, rgb(198, 38, 44) 100%);
    background-image: -ms-linear-gradient( 90deg, rgb(106,9,9) 0%, rgb(198,38,44) 100%);
    box-shadow: 0px -32px 45px 0px rgba(4, 4, 0, 0.17);
    padding: 25px 40px;
    overflow: hidden;
}
.contact_product_sec .title {
    font-size: 44px;
    color: #fff;
    margin-bottom: 0;
    font-family: 'Billgates';
}

/* Faqs */

.cookies-faq-section .sec_title {
    font-size: 30px;
    font-weight: bold;
    color: #b52025;
}
.cookies-heading {
    color: #4b1a11; 
    font-weight: 800;
    text-transform: uppercase;
}

.cookies-faq-section .accordion-item {
    background: #fff;
    border-radius: 15px !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    overflow: hidden;
}

.cookies-faq-section .accordion-button {
    background-color: #fff;
    color: #4b1a11;
    font-weight: 700;
padding: 1.50rem;
    font-size: 1.3rem;
    border: none;
}

.cookies-faq-section .accordion-button:not(.collapsed) {
    background-color: #b52025;
    color: #fff;
    box-shadow: none;
}

.cookies-faq-section .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.cookies-faq-section .accordion-body {
    padding: 1.5rem;
    color: #555;
    line-height: 1.7;
    background-color: #fff;
}

.cookies-faq-section .accordion-button:focus {
    box-shadow: none;
    border: none;
}
.cookies-faq-section .accordion-button {
    border: 1px solid #b52025 !important;
    border-radius: 16px !important;
    background: #b520250f;
}
