/*----------  Genral CSS  ----------*/
* {
    padding: 0;
    margin: 0;
    border: none;
    vertical-align: baseline;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    font-size: 1rem;
    scroll-behavior: smooth !important;
}

body {
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    font-family: 'Arima';
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--brown);
    background-color: var(--body-BG);
    position: relative;
}

:root {
    --body-text-color: #69481E;
    --white: #fff;
    --off-white: #FAFAFA;
    --grey-white: #FFFFFFB2;
    --brown: #362714;
    --light-black: #141414;
    --orange: #FE7F2D;
    --light-blue: #F7F7F7;
    --grey-border: #D9D9D9;
    --grey-secondary-border: #949494;
    --primary-color: #EADECC;
    --secondary-color: #E4D0B6;
    --text-color: #69481E;
    --third-color: #8C8561;
    --button-color: #E3C09B;
    --custom-olive-green: #8C8561;
    --body-BG: #EADECC;
    --title-outline-color: #c98200;
    --box-bg-color: #D1B592;
    --organic-light: #E3C09B;
}

/* For Chrome, Safari, Edge, and Opera */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
    display: none;
}

/* For Internet Explorer */
input[type="search"]::-ms-clear {
    display: none;
    width: 0;
    height: 0;
}


/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

ul,
ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

em,
i {
    font-style: italic;
}

u {
    text-decoration: underline;
}

p {
    margin-bottom: 18px;
}

p:last-child {
    margin-bottom: 0;
}

b,
strong {
    font-weight: 900 !important;
}

a {
    text-decoration: none;
    color: var(--body-text-color);
    transition: color 0.4s ease-in-out;
    -webkit-transition: color 0.4s ease-in-out;
    -moz-transition: color 0.4s ease-in-out;
    -ms-transition: color 0.4s ease-in-out;
    -o-transition: color 0.4s ease-in-out;
}

a:hover {
    text-decoration: none;
    outline: none !important;
}

a:focus {
    text-decoration: none;
    outline: none !important;
}

*:focus {
    outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 400;
}

p {
    color: var(--body-text-color);
    font-size: 18px;
    font-weight: 500;
    font-family: 'Arima';
    line-height: 1.4;
    display: block;
}

img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    /* width: auto; */
    height: auto;
}

.hidden {
    width: 0;
    height: 0;
    display: none
}

.back-to-top {
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    -ms-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: all .3s ease-in-out;
    position: fixed;
    bottom: -50px;
    right: 20px;
    width: 2.75rem;
    height: 2.75rem;
    background: var(--body-text-color);
    border-radius: 4.375rem;
    text-align: center;
    border: 2px solid var(--white);
    opacity: 0;
    overflow: hidden;
    color: var(--white);
}

.back-to-top.active {
    bottom: 40px;
    opacity: 1;
    z-index: 9
}

.back-to-top>div {
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    -ms-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: all .3s ease-in-out
}

.back-to-top>.arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 1;
    height: inherit;
    display: flex;
    align-items: center;
    justify-content: center
}

.back-to-top>.arrow svg {
    fill: var(--white);
    height: 20px;
    width: 100%
}

.back-to-top>.text {
    font-size: .5rem;
    font-weight: 600;
    line-height: 1.2;
    text-transform: uppercase;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateY(50%) translateX(-50%);
    opacity: 0;
    margin-top: 1px
}

.back-to-top:hover {
    transform: scale(1.1);
    bottom: 40px;
    cursor: pointer
}

.back-to-top:hover>.arrow {
    transform: translateY(-150%) translateX(-50%);
    opacity: 0
}

.back-to-top:hover>.text {
    transform: translateY(-50%) translateX(-50%);
    opacity: 1
}

:-webkit-autofill,
:-webkit-autofill:hover,
:-webkit-autofill:focus,
:-webkit-autofill:active {
    -webkit-text-fill-color: #000 !important;
    transition: background-color 5000000s ease-in-out 0s !important;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

h1,
.h1 {
    font-size: 100px;
    font-family: 'Dream Orphans';
    line-height: normal;
}

h2,
.h2 {
    font-size: 52px;
    font-family: 'Dream Orphans';
    line-height: normal;
}

h3,
.h3 {
    font-size: 44px;
    font-family: 'Dream Orphans';
    line-height: normal;
}

h4,
.h4 {
    font-size: 36px;
    font-family: 'Dream Orphans';
    line-height: normal;
}

.h4-sm {
    font-size: 32px;
    font-family: 'Dream Orphans';
    line-height: normal;
    font-weight: 700;
}

h5,
.h5 {
    font-size: 28px;
    font-family: 'Dream Orphans';
    line-height: normal;
}

.h5-sm {
    font-size: 24px;
    line-height: normal;
    color: var(--body-text-color);
    font-weight: 600;
    font-family: 'Arima';
    margin-bottom: 16px;
}

h6,
.h6 {
    font-size: 22px;
    font-family: 'Dream Orphans';
    line-height: normal;
}

/*----------  Common CSS  ----------*/
.wrapper {
    display: block;
    overflow: hidden;
    min-height: 100vh;
    position: relative;
}

.body-fixed {
    overflow: hidden;
}

.container {
    max-width: 1500px;
    padding: 0 30px;
}

.sec-head h1 {
    margin: 0;
    font-weight: 400;
}

.sec-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    display: block;
    color: var(--light-black);
    margin-bottom: 8px;
}

.sec-sub-title {
    display: block;
    color: var(--orange);
    font-weight: 400;
    font-size: 14px;
    line-height: 1.1;
    margin-bottom: 5px;
}

.form-group {
    margin-bottom: 24px;
    display: block;
}

.form-group p {
    position: relative;
}

.form-group p:not(:first-child) {
    margin-bottom: 0;
}

.form-group label {
    padding-bottom: 6px;
    font-family: 'Arima';
    font-size: 14px;
    font-weight: 400;
    color: var(--body-text-color);
}

.form-control {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 52%);
    color: var(--white) !important;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.2;
    padding: 14px 24px;
    border-radius: 8px;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 52%);
    font-size: 13px;
    font-weight: 400;
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--white);
    background-color: transparent;
}

/*----------  Common CSS  ----------*/

.btn {
    border-radius: 30px;
    padding: 11px 30px;
    font-weight: 500;
    font-size: 20px;
    border: 1px solid transparent;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    z-index: 1;
    min-width: 180px;
    transition: all .4s ease-in-out;
}

.btn.btn-orange {
    background-color: var(--orange);
    color: var(--white);
}

.icon {
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-position: center;
    width: 20px;
    min-width: 20px;
    aspect-ratio: 1/1;
    display: block;
    position: relative;
    background-color: currentColor;
    transition: all .4s ease-in-out;
}

.icon.icon-right-arrow {
    mask-image: url(../img/right-arrow.png);
    background-color: #fff;
    width: 14px;
    min-width: 14px;
}

.icon.icon-search {
    mask-image: url(../img/svg/search.svg);
    background-color: #000;
}

.icon.icon-user {
    mask-image: url(../img/user.png);
    background-color: #000;
}

.icon.icon-cart {
    mask-image: url(../img/cart.png);
    background-color: #000;
}

.icon.icon-heart {
    mask-image: url(../img/svg/heart.svg);
    background-color: rgb(255 255 255 / 60%);
    width: 22px;
    min-width: 22px;
}

.icon.icon-facebook {
    mask-image: url(../img/facebook.png);
}

.icon.icon-twitter {
    mask-image: url(../img/svg/twitter.svg);
}

.icon.icon-instagram {
    mask-image: url(../img/svg/instagram.svg);
}

.icon.icon-youtube {
    mask-image: url(../img/svg/youtube.svg);
}

.icon.icon-whatapp {
    mask-image: url(../img/whatapp.png);
}

.icon.icon-categories {
    mask-image: url(../img/svg/cat-icon.svg);
    width: 18px;
    min-width: 18px;
    background-color: #FE7F2D;
}

.icon.icon-date {
    mask-image: url(../img/svg/date.svg);
    width: 22px;
    min-width: 22px;
    background-color: #FE7F2D;
}

.icon.icon-view-more {
    mask-image: url(../img/svg/right-arrow.svg);
    background-color: #FE7F2D;
    width: 15px;
    min-width: 15px;
}

.side-bar .icon.icon-search {
    mask-image: url(../img/search.png);
    width: 20px;
    min-width: 20px;
    background-color: #5B5B5B;
}

/* --------- 404 Page --------- */

.error-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: calc(100vh - 100px);
    text-align: center;
    flex-direction: column;
}

.error-title {
    font-size: clamp(4.375rem, 2.182rem + 9.357vw, 9.375rem);
    font-weight: 700;
    line-height: 1;
    color: var(--brown);
    margin-bottom: clamp(0.938rem, 0.526rem + 1.754vw, 1.25rem);
}

.error-title span {
    color: var(--orange);
}

.error-message {
    font-size: clamp(1rem, 0.89rem + 0.468vw, 1.25rem);
    line-height: 1.4;
    font-weight: 500;
    margin-bottom: clamp(1.25rem, 0.702rem + 2.339vw, 2.5rem);
    color: var(--light-black);
}








/* Header css */
.main-header {
    position: relative;
    z-index: 1;
}

.header-wrapper {
    background: #fff;
    border-radius: 100px;
    padding: 14px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 24px 0 0 0;
}

.header-wrapper .logo {
    max-width: 96px;
    line-height: 0;
}

.nav-menu ul {
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 0;
    margin: 0 0 -4px;
}

.nav-menu a {
    text-decoration: none;
    color: #6d4c2f;
    font-size: 16px;
}

.header-icons {
    display: flex;
    gap: 24px;
    cursor: pointer;
}

.hamburger {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #EADECC;
    box-shadow: 5px 0 15px rgba(0, 0, 0, 0.2);
    transition: 0.4s ease;
    z-index: 99999;
}

.mobile-dropdown:has(.mobile-submenu[style="display: block;"]) .arrow svg {
    transform: rotate(180deg);
}

.mobile-submenu li:not(:first-child) {
    padding-top: 12px;
}

.mobile-drawer.active {
    left: 0;
}

.drawer-content {
    padding: 24px 16px;
}

.drawer-content ul {
    list-style: none;
    padding: 0;
}

.drawer-content li {
    margin-bottom: 12px;
    border-bottom: solid 1px #69481E33;
    padding-bottom: 12px;
    position: relative;
}

.drawer-content a {
    text-decoration: none;
    color: #6d4c2f;
    font-size: 16px;
}

.drawer-content .logo_with_close_icon .logo {
    max-width: 150px;
    width: 100%;
}

.drawer-content .logo_with_close_icon .close-btn {
    font-size: 22px;
    cursor: pointer;
    display: flex;
    margin-bottom: 0;
    position: static;
    align-items: center;
    line-height: 1;
    padding-top: 9px;
}

.drawer-content .logo_with_close_icon {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding-bottom: 40px;
}

.nav-menu ul li {
    position: relative;
}

.nav-menu .submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    width: 200px;
    list-style: none;
    padding: 10px 0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s ease;
    display: block;
}

.drawer-content .logo_with_close_icon {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.nav-menu .submenu li {
    padding: 5px 16px;
}

.nav-menu .submenu li a {
    color: #69481E;
    text-decoration: none;
    font-size: 16px;
}

.nav-menu .dropdown:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.drawer-content li .arrow {
    font-size: 26px;
    margin-left: 5px;
    position: absolute;
    right: 0;
    top: -9px;
    line-height: normal;
}

/* ---------------- MOBILE DROPDOWN ---------------- */

.mobile-submenu {
    display: none;
    padding-left: 0px;
    margin-top: 18px;
}

.mobile-submenu li {
    margin-bottom: 0;
    padding-left: 15px;
}

.drawer-content ul .mobile-submenu li:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.drawer-content ul .mobile-submenu li a {
    font-size: 14px;
}

.search-overlay {
    position: fixed;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: start;
    padding-top: 0px;
    opacity: 0;
    visibility: hidden;
    transition: 0.6s ease;
    z-index: 9999;
}

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

.search-box {
    width: 100%;
    border-radius: 90px;
    position: relative;
    transform: translateY(-50px);
    transition: 0.6s ease;
    max-width: 1440px;
    padding: 0 0px;
}

.search-overlay.active .search-box {
    transform: translateY(24px);
}

body .search-input {
    width: 100%;
    padding: 20px 30px 15px;
    font-size: 18px;
    border: 1px solid #ddd;
    border-radius: 90px;
    margin-bottom: 0px;
    height: 77px;
}

.search-submit {
    padding: 12px 25px;
    background: #69481E;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.search-close {
    position: absolute;
    top: 50%;
    right: 40px;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
    transform: translateY(-45%);
    padding: 0;
    color: var(--body-text-color);
    display: block;
    width: auto;
}

.search-close:hover,
.search-close:focus {
    background: transparent;
    color: var(--body-text-color);
}

/*--- Header css End ----*/

/*-----hero-slider CSS-----*/

.hero-slider {
    margin: -101px 0 0;
    width: 100%;
    position: relative;
}

.slick-dotted.slick-slider {
    margin-bottom: 0;
}

.hero-slide {
    position: relative;
    height: 950px;
    display: flex !important;
    align-items: center;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 1500px;
    padding: 0 30px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 60px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-sub {
    margin-bottom: 40px;
    text-align: left;
    padding: 0;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-btn {
    padding: 12px 24px;
    border-radius: 30px;
    background: transparent;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    transition: 0.3s;
    background: url(../../assets/img/btn_frame.svg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: top center;
    height: 50px;
    max-width: 240px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-transform: uppercase;
    overflow: hidden;
}

.primary_btn {
    background: url(../../assets/img/hero_btn.svg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.secondary_btn {
    background: url(../../assets/img/hero_btn2.svg);
    color: #fff;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.wpcf7-form-control-wrap {
    position: static;
}

.wpcf7-form-control-wrap::before {
    content: "";
    display: block;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.newsletter-input,
.wpcf7-form-control-wrap::before {
    background: url(../../assets/img/email_btn.svg);
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: top center;
    height: 50px;
}

.wpcf7-form-control-wrap[data-name="first_name"]::before,
.wpcf7-form-control-wrap[data-name="last_name"]::before {
    background-image: url(../../assets/img/first-name.svg);
}

.wpcf7-form-control-wrap[data-name="phone"]::before,
.wpcf7-form-control-wrap[data-name="email"]::before,
.wpcf7-form-control-wrap[data-name="message"]::before {
    background-image: url(../../assets/img/phone-number.svg);
}

.newsletter-input {
    position: relative;
    z-index: 2;
}


.hero-badge {
    position: absolute;
    right: 30px;
    top: -2%;
    background: white;
    color: #69481E;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 24px;
    font-weight: 900;
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.3);
}

.hero-btn span {
    margin: 4px 0 0 0;
}

.hero-slider .slick-dots {
    position: absolute;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 0;
    right: 0;
    bottom: 24px;
    gap: 12px;
}

.hero-slider .slick-dots li {
    line-height: 0;
}

.hero-slider .slick-dots button {
    background: #E3C09B;
    opacity: 50%;
    width: 12px;
    height: 12px;
    border-radius: 100px;
    font-size: 0;
    padding: 0;
    border: none;
}

.hero-slider .slick-dots li.slick-active {
    justify-content: center;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    border: solid 1px #E3C09B;
    border-radius: 90px;
}

.hero-slider .slick-dots li.slick-active button {
    opacity: 1;
    width: 10px;
    height: 10px;
}

.slick-dots li button:before {
    color: white;
    font-size: 12px;
}

/*-----hero-slider End-----*/

/*---- FOOTER CSS ----*/

.footer {
    position: relative;
    color: #fff;
    padding: 60px 0 21px;
    background: url('assets/img/footer_bg.png') center/cover no-repeat;
}

.footer-container {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 65px;
    justify-content: space-between;
}

.footer-container .menu_main_newsletter_wrap {
    display: flex;
    gap: 65px;
    width: 100%;
}

.footer-container .menu_main_newsletter_wrap .menu_main_wrap {
    max-width: 198px;
    width: 100%;
}

.footer-container .newsletter_wrap {
    max-width: 457px;
    width: 100%;
}

.menu_main_wrap p {
    color: #FFFFFF;
    font-size: 24px;
    margin: 0 0 10px 0;
}

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

.footer ul li {
    margin-bottom: 6px;
}

.footer ul li:hover {
    opacity: 1;
    cursor: pointer;
}

.footer-container .newsletter_wrap .newsletter-heading {
    font-size: 24px;
}

.footer-container .newsletter_wrap .newsletter-text {
    font-size: 18px;
    margin-bottom: 24px;
    line-height: 1.4;
}

.newsletter-input {
    width: 100%;
    padding: 13px 15px 10px 30px;
    border-radius: 20px;
    border: none;
    outline: none;
    margin-bottom: 0;
}

body .wpcf7-not-valid-tip {
    color: #fff;
    font-size: 0.8em;
    font-weight: normal;
    display: block;
    margin-top: 8px;
    margin-left: 25px;
}

.subscribe-btn {
    width: 100%;
    font-size: 18px;
    font-weight: 700;
    line-height: normal;
    padding: 14px 10px 10px;
    border-radius: 20px;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
    position: relative;
}

.subscribe-btn {
    background: url(../../assets/img/subscribe_btn.svg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    height: 52px;
    color: var(--body-text-color);
    max-width: 457px;
}

.subscribe-btn span {
    line-height: 0;
    margin: 3px 0 0;
}

.footer-bottom {
    position: relative;
    z-index: 2;
    margin-top: 125px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-icons span {
    margin-left: 15px;
    cursor: pointer;
    font-size: 14px;
}

.footer .menu_main_wrap a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: 0.3s;
    font-weight: 500;
}

.footer .menu_main_wrap a:hover {
    opacity: 1;
}

.footer-container .menu_main_newsletter_wrap .menu_main_wrap:last-child {
    max-width: 128px;
}

.footer-container .newsletter_wrap p {
    color: #FFFFFF;
    font-size: 18px;
    margin: 0 0 10px 0;
    position: relative;
}

.footer-bottom .social-icons {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
}

.footer-bottom .list-menu a {
    color: #FFFFFF;
    font-family: 'Arima';
    font-weight: 500;
}

/*-----Footer CSS End-----*/

/*-----Top Bar CSS-----*/
.top-bar {
    background-color: var(--custom-olive-green);
    padding: 10.5px 0;
    text-align: center;
    letter-spacing: 0px;
    margin: -0px 0 0 0;
    position: relative;
    z-index: 1;
}

.top-bar-inner {
    display: flex;
    justify-content: center;
    gap: 0px;
}

.top-bar-inner span {
    line-height: 1.6111111;
    color: var(--white);
    margin: 0 10px 0 15px;
}

.top-bar-inner p {
    margin: 0 0 -4px;
    padding: 0;
    line-height: 1.6111111;
    color: var(--white);
    font-weight: 700;
}

.top-bar-inner hr {
    margin: 0 40px;
    opacity: 1;
    background: #FFFFFF;
    width: 1px;
    height: 26px;
}

/*-----Top Bar CSS End-----*/

/*-----Shop By Category CSS-----*/

.category-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.category-card .category-frame {
    width: 100%;
    position: relative;
    line-height: 0;
    height: auto;
    aspect-ratio: unset;
}

.category-card .category-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-frame .category_image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 270px;
    line-height: 0;
}

.category-card .category_info {
    text-align: center;
    margin: 24px 0 0 0;
}

.category_info h4 {
    font-size: 34px;
    color: var(--body-text-color);
    margin: 0;
    padding: 0;
    font-weight: 700;
    font-family: 'Arima';
    line-height: 1.35;
}

.category_info p {
    font-size: 24px;
    margin: 10px 0 0 0;
}

.mobile-slider .slick-slide {
    padding: 0 16px;
}

.mobile-slider .slick-list {
    margin: 0 -16px;
}

/* arrows style */
.slick-prev:before,
.slick-next:before {
    color: #6b4a2f;
    font-size: 22px;
}

.slider-navigation {
    justify-content: center;
    display: none;
    align-items: center;
    gap: 10px;
    margin: 24px 0 0 0;
}

.slider-navigation .figma-arrow {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 40px;
    background: var(--button-color);
}

/*-----Shop By Category CSS End-----*/


/*-----About Section CSS -----*/

.about-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-wrapper .about-image {
    max-width: 560px;
    width: 100%;
}

.about-image img {
    width: 100%;
    border-radius: 16px;
    display: block;
}

.about-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.about-left-text {
    max-width: 100%;
    min-width: 336px;
}

.born {
    color: var(--body-text-color);
    margin: 0;
    padding: 0;
    font-size: 24px;
    line-height: 1.3;
    font-weight: 900;
}

.year {
    font-size: 34px;
    margin: 4px 0;
    color: var(--body-BG);
    font-weight: 900;
    line-height: 1.3;
    -webkit-text-stroke: 1px #D99D26;
    -webkit-text-fill-color: transparent;
    text-transform: capitalize;
    font-family: 'Arima';
}

.highlight {
    font-size: 24px;
}

.highlight span {
    color: #D99D26;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
}

.about-right-text {
    max-width: 464px;
}

/*-----About Section CSS End -----*/




/* GRID */

/*-----Icon With Text Section CSS -----*/

.features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 22px;
    margin: 0 auto;
}

.feature-item {
    text-align: center;
}

.feature-icon {
    width: 120px;
    height: 120px;
    border: 1px solid #6b4a1e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    margin-bottom: 16px;
    transition: 0.3s;
}

.feature-text {
    font-size: 24px;
    line-height: 1.5;
    color: var(--body-text-color);
    font-weight: 600;
}

/*-----Icon With Text Section CSS End -----*/

/*-----Shop By Product Section CSS -----*/

.sub {
    text-align: center;
    margin: 0 0 16px
}

.shop .grid {
    margin: 0 auto;
    /* display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px */
}

.shopy_by_product_mobile_slider .slick-slide {
    margin: 0 12px;
}

.shopy_by_product_mobile_slider .slick-list {
    margin: 0 -12px;
}

.shop .grid .card {
    background: transparent;
    text-align: left;
    border: none;
}

.product_frame {
    width: 100%;
    position: relative;
    line-height: 0;
    height: 368px;
}

.product_frame img {
    height: 100%;
}

.card .badge {
    padding: 22px;
    border-radius: 24px 24px 8px 8px
}

.product_frame .product_image_main {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 240px;
    bottom: 20px;
}

.product_frame .product_image_main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card h5 {
    font-size: 24px;
    font-weight: 400;
    font-family: 'Arima';
    color: var(--body-text-color);
    margin: 0;
    padding: 0;
    line-height: 1.5;
    text-transform: capitalize;
    min-height: 72px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.product_card {
    padding: 0;
    margin: 10px 0 0 0;
}

.product_card .price {
    font-size: 24px;
    font-weight: 900;
    color: var(--brown);
    margin: 0;
    padding: 4px 0 0 0;
}

.product_card .variation-price .price {
    padding: 0;
}

.variation-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
}

.product_card label {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 20px;
    color: var(--body-text-color);
    line-height: 1.3;
}

.product_card select {
    background: transparent;
    border: solid 1px #00000033;
    border-radius: 25px;
    padding: 4px 20px 0 14px;
    font-size: 18px;
    line-height: 1;
    font-weight: 500;
    color: var(--body-text-color);
    cursor: pointer;
}

.product_card .add_to_cart {
    width: 100%;
    border: none;
    padding: 14px 30px 10px;
    margin: 16px 0 0;
    color: var(--body-text-color);
    background: url(../../assets/img/add-to-cart.svg);
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.product_card .add_to_cart.primary_btn {
    background: url(../../assets/img/add-to-cart.svg);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 16px 0 0;
    color: #69481E;
    font-size: 18px;
    font-weight: 600;
    padding: 15px 18px 9px;
}

.product_card .add_to_cart.primary_btn.disabled {
    cursor: not-allowed;
}

.product_card .add_to_cart.primary_btn:hover {
    background: url(../../assets/img/add-to-cart.svg) !important;
    background-size: 100% 100% !important;
    background-repeat: no-repeat !important;
    color: #69481E !important;
}

.product_card select {
    background: url(../../assets/img/select_arrow.svg);
    background-size: 12px;
    background-repeat: no-repeat;
    background-position: 87% 16px;
    appearance: none;
    width: 110px;
    height: 37px;
}

.product_card select option:first-child {
    display: none;
}

.journey {
    padding: 20px;
    display: none;
}

.slide {
    border-radius: 24px;
    padding: 18px
}

/*-----Shop By Product Section CSS End -----*/

/*-----Marwadi Tea humara Section CSS -----*/
.legacy-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 99px;
    border-radius: 16px;
    padding: 50px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
}

.legacy-container .sec-head {
    text-align: left;
    margin-bottom: 40px;
}

.legacy-left {
    flex: 1;
}

.legacy-subtitle {
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.legacy-container .legacy-text {
    color: var(--white);
    font-weight: 400;
    margin-bottom: 10px;
    line-height: 1.65;
}

.legacy-container p {
    color: var(--white);
    font-weight: 400;
    margin-bottom: 0;
    line-height: 1.65;
    padding-bottom: 10px;
}

.legacy-container p+p {
    padding-bottom: 0;
}

.legacy-btn {
    display: inline-block;
    margin-top: 40px;
    padding: 12px 25px 10px;
    color: var(--body-text-color);
    text-decoration: none;
    border-radius: 25px;
    font-size: 18px;
    line-height: normal;
    font-weight: 700;
    background: url(../../assets/img/custom_btn.svg);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    height: 50px;
    width: 100%;
    max-width: 342px;
    text-align: center;
}

.legacy-btn span {
    margin: 3px 0 0;
    display: inline-block;
}

.legacy-right {
    flex: 0 0 320px;
}

.founder-card {
    background: #E3C09B;
    padding: 40px 40px 18px 40px;
    border-radius: 209px 209px 16px 16px;
    text-align: center;
}

.legacy-right .founder-img {
    width: 338px;
    height: 338px;
    margin: auto;
    border-radius: 50%;
    overflow: hidden;
}

.founder-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founder-card .founder-name {
    font-size: 34px;
    margin-top: 17px;
    font-weight: 600;
    color: var(--body-text-color);
    font-family: 'Arima';
    margin-bottom: 0;
    line-height: 1.3;
}

.founder-role {
    background: #6b3f16;
    color: #fff;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    font-weight: 800;
    max-width: 251px;
    margin: 12px auto 0;
    line-height: 1.5;
}

.founder-role span {
    width: 14px;
    height: 1px;
    background: #FFFFFF;
    display: block;
}

/*-----Marwadi Tea humara Section CSS End-----*/

/*-----Featured Story Section CSS-----*/
.story-container {
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 100px;
    gap: 80px;
}

.story-content {
    max-width: 636px;
    width: 100%;
}

.story-content .sec-head {
    margin-bottom: 24px;
    text-align: left;
}

.story-subtitle {
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: 700;
    color: var(--body-text-color);
    font-family: 'Arima';
}

.story-content p {
    margin-bottom: 16px;
    line-height: 1.6;
}

.story-content .story-highlight {
    font-weight: 800;
    font-size: 24px;
    margin: 0;
}

.story-image .sec-head {
    display: none;
}

.story-image .mobile_image {
    display: none;
}

/*-----Featured Story Section CSS End-----*/

/*-----Restimonial Slider Section CSS-----*/

.testimonial-slider {
    max-width: 1074px;
    margin: auto;
}

.testimonial-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 16px;
    margin: auto;
}

.testimonial-card .testimonial_info {
    padding: 24px 0 0;
    text-align: center;
}

.testimonial-section .custom-arrows {
    display: none;
}

.stars {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.testimonial-text {
    margin: 16px 0 0;
    line-height: 1.5;
    min-height: 87px;
}

.testimonial-name {
    font-weight: 800;
    margin-top: 16px;
    font-size: 20px;
    color: var(--body-text-color);
}

.slick-prev,
.slick-next {
    width: 45px;
    height: 45px;
    background: #e0c39c;
    border-radius: 50%;
    z-index: 10;
}

.slick-prev:before,
.slick-next:before {
    color: #6b3f16;
    font-size: 20px;
}

.testimonial-slider {
    display: flex !important;
    justify-content: center;
    gap: 24px;
}

.testimonial-slider .testimonial-card {
    width: 33%;
}

.slick-prev,
.slick-next {
    display: none !important;
}

/*-----Restimonial Slider Section CSS End-----*/

/*-----Map Section CSS -----*/
.presence-container {
    margin: auto;
    display: flex;
    align-items: center;
    gap: 80px;
}

.presence-left {
    max-width: 645px;
    width: 100%;
}

.presence-left .sec-head {
    text-align: left;
    margin-bottom: 40px;
}

.presence-subtitle {
    font-size: 12px;
    color: #6b3f16;
    margin-bottom: 10px;
}

.presence-locations {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 40px;
}

.location {
    padding: 10px 22px 10px 18px;
    background: #E3C09B;
    border-radius: 50px;
    font-size: 24px;
    color: var(--body-text-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.location.active {
    background: var(--body-text-color);
    color: var(--white);
}

.location span {
    margin-bottom: -5px;
}

.location small {
    background: #ECB6134D;
    padding: 2px 14px;
    border-radius: 99px;
    margin-left: 0;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.63;
}

.presence-map {
    flex: 1;
}

.presence-map iframe {
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    height: 600px;
    opacity: 70%;
}

/*-----Map Section CSS End-----*/




/* ================= DESKTOP ================= */

.journey-desktop {
    position: relative;
    height: auto;
    margin: auto;
    background: url(../../assets/img/journey_bg.svg);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100%;
}

/* curve */
.journey-curve {
    position: relative;
    width: 100%;
    height: 100%;
    top: 0;
    max-width: 1241px;
    margin: 0 auto;
}

.journey-curve svg {
    width: 100%;
    height: 619px;
}


/* center image */
.journey-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 13px;
}

.journey-center img {
    width: 540px;
    height: 540px;
    border-radius: 50%;
    object-fit: cover;
}

/* cards */
.journey-item {
    position: absolute;
    width: 220px;
    text-align: center;
}

.journey-card img {
    width: 93px;
    margin: 0 auto;
    border-radius: 0;
    line-height: 0;
    height: 71px;
}

.journey-item .Frame_journey_section {
    width: 220px;
    height: 320px;
    position: relative;
}

.journey-item .journey-card {
    width: 220px;
    height: 320px;
    position: relative;
    margin: 0 auto;
}

.journey-item .journey-card .journey-card-info {
    position: absolute;
    right: 0;
    width: 100%;
    text-align: center;
    height: auto;
    top: 54px;
}

.journey-item .journey-card .journey-card-info .journey-card-info_content {
    width: 100%;
    margin: 0;
    padding: 18px 0 0 0;
}

.journey-card-info_content p strong {
    font-weight: 700 !important;
}

.journey-card-info_content h6 {
    font-size: 20px;
    font-family: 'Arima';
    margin: 0;
    color: var(--body-text-color);
    padding: 0;
    font-weight: 700;
    line-height: 1.45;
}

.journey-card-info_content p {
    font-size: 16px;
    margin: 4px 0 0;
    font-weight: 400;
    line-height: 1.45;
}

.journey-item .years {
    width: 100%;
    display: inline-block;
    margin: 0 auto;
    text-align: center;
    font-size: 34px;
    font-weight: 800;
    color: var(--body-text-color);
    line-height: 1.5;
}

.year {
    display: block;
    margin-bottom: 10px;
    color: #6b4a2f;
    font-weight: bold;
}

/* positioning */
.item1 {
    left: 0;
    bottom: auto;
    position: relative;
    text-align: center;
}

.item2 {
    left: 171px;
    top: 150px;
}

.item3 {
    left: 50%;
    transform: translateX(-50%);
    top: -24px;
}

.item4 {
    right: 188px;
    top: 139px;
}

.item5 {
    right: 0px;
    bottom: 0px;
}


/* ================= MOBILE ================= */

.journey-section {
    overflow: hidden;
}

.journey-mobile {
    display: none;
}

.mobile-card {
    text-align: center;
    position: relative;
}

.mobile-card img {
    width: 93px;
    margin-bottom: auto;
    height: 71px;
}

.mobile-card .journey-card-info .journey-card-info_content {
    padding: 0 10px;
}

/* arrows */
.journey-arrows {
    display: none;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
}

.journey-arrows button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: #E3C09B;
    cursor: pointer;
    display: block !important;
}

.mobile-card .Frame_journey_section {
    width: 220px;
    margin: 0 auto;
}

.mobile-card .journey-card-info {
    position: absolute;
    top: 54px;
    margin: 0 auto;
    width: 220px;
    text-align: center;
    left: 0;
    right: 0;
}


.presence-section.about_page .presence-container {
    justify-content: center;
}

.presence-section.about_page .presence-left {
    max-width: 100%;
    text-align: center;
}

.presence-section.about_page .sec-head {
    text-align: center;
}

.presence-section.about_page .presence-locations {
    justify-content: center;
}

.presence-section.about_page .presence-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    text-align: left;
}

.presence-section.about_page .presence-list li {
    padding-bottom: 0;
    list-style: disc;
}


/* Section Background */
.tea-section {
    text-align: center;
}



.tea-box-wrapper {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.tea-box {
    background: var(--box-bg-color);
    padding: 24px 56px;
    border-radius: 16px;
    max-width: 100%;
    width: 100%;
    text-align: center;
}

.pdp-section .tea-box {
    background: var(--organic-light);
    padding: 16px 40px;
    border-radius: 8px;
    max-width: 100%;
    width: 100%;
    text-align: center;
    text-transform: capitalize;
}

.pdp-section .tea-box p {
    font-size: 20px;
}

/* Card Heading */
.tea-box h3 {
    color: #5a3b22;
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

/* Card Text */
.tea-box p {
    line-height: 1.5;
    margin: 0;
}

h2.section-title,
h2.about-heading,
h2.features-heading,
h2.journey-heading,
h2.testimonial-heading,
h2.presence-title,
h2.story-title {
    font-size: 52px;
    font-family: 'Dream Orphans';
    line-height: normal;
}

.sec-head h1 {
    margin: 0;
    font-weight: 400;
    font-size: 100px;
    font-family: 'Dream Orphans';
    line-height: normal;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: auto;
    border-radius: 16px;
    overflow: hidden;
    height: 702px;
}

/* Maintain 16:9 Ratio */
.video-wrapper::before {
    content: "";
    display: block;
    padding-top: 56.25%;
}

/* Video iframe */
.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}





/* CONTAINER */
.promise-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* LEFT */
.promise-left {
    flex: 1;
}

.promise-title {
    margin-bottom: 24px;
    color: var(--body-text-color);
}

.promise-text {
    max-width: 580px;
    margin-bottom: 40px;
}

.promise-box .h4-sm {
    color: var(--body-text-color);
    margin-bottom: 8px;
}

/* BUTTON */
.promise-btn {
    padding: 0px 0px;
    color: #69481E;
    text-decoration: none;
    font-size: 18px;
    border-radius: 0px;
    position: relative;
    background: url(../../assets/img/view-all-products.svg);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    background-position: left center;
    max-width: 332px;
    width: 100%;
}

/* RIGHT GRID */
.promise-right {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 24px;
}

/* BOX */
.promise-box {
    padding: 24px 16px;
    border-radius: 16px;
    text-align: center;
    background: var(--box-bg-color);
}










/* CONTAINER */
.tea-values-container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    text-align: center;
    padding: 0 40px;
}

/* ITEM */
.tea-value-item {
    flex: 1;
}

.tea-value-icon {
    text-align: center;
    margin: 0 auto 24px;
    max-width: max-content;
}

.tea-value-icon img {
    margin: 0 auto;
    height: 45px;
}

.tea-value-item .h5-sm {
    margin-bottom: 10px;
}



.story-img {
    padding: 0 12px;
}

.story-img img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 16px;
}

.heritage-gallery {
    display: flex !important;
    gap: 20px;
    margin: 0 -12px;
}

.story-img {
    width: 25%;
}

.heritage-wrapper .story-arrows {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px 0 0 0;
    gap: 16px;
}

.heritage-wrapper .story-arrows button {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 40px;
    background: var(--button-color);
    padding: 0;
}



.faq-wrapper {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: space-between;
}

.faq-wrapper .sec-head {
    margin: 0;
    text-align: left;
    max-width: 32.5%;
    width: 100%;
}

.faq-wrapper .faq-left {
    width: 100%;
    max-width: 448px;
}

.faq-wrapper .faq-left p {
    font-size: 18px;
    font-family: 'Arima';
}

.faq-right {
    width: 100%;
}

.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 24px 0 20px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h4 {
    font-size: 18px;
    color: #6b4a2f;
    margin: 0;
}

.faq-icon {
    width: 40px;
    height: 40px;
    background: #E3C09B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.faq-item.active .faq-icon {
    background: #8c2f2f;
    color: #fff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding-top: 15px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-icon .close_icon {
    display: none;
}

.faq-item.active .faq-icon .close_icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-item.active .faq-icon .plus_icon {
    display: none;
}

.faq-question .h5-sm {
    margin: 0;
}






/* =========================
   DESKTOP CIRCLE LAYOUT
========================= */

.brew-wrapper {
    position: relative;
    height: 1034px;
    max-width: 1166px;
    margin: 0 auto;
}

.center-tea {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.center-tea img {
    width: 180px;
}

/* Step common */

.brew-item {
    position: absolute;
    width: 277px;
    text-align: center;
}

.brew-item h3 {
    font-size: 34px;
    margin-bottom: 10px;
    color: var(--body-text-color);
    font-weight: 800;
    font-family: 'Arima';
    line-height: 1.3;
}

.brew-item .brew-item-step-main {
    position: relative;
}

.brew-item .brew-item-step-main .step-card {
    position: absolute;
    top: 50%;
    left: 50%;
    text-align: center;
    max-width: 200px;
    margin: 0 auto;
    transform: translate(-50%, -50%);
    width: 100%;
}

.step-card img {
    width: auto;
    height: 80px;
    margin: 0 auto;
}

.step-card p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    padding: 25px 0 0 0;
}

.step-card p strong {
    font-weight: 700 !important;
}

/* Step Positions */

.step1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.step2 {
    top: 250px;
    right: 0;
}

.step3 {
    bottom: 0;
    right: 158px;
}

.step4 {
    bottom: 0;
    left: 191px;
}

.step5 {
    top: 250px;
    left: 0;
}

/* =========================
   MOBILE SLIDER
========================= */

.brew-arrows {
    display: none;
}

.brew-item .step1_arrow {
    width: 100px;
    height: 100px;
    position: absolute;
    top: 130px;
    right: -200px;
}

.brew-item .step_arrow svg {
    width: 100px;
    height: 100px;
}

.brew-item .step_arrow {
    width: 100px;
    height: 100px;
}

.brew-item .step2_arrow.step_arrow {
    right: 60px;
    position: absolute;
    bottom: -150px;
}

.brew-item .step3_arrow.step_arrow {
    position: absolute;
    left: -165px;
    bottom: 21px;
}

.brew-item .step4_arrow.step_arrow {
    position: absolute;
    top: -100px;
    left: -100px;
}

.brew-item .step5_arrow.step_arrow {
    position: absolute;
    top: -97px;
    right: -40px;
}

.brew-section .sec-head {
    margin-bottom: 40px;
}

.brew-section .brew-subtitle {
    font-size: 18px;
    font-family: 'Arima';
}

.brew-item .brew-item-step-main .mobile_step_arrow {
    display: none;
}





.ingredients-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.ingredients-section .sec-head .small-title {
    margin: 0;
    padding: 0 0 16px 0;
    font-weight: 500;
}

.ingredients-wrapper .ingredient-item {
    text-align: center;
}

.ingredient-image {
    border-radius: 16px;
    overflow: hidden;
}

.ingredient-image img {
    width: 100%;
    display: block;
    border-radius: 15px;
}

.ingredient-name {
    margin-top: 16px;
    font-size: 24px;
    font-weight: 700;
}

/* Hide arrows desktop */
.ingredients-arrows {
    display: none;
}


.tea-section.collection-page.pdp-section {
    padding-bottom: 40px;
}

.features-section.collection-page-section {
    padding-bottom: 40px;
}






.policy-card {
    padding: 24px;
    border-radius: 16px;
    text-align: center;
    background: var(--box-bg-color);
    margin: 40px 0;
}

.policy-card h2 {
    margin-bottom: 24px;
    color: var(--body-text-color);
}

.last-updated {
    margin-top: 0;
}

.intro-text {
    margin-top: 16px;
}

.intro-text strong {
    color: #362714;
}


.policy-content {
    margin-top: 40px;
    margin-bottom: 40px;
}

.policy-content h2 {
    font-size: 34px !important;
    margin-bottom: 24px;
    font-weight: 700;
    color: var(--body-text-color);
    font-family: 'Arima';
    margin-top: 40px;
}

.policy-content h3 {
    font-size: 24px;
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--body-text-color);
    font-family: 'Arima';
    line-height: 1.35;
}

.policy-content p {
    margin-bottom: 16px;
}

.policy-content p:last-child {
    margin-bottom: 0;
}

.policy-content p strong {
    color: #362714;
    font-weight: 800 !important;
}

.policy-content p a {
    text-decoration: underline;
    color: var(--body-text-color);
}

.policy-content ul {
    list-style: disc;
    margin: 0;
    padding: 0 0 0 28px;
}

.policy-content ul li {
    color: var(--body-text-color);
    font-size: 18px;
    font-weight: 500;
    font-family: 'Arima';
    line-height: 1.4;
    padding-bottom: 8px;
}

.policy-content .privacy strong {
    color: var(--body-text-color);
}

.policy-title {
    font-size: 52px;
    font-family: 'Dream Orphans';
    line-height: normal;
}

.intro-text.privacy strong {
    color: var(--body-text-color);
}

section.brew-section.mobile-brew-section {
    display: none;
}


@media (min-width:768px) {
    .brew-arrows {
        display: none;
    }
}

@media (min-width:992px) {
    /* .product-slider-arrows {
        display: none;
    } */
}




/*-----Contact Us page------*/

.breadcrumb {
    font-size: 18px;
    color: var(--body-text-color);
    padding: 40px 0 0;
    margin-bottom: 0;
}

.breadcrumb a {
    text-decoration: none;
    color: #6a4b2f;
}

.breadcrumb span {
    margin: 0 2px;
}

.breadcrumb .current {
    font-weight: 500;
}

.contact-section.common-sec {
    padding-top: 40px;
}

.contact_header_right {
    width: 100%;
    text-align: left;
    margin: 0;
}

.contact-header {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}


.contact_header_right p {
    font-size: 18px;
    max-width: 698px;
    font-family: 'Arima';
}

.tea-icon {
    width: 177px;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 708px 1fr;
    gap: 80px;
}

.contact-form h3 {
    font-size: 32px;
    margin-bottom: 18px;
    color: var(--body-text-color);
}

.contact-form .form-des {
    margin-bottom: 40px;
    font-size: 20px;
}

.form-group-wrap .form-group {
    width: calc(50% - 16px);
    padding: 0;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
    width: 100%;
    padding: 14px;
    border: none;
    margin-bottom: 0px;
    position: relative;
    z-index: 2;
}

textarea {
    height: 100px;
    resize: none;
}

.checkbox {
    margin-bottom: 32px;
}

.checkbox p {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #69481E;
    font-weight: 400;
}

body .contact-form .wpcf7-not-valid-tip {
    color: #dc3232;
}

.checkbox input {
    width: 20px;
    height: 20px;
    border: none;
    accent-color: var(--body-text-color);
}

.checkbox label a {
    text-decoration: underline;
    text-underline-offset: 4px;
}

button {
    background: #caa47a;
    border: none;
    padding: 14px 40px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 30px;
}

button:hover {
    background: #b58c5f;
}

.contact-info h4 {
    margin-bottom: 18px;
    font-size: 24px;
    color: var(--body-text-color);
}

.contact-wrapper .contact-info .info-block {
    margin-bottom: 40px;
}

.contact-info p {
    margin: 0;
    color: var(--body-text-color);
}


.form-group-wrap {
    gap: 32px;
    margin: 0;
    padding: 0;
}

.form-group-wrap .form-group input {
    background: url(../../assets/img/first-name.svg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    padding: 4px 40px 0;
    height: 50px;
}

.form-group.full-input input {
    background: url(../../assets/img/phone-number.svg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    padding: 4px 40px 0;
    height: 50px;
}

.form-group.full-input textarea {
    background: url(../../assets/img/phone-number.svg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    padding: 15px 40px 6px;
    height: 50px;
    overflow: hidden;
}

.contact-form p {
    position: relative;
    margin: 0;
}

.contact-form .send-message {
    background: url(../../assets/img/send-message.svg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    padding: 12px 40px 6px;
    height: 50px;
    width: 100%;
    color: var(--body-text-color);
    font-weight: 700;
}

.form-group input::placeholder {
    color: #69481E66;
    font-size: 16px;
}

.form-group.full-input textarea::placeholder {
    color: #69481E66;
    font-size: 16px;
}


.contact-map {
    width: 100%;
}

.contact-map iframe {
    width: 100%;
    height: 559px;
    display: block;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.single-product .product .summary .save-badge {
    display: inline-block;
}

.save-badge {
    display: none;
    background: #008000;
    color: #fff;
    padding: 7px 8px 3px;
    border-radius: 6px;
    font-size: 16px;
    line-height: normal;
    font-weight: 700;
    margin-left: 8px;
}

.stock-status {
    display: flex;
    align-items: center;
    gap: 11px;
    color: #008000;
    font-weight: 700;
    line-height: normal;
    margin-top: 0;
    margin-bottom: 30px;
}

.stock-dot {
    width: 20px;
    height: 20px;
    background: #008000;
    border-radius: 50%;
    position: relative;
}

.stock-dot::before {
    content: "";
    display: block;
    width: calc(100% + 6px);
    height: calc(100% + 6px);
    border-radius: 50%;
    background: #00800033;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* OUT OF STOCK */
.stock-status.out-stock {
    color: #ff0000;
}

.stock-status.out-stock .stock-dot {
    background: #ff0000 !important;
}

.stock-status.out-stock .stock-dot::before {
    background: #ff000033 !important;
}

/*-----End Contact Us page------*/

.added_to_cart {
    display: none;
}

.product_meta {
    display: none;
}

body .swiper-button-next:after,
body .swiper-button-prev:after {
    display: none;
}

body .swiper-button-next svg,
body .swiper-button-prev svg {
    width: auto;
    height: auto;
}

.product-slider-arrows button {
    position: unset;
    margin: 0;
}

.ingredients-arrows button {
    padding: 0;
}

.slick-disabled {
    opacity: .35;
}

body .wpcf7-spinner {
    margin: 0;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.hero-slider.hero-mobile-slider {
    display: none;
}

.product-slider-arrows {
    display: none;
}

.testimonial-slider .slick-list {
    margin: 0 -12px;
}

.testimonial-slider .slick-slide {
    margin: 0 12px;
}

.hero-tablet-slider {
    display: none;
}
body:not([class*=elementor-page-]) .site-main {margin: 50px auto;}
h1.entry-title {font-size: 36px;}
body:not([class*=elementor-page-]) .site-main h2 {font-size: 28px;}
.woocommerce-MyAccount-navigation-link.woocommerce-MyAccount-navigation-link--my-compare {display: none;}