:root {
    --green: #3a7d0a;
    --green-dark: #2e6b08;
    --green-nav: #2d7a08;
    --yellow: #f5a623;
    --red-badge: #e53935;
    --text: #1c1c1c;
    --text-mid: #555;
    --text-light: #888;
    --border: #e0e0e0;
    --bg: #ffffff;
    --bg-gray: #f8f8f8;
    --radius: 10px;
    --font: "Poppins", sans-serif;
    --header-top-h: 62px;
    --header-nav-h: 48px;
}

*, ::before, ::after {
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
    line-height: 1.55;
}

html, body {
    overflow-x: hidden !important;
}

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

a {
    text-decoration: none;
    color: inherit;
    font-family: var(--font);
}

ul {
    list-style: none;
}

button {
    font-family: var(--font);
    cursor: pointer;
    border: medium;
    background: none;
}

input {
    font-family: var(--font);
}

.container {
    width: 100%;
    max-width: 1260px;
    margin: 0px auto;
}

input, textarea, select {
    appearance: none;
    min-width: 0px;
    font-size: 16px !important;
}

.sidenav-overlay {
    position: fixed;
    inset: 0px;
    z-index: 1998;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.sidenav-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.sidenav {
    position: fixed;
    top: 0px;
    left: 0px;
    bottom: 0px;
    width: 280px;
    z-index: 1999;
    background: rgb(26, 26, 26);
    transform: translateX(-100%);
    transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    height: 100vh;
}

html.scroll-locked,
body.scroll-locked {
    overflow: hidden !important;
    height: 100dvh !important; /* Locks the viewport frame to the iPhone screen height */
    position: relative !important; /* Prevents iOS elastic bounce scrolling */
}

.sidenav.is-open {
    transform: translateX(0px);
}

.sidenav__list {
    padding: 16px 0px;
}

.sidenav__item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.sidenav__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 15px 22px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.94rem;
    font-weight: 500;
    background: none;
    text-align: left;
    transition: background 0.2s, color 0.2s;
}

.sidenav__link:hover {
    background: rgba(255, 255, 255, 0.08);
    color: rgb(255, 255, 255);
}

.sidenav__item--active .sidenav__link {
    color: rgb(126, 212, 96);
}

.sidenav__arrow {
    font-size: 0.65rem;
    transition: transform 0.25s;
    flex-shrink: 0;
}

.sidenav__item--has-sub.is-expanded .sidenav__arrow {
    transform: rotate(180deg);
}

.sidenav__sub {
    display: none;
    background: rgba(0, 0, 0, 0.25);
}

.sidenav__sub.is-open {
    display: block;
}

.sidenav__sub li a {
    display: block;
    padding: 11px 22px 11px 38px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.85rem;
    transition: color 0.2s, background 0.2s;
}

.sidenav__sub li a:hover {
    color: rgb(255, 255, 255);
    background: rgba(255, 255, 255, 0.05);
}

.header {
    position: sticky;
    top: 0px;
    background: rgb(255, 255, 255);
    box-shadow: 0 1px 0 var(--border);
    z-index: 1;
}

.header__top {
    background: rgb(255, 255, 255);
    border-bottom: 1px solid var(--border);
    padding: 8px 0px;
}

.header__top-inner {
    display: flex;
    align-items: center;
    height: var(--header-top-h);
    gap: 16px;
}

.header__logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.header__logo-mark {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header__logo-icon {
    width: 36px;
    height: 36px;
    background: var(--green);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: rgb(255, 255, 255);
    flex-shrink: 0;
}

.header__logo-icon img {
    display: none;
}

.header__logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.01em;
}

.header__search {
    flex: 1 1 0%;
    max-width: 440px;
    display: flex;
    align-items: stretch;
    border: 1.5px solid var(--border);
    border-radius: 50px;
    overflow: hidden;
    transition: border-color 0.2s;
}

.header__search:focus-within {
    border-color: var(--green);
}

.header__search input {
    flex: 1 1 0%;
    border: medium;
    outline: medium;
    padding: 0px 20px;
    font-size: 0.875rem;
    color: var(--text);
    background: none;
}

.header__search input::placeholder {
    color: rgb(170, 170, 170);
}

.header__search button {
    background: var(--green);
    color: rgb(255, 255, 255);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    margin: 2px 2px 2px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.88rem;
    flex-shrink: 0;
    transition: background 0.2s;
}

.header__search button:hover {
    background: var(--green-dark);
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-left: auto;
    flex-shrink: 0;
    width: 55%;
}

.header__icon-btn {
    position: relative;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--text-mid);
    transition: background 0.2s, color 0.2s;
}

.header__icon-btn a {
    padding: 0px 8px;
}

.header__icon-btn:hover {
    background: rgb(240, 240, 240);
    color: var(--green);
}

button.js-hover-trigger:hover + a.js-hover-trigger, button.js-hover-trigger:has( + a.js-hover-trigger:hover), .js-hover-trigger:hover {
    color: var(--green);
}

.header__cart-btn {
    position: relative;
}

.header__cart-badge {
    position: absolute;
    top: 0px;
    right: 0px;
    background: var(--green);
    color: rgb(255, 255, 255);
    font-size: 0.58rem;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px 4px;
    pointer-events: none;
    border: 2px solid rgb(255, 255, 255);
}

.header__hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    border-radius: 6px;
    transition: background 0.2s;
}

.header__hamburger:hover {
    background: rgb(240, 240, 240);
}

.header__hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform 0.28s, opacity 0.28s;
}

.header__hamburger.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.header__hamburger.is-open span:nth-child(2) {
    opacity: 0;
}

.header__hamburger.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.header__nav {
    background: var(--green-nav);
    height: var(--header-nav-h);
    position: relative;
}

.header__nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: 1260px;
    margin: 0px auto;
}

.header__nav-list {
    display: flex;
    align-items: center;
    height: 100%;
    gap: 0px;
}

.header__nav-item {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    /*margin-right: 10px;*/
}

.header__nav-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 16px;
    height: auto;
    color: rgb(255, 255, 255);
    font-size: 0.84rem;
    font-weight: 500;
    white-space: nowrap;
    cursor: pointer;
    background: none;
    transition: color 0.15s;
    text-decoration: none;
}

.header__nav-link:hover {
    color: rgba(255, 255, 255, 0.8);
    background: var(--yellow);
    border-radius: 50px;
}

.header__nav-link--home {
    background: var(--yellow);
    color: rgb(255, 255, 255);
    border-radius: 50px;
    padding: 8px 18px;
    height: auto;
    font-weight: 600;
    font-size: 0.84rem;
    align-self: center;
}

.header__nav-link--home:hover {
    background: rgb(224, 148, 0);
    color: rgb(255, 255, 255);
}

.nav-caret {
    font-size: 0.58rem;
    margin-left: 1px;
}

.header__dropdown {
    background: rgb(255, 255, 255);
    border-top: 3px solid var(--green);
    border-radius: 0px 0px 8px 8px;
    min-width: 168px;
    box-shadow: rgba(0, 0, 0, 0.14) 0px 6px 24px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity 0.18s, transform 0.18s, visibility 0.18s;
    pointer-events: none;
    z-index: 300;
    content: "";
    position: absolute;
    top: 45px;
    left: 0px;
    width: 100%;
    height: 15px;
    display: block;
}

.header__nav-item--has-drop:hover > .header__dropdown, .header__icon-btn--has-drop:hover > .header__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
    pointer-events: all;
}

.header__dropdown, .header__icon-btn--has-drop > .header__dropdown {
    top: 40px !important;
}

.header__icon-btn--has-drop {
    width: auto;
    max-width: 320px;
}

.header__icon-btn--has-drop:hover {
    background: none;
}

.header__dropdown li a {
    display: block;
    padding: 10px 18px;
    font-size: 0.84rem;
    transition: background 0.15s, color 0.15s;
    background: var(--green);
    color: rgb(255, 255, 255);
}

.header__dropdown li a:hover {
    background: rgb(224, 148, 0);
    color: rgb(255, 255, 255);
}

.header__dropdown {
    border-radius: 0px 0px 10px 10px;
}

.header__dropdown li:last-child a {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.header__nav-phone {
    display: flex;
    align-items: center;
    gap: 7px;
    color: rgb(255, 255, 255);
    font-size: 0.82rem;
    font-weight: 600;
    white-space: nowrap;
    margin-left: 20px;
    flex-shrink: 0;
}

.header__nav-phone i {
    font-size: 1.1rem;
}

.header__nav-phone:hover {
    color: var(--yellow);
}

.header__mobile-search {
    display: none;
}

.hero {
    position: relative;
    height: 530px;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0px;
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
}

.hero__bg::after {
    content: "";
    position: absolute;
    inset: 0px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0.6) 30%, rgba(255, 255, 255, 0.2) 55%, rgba(255, 255, 255, 0) 72%);
}

.hero__inner {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero__content {
    max-width: 460px;
    padding: 20px 0px;
}

.hero__title {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.22;
    color: rgb(17, 17, 17);
    margin-bottom: 14px;
}

.hero__desc {
    font-size: 0.88rem;
    color: rgb(51, 51, 51);
    max-width: 370px;
    margin-bottom: 28px;
    line-height: 1.65;
}

.btn--hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--yellow);
    color: rgb(255, 255, 255);
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    border: medium;
    cursor: pointer;
    transition: background 0.2s;
}

.btn--hero-cta:hover {
    background: rgb(224, 148, 0);
}

.hero__dots {
    display: flex;
    gap: 8px;
    margin-top: 22px;
}

.hero__dot {
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background: rgb(204, 204, 204);
    cursor: pointer;
    transition: 0.3s;
}

.hero__dot--active {
    background: var(--green);
    width: 28px;
}

.section {
    padding: 52px 0px 0px;
}

.section.featured-stores {
    padding-bottom: 32px;
}

.section__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 12px;
    gap: 12px;
}

.section__title {
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}

.section__sub {
    font-size: 0.84rem;
    color: var(--text-light);
}

.section__arrows {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
    padding-top: 2px;
}

.arrow-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    color: var(--text-mid);
    background: rgb(255, 255, 255);
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.arrow-btn:hover {
    background: var(--green);
    border-color: var(--green);
    color: rgb(255, 255, 255);
}

.arrow-btn:disabled {
    opacity: 0.3;
    cursor: default;
    pointer-events: none;
}

.slider-track-wrap {
    overflow: hidden;
}

.slider-track {
    display: flex;
    gap: 20px;
    transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.hero-slider {
    position: relative;
    overflow: hidden;
    background: rgb(200, 184, 154);
    -webkit-user-select: none;
    z-index: 0;
    aspect-ratio: 3.125 / 1;
}

.hero-slider__track {
    display: flex;
    height: 100%;
    transition: transform 0.65s cubic-bezier(0.77, 0, 0.175, 1);
    will-change: transform;
    width: 100%;

    /* FIX FOR SAFARI: Replace height: 100% with absolute framing or min-height */
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    box-sizing: border-box;
}

.hero-slider__track.is-dragging {
    transition: none;
}

.hero__slide {
    flex: 0 0 100%;
    /*height: 100%;*/
    position: relative;
    background-size: cover;
    /*background-position: right center;*/
    /*background-repeat: no-repeat;*/
}

.hero__slide-overlay {
    position: absolute;
    inset: 0px;
    z-index: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.6) 32%, rgba(255, 255, 255, 0.18) 58%, rgba(255, 255, 255, 0) 76%);
}

.hero__slide-overlay--dark {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.44) 32%, rgba(0, 0, 0, 0.12) 58%, rgba(0, 0, 0, 0) 76%);
}

.hero__slide-inner {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero__content {
    max-width: 540px;
    padding: 32px 0px;
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.55s 0.18s, transform 0.55s 0.18s;
    pointer-events: none;
}

.hero__slide--active .hero__content {
    opacity: 1;
    transform: translateY(0px);
    pointer-events: all;
}

.hero__tag {
    display: inline-block;
    background: var(--green);
    color: rgb(255, 255, 255);
    font-size: 0.74rem;
    font-weight: 700;
    padding: 5px 16px;
    border-radius: 50px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.hero__tag--white {
    background: rgba(255, 255, 255, 0.18);
    color: rgb(255, 255, 255);
    border: 1.5px solid rgba(255, 255, 255, 0.45);
}

.hero__title {
    font-size: clamp(1.65rem, 2.8vw, 2.4rem);
    font-weight: 800;
    line-height: 1.2;
    color: rgb(17, 17, 17);
    margin-bottom: 16px;
}

.hero__title--white {
    color: rgb(255, 255, 255);
}

.hero__desc {
    font-size: 0.9rem;
    color: rgb(51, 51, 51);
    max-width: 430px;
    margin-bottom: 30px;
    line-height: 1.7;
}

.hero__desc--white {
    color: rgba(255, 255, 255, 0.88);
}

.hero__cta-group {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.btn--hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--yellow);
    color: rgb(255, 255, 255);
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    font-family: var(--font);
    border: 2px solid var(--yellow);
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    white-space: nowrap;
}

.btn--hero-cta:hover {
    background: rgb(224, 148, 0);
    border-color: rgb(224, 148, 0);
    transform: translateY(-2px);
}

.btn--hero-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: none;
    color: var(--green);
    padding: 12px 26px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    font-family: var(--font);
    border: 2px solid var(--green);
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}

.btn--hero-outline:hover {
    background: var(--green);
    color: rgb(255, 255, 255);
}

.btn--hero-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: none;
    color: rgb(255, 255, 255);
    padding: 12px 26px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    font-family: var(--font);
    border: 2px solid rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
    white-space: nowrap;
}

.btn--hero-outline-white:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgb(255, 255, 255);
}

.hero-slider__arrow {
    position: absolute;
    top: 50%;
    z-index: 10;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.88);
    border: medium;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    color: var(--text);
    box-shadow: rgba(0, 0, 0, 0.18) 0px 3px 14px;
    transition: background 0.2s, color 0.2s, transform 0.2s;
}

.hero-slider__arrow:hover {
    background: var(--yellow);
    color: rgb(255, 255, 255);
    transform: translateY(-50%) scale(1.1);
}

.hero-slider__arrow--prev {
    left: 24px;
}

.hero-slider__arrow--next {
    right: 24px;
}

.hero-slider__dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.hero-slider__dot {
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background: rgba(190, 190, 190, 0.9);
    border: 2px solid rgba(255, 255, 255, 0.9);
    cursor: pointer;
    padding: 0px;
    transition: background 0.3s, width 0.3s, border-color 0.3s;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 4px 10px;
}

.hero-slider__dot--active {
    background: rgb(255, 255, 255);
    width: 28px;
    border-color: rgb(255, 255, 255);
}

.hero-slider__counter {
    position: absolute;
    bottom: 22px;
    right: 28px;
    z-index: 10;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-shadow: rgba(0, 0, 0, 0.35) 0px 1px 4px;
}

#heroCurrentSlide {
    color: rgb(255, 255, 255);
    font-size: 1rem;
    font-weight: 800;
}

.cat-card {
    flex: 0 0 calc(19.8% - 15px);
    overflow: hidden;
    background: rgb(255, 255, 255);
    border: 1.5px solid rgb(221, 221, 221);
    border-radius: 14px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.cat-card:hover {
    border-color: rgb(187, 187, 187);
    box-shadow: rgba(0, 0, 0, 0.08) 0px 3px 12px;
}

.cat-card__img-box {
    background: rgb(232, 232, 232);
    border-radius: 10px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    overflow: hidden;
}

.cat-card__img-box img {
    /* width: 80%; */
    height: auto;
    object-fit: contain;
}

.cat-card__img-label {
    font-size: 1.15rem;
    font-weight: 600;
    color: rgb(200, 134, 10);
    text-align: center;
    line-height: 1.3;
    padding: 8px;
}

.cat-card__name {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text);
    text-align: center;
    padding: 0px 6px 6px;
    font-family: var(--font);
}

.prod-card {
    flex: 0 0 calc(25% - 15px);
    min-width: 230px;
    background: rgb(255, 255, 255);
    border: 1.5px solid rgb(232, 232, 232);
    border-radius: var(--radius);
    overflow: hidden;
    transition: box-shadow 0.2s;
}

.prod-card:hover {
    box-shadow: rgba(0, 0, 0, 0.09) 0px 4px 16px;
}

.prod-card__img-wrap {
    position: relative;
    background: rgb(244, 244, 244);
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.prod-card__img-wrap img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.prod-card__badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    color: rgb(255, 255, 255);
}

.prod-card__badge--new {
    background: var(--green);
}

.prod-card__badge--sale {
    background: var(--red-badge);
}

.prod-card__body {
    padding: 13px 14px 14px;
}

.prod-card__brand {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text);
    display: block;
    align-items: center;
    gap: 5px;
    margin-bottom: 2px;
    /* text-align: center; */
}

.prod-card__brand i {
    color: var(--green);
    font-size: 0.75rem;
}

.prod-card__seller {
    font-size: 0.74rem;
    color: var(--text-light);
    margin-bottom: 6px;
}

.prod-card__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-mid);
    margin-bottom: 4px;
}

.prod-card__weight {
    font-weight: 700;
    color: var(--text);
}

.prod-card__stars {
    color: var(--yellow);
    font-size: 0.82rem;
    margin: 4px 0px;
    letter-spacing: 1px;
}

.prod-card__mrp {
    font-size: 0.76rem;
    color: var(--text-light);
    text-decoration: line-through;
    display: block;
    text-align: left;
}

@media (max-width: 480px) {
    .prod-card__mrp {
        float: none;
    }
}

.prod-card__our {
    font-size: 0.82rem;
    color: var(--text-mid);
    display: block;
}

.prod-card__our strong {
    color: var(--green);
    font-size: 0.9rem;
    font-weight: 700;
}

.prod-card__price {
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.prod-card__actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.qty {
    display: flex;
    align-items: center;
    border: 1.5px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
}

.qty__btn {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    color: var(--text-mid);
    background: none;
    transition: background 0.15s;
}

.qty__btn:hover {
    background: rgb(240, 240, 240);
}

.qty__val {
    width: 28px;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    line-height: 30px;
    height: 30px;
}

.btn--add {
    background: var(--green);
    color: rgb(255, 255, 255);
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 0.84rem;
    font-weight: 700;
    transition: background 0.2s;
    white-space: nowrap;
    border: medium;
    cursor: pointer;
}

.btn--add:hover {
    background: var(--green-dark);
}

.btn--add-yellow {
    background: var(--yellow);
}

.btn--add-yellow:hover {
    background: rgb(224, 148, 0);
}

.btn--full-w {
    width: 100%;
    display: block;
    text-align: center;
    padding: 10px 16px;
    border-radius: 30px;
    border: medium;
    cursor: pointer;
    background: var(--green);
    color: rgb(255, 255, 255);
    font-size: 0.88rem;
    font-weight: 700;
    margin-top: 10px;
    transition: background 0.2s;
    font-family: var(--font);
}

.btn--full-w:hover {
    background: var(--green-dark);
}

.btn--outline-sm {
    display: block;
    width: 100%;
    border: 1.5px solid var(--border);
    color: var(--text-mid);
    background: rgb(238, 238, 238);
    padding: 7px 12px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    margin-top: 8px;
    transition: background 0.2s, color 0.2s;
    cursor: pointer;
    font-family: var(--font);
}

.button-center {
    display: flex;
    justify-content: center;
}

.button-center .btn--white-sm {
    display: block;
    margin: 0px auto;
}

.btn--outline-sm:hover {
    background: var(--green);
    color: rgb(255, 255, 255);
}

.btn--white-sm {
    background: rgb(255, 255, 255);
    color: var(--green);
    padding: 7px 18px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    transition: background 0.2s;
    cursor: pointer;
    border: medium;
}

.btn--white-sm:hover {
    background: rgb(240, 247, 235);
}

.btn--outline-white {
    background: none;
    color: rgb(255, 255, 255);
    border: 2px solid rgb(255, 255, 255);
    padding: 10px 28px;
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s, color 0.2s;
    cursor: pointer;
}

.btn--outline-white:hover {
    background: rgb(255, 255, 255);
    color: var(--green);
}

.product-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font-family: var(--font);
    margin-top: 10px;
}

.quantity-selector {
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgb(221, 221, 221);
    border-radius: 30px;
    overflow: hidden;
    height: 44px;
    display: none;
}

.qty-btn {
    width: 50px;
    height: 44px;
    border: medium;
    background: rgb(245, 245, 245);
    cursor: pointer;
    font-size: 20px;
}

.qty-number {
    flex: 1 1 0%;
    text-align: center;
    font-weight: 600;
}

.qty-left .fa-trash {
    font-size: 14px;
}

.add-btn {
    background-color: rgb(16, 155, 0);
    color: white;
    border: medium;
    padding: 8px 22px;
    border-radius: 30px;
    font-weight: 400;
    font-size: 16px;
    cursor: pointer;
    transition: opacity 0.2s;
}

.add-btn:hover {
    opacity: 0.9;
}

.bulk-banner {
    padding: 52px 0px 0px;
}

.bulk-banner__grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 16px;
}

.bulk-banner__main {
    background: url("../../images/v2/bulk-order-1.jpg") center center / cover no-repeat;
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 456px;
}

.bulk-banner__main img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.bulk-banner__main-label {
    position: absolute;
    top: 20px;
    left: 22px;
    font-size: 1.5rem;
    font-weight: 700;
    color: rgb(255, 255, 255);
    text-shadow: rgba(0, 0, 0, 0.5) 0px 2px 8px;
}

.bulk-banner__aside {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bulk-banner__green-card {
    background: url("../../images/v2/free-delivery-2.png") center center no-repeat;
}

.cant-find {
    background: url("../../images/v2/cant-find-item-3.png") center center no-repeat;
}

.bulk-banner__green-card h3, .bulk-banner__img-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.45;
    margin-bottom: 12px;
    text-align: center;
}

.bulk-banner__green-card, .bulk-banner__img-card {
    color: rgb(255, 255, 255);
    border-radius: var(--radius);
    padding: 24px 18px;
    flex: 1 1 0%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.bulk-banner__green-card a, .bulk-banner__img-card a {
    color: rgb(255, 255, 255);
    text-decoration: underline !important;
    font-size: 14px !important;
}

.bulk-banner__green-card a:hover, .bulk-banner__img-card a:hover {
    color: var(--yellow);
}

.bulk-banner__img-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    flex: 1 1 0%;
}

.bulk-banner__img-card img {
    width: 100%;
    height: 100%;
    min-height: 110px;
    object-fit: cover;
}

.bulk-banner__img-card-text {
    position: absolute;
    inset: 0px;
    display: flex;
    align-items: center;
    padding: 16px;
}

.bulk-banner__img-card-text p {
    color: rgb(255, 255, 255);
    font-size: 0.88rem;
    font-weight: 600;
    max-width: 160px;
}

.featured-brands {
    overflow: hidden;
}

.featured-brands__rice-img img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
}

.featured-brands__bar {
    background: rgb(31, 138, 31);
    border-radius: var(--radius);
    padding: 40px 20px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 4px 12px;
    height: 340px;
    margin-bottom: 24px;
}

.featured-brands__bar-inner {
    text-align: center;
}

.featured-brands__title {
    color: rgb(255, 255, 255);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-align: center;
    padding: 0px 0px 12px;
}

.featured-brands__logos {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    gap: 20px;
    flex-wrap: nowrap;
    overflow-x: auto;
}

.featured-brands-container {
    position: relative;
    margin-top: -160px;
    z-index: 10;
    padding: 0px 15px;
}

.brand-logo-box:hover {
    opacity: 0.88;
}

@media (max-width: 768px) {
    .brand-logo-box {
        flex: 0 1 calc(50% - 15px);
    }
}

.brand-logo-box span {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text);
    white-space: nowrap;
}

.featured-brands__dots {
    display: flex;
    justify-content: center;
    gap: 7px;
    margin-top: 18px;
}

.fb-dot {
    width: 8px;
    height: 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: 0.3s;
}

.fb-dot--active {
    background: rgb(255, 255, 255);
    width: 22px;
}

.featuredBrandsSwiper {
    width: 100%;
    padding: 20px 0px;
}

.featuredBrandsSwiper .swiper-slide {
    height: 200px !important;
    width: 200px !important;
    margin-right: 20px;
}

.brand-logo-box {
    width: 100%;
    height: 100%;
}

.brand-logo-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-horizontal > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-horizontal {
    bottom: 0px !important;
    top: auto !important;
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal {
    top: auto !important;
}

.swiper-pagination-bullet {
    background: rgb(255, 255, 255) !important;
}

.swiper-pagination-bullet-active {
    width: 22px !important;
    border-radius: 20px !important;
}

.best-selling {
    background: var(--bg-gray);
}

.best-selling__layout {
    display: grid;
    gap: 24px;
    align-items: start;
}

.bs-feat-card {
    background: rgb(255, 255, 255);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.bs-feat-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
}

.bs-feat-card__body {
    padding: 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex: 1 1 0%;
}

.best-selling__grid {
    display: flex;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
}

.bs-grid-card {
    background: rgb(255, 255, 255);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s;
    position: relative;
}
#products .bs-grid-card {
    flex: 0 0 calc((100% - (2 * 20px)) / 3);
}

.bs-grid-card:hover {
    box-shadow: rgba(0, 0, 0, 0.08) 0px 3px 12px;
}

.bs-grid-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    flex-shrink: 0;
}

.bs-grid-card__body {
    padding: 12px;
    flex: 1 1 0%;
    display: flex;
    flex-direction: column;
}

.agri-process {
    background: url("../../images/v2/green-bg-image.jpg") center center no-repeat;
    padding: 64px 0px;
    border-radius: 10px;
}

.agri-process__inner {
    text-align: center;
}

.agri-process__title {
    font-size: 1.6rem;
    font-weight: 700;
    color: rgb(255, 255, 255);
    margin-bottom: 8px;
}

.agri-process__sub {
    font-size: 0.86rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 40px;
}

.agri-process__steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 36px;
}

.agri-step__icon {
    width: 160px;
    height: 130px;
    border-radius: 14px;
    margin: 0px auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: rgb(255, 255, 255);
    background: rgb(76, 175, 80);
}

.agri-step__icon:hover {
    background: rgb(245, 166, 35);
    cursor: pointer;
}

.agri-step__icon--yellow {
    background: rgb(245, 166, 35);
}

.agri-step__icon--green {
    background: rgb(76, 175, 80);
}

.agri-step__icon--orange {
    background: rgb(255, 143, 0);
}

.agri-step h4 {
    font-size: 0.94rem;
    font-weight: 700;
    color: rgb(255, 255, 255);
    margin-bottom: 8px;
}

.agri-step p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.55;
}

.footer {
    background: rgb(244, 244, 244);
    color: rgb(51, 51, 51);
    padding: 56px 0px 0px;
}

.footer__grid {
    display: grid;
    grid-template-columns: 3.4fr 1.4fr 1fr;
    gap: 40px;
    padding-bottom: 44px;
}

.footer__logo-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
}

.footer__logo-icon {
    width: 200px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.footer__logo-text {
    font-size: 1.05rem;
    font-weight: 700;
    color: rgb(255, 255, 255);
}

.footer__brand p {
    font-size: 0.83rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer__contact-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__contact-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 0.82rem;
}

.footer__contact-list li i {
    color: rgb(76, 175, 80);
    font-size: 0.84rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer__contact-list li strong {
    display: block;
}

.footer__heading {
    font-size: 0.96rem;
    font-weight: 700;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgb(76, 175, 80);
    display: inline-block;
}

.footer__links ul li {
    margin-bottom: 10px;
}

.footer__links ul li a {
    font-size: 0.83rem;
    color: rgb(51, 51, 51);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s, padding-left 0.2s;
}

.footer__links ul li a::before {
    content: ">";
    color: rgb(76, 175, 80);
    font-size: 1rem;
}

.footer__links ul li a:hover {
    color: rgb(16, 155, 0);
    padding-left: 4px;
}

.footer__newsletter p {
    font-size: 0.83rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.footer__newsletter-form {
    display: flex;
    border-radius: 6px;
    overflow: hidden;
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    margin-bottom: 22px;
    min-width: 0px;
}

.footer__newsletter-form input {
    flex: 1 1 0%;
    background: rgb(255, 255, 255);
    outline: medium;
    padding: 10px 14px;
    font-size: 0.83rem;
    border: 1px solid rgb(204, 204, 204);
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    min-width: 0px;
    width: 100%;
    color: rgb(51, 51, 51) !important;
}

.footer__newsletter-form input::placeholder {
    color: rgba(0, 0, 0, 0.5);
}

.footer__newsletter-form button {
    background: rgb(224, 148, 0);
    color: rgb(255, 255, 255);
    padding: 0px 18px;
    font-size: 0.9rem;
    transition: background 0.2s;
    border-radius: 0px 20px 20px 0px;
}

.footer__newsletter-form button:hover {
    background: var(--green-dark);
}

.footer__follow h5 {
    font-size: 0.88rem;
    font-weight: 600;
    color: rgb(51, 51, 51);
    margin-bottom: 10px;
}

.footer__socials {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.footer__socials a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(51, 51, 51);
    font-size: 1.25rem;
    transition: background 0.2s, color 0.2s;
}

.footer__socials a:hover {
    background: var(--green);
    color: rgb(255, 255, 255);
}

.footer__app-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.footer__app-badges a img {
    border-radius: 5px;
    width: 100px !important;
    height: 34px !important;
}

.footer__bottom {
    background: rgb(20, 20, 20);
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding: 16px 0px;
    text-align: center;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.35);
}

.mobile-only {
    display: none !important;
}

.bulk-banner__main {
}

@media (max-width: 991px) {
    .bulk-banner__main {
    }
}

@media (max-width: 767px) {
    .hero-slider__arrow {
        display: none;
    }

    .hero__content {
        max-width: 100% !important;
    }

    .bulk-banner__main {
        min-height: 280px;
        height: auto;
    }

    .prod-card {
        min-width: 48% !important;
    }

    .featured-brands-container {
        margin-top: -70px;
    }

    .featured-brands__logos {
        display: -webkit-box;
        overflow-x: hidden;
    }

    .bs-feat-card img {
        height: auto !important;
    }

    .agri-process {
        background-size: cover;
    }
}

@media (max-width: 480px) {
    .hero__desc {
        max-width: 70% !important;
    }

    .hero__cta-group {
        display: inline-block;
    }

    .prod-card {
        min-width: 100% !important;
    }

    .prod-card__img-wrap img {
        height: auto !important;
    }

    .agri-step {
        width: 48%;
    }
}

.city_popup {
    width: 485px;
    margin: 0px auto;
    position: fixed;
    top: 20%;
    left: 0px;
    right: 0px;
    z-index: 22;
    background-color: rgb(255, 255, 255);
    padding: 0px 0px 45px;
    background-image: url("../../images/pop-bg.png");
    background-repeat: repeat-x;
    background-position: left bottom;
    display: none;
}

.signin_popup, .change_pwd_popup {
    width: 485px;
    margin: 0px auto;
    position: fixed;
    top: 20%;
    left: 0px;
    right: 0px;
    z-index: 22;
    background-color: rgb(255, 255, 255);
    padding: 0px 0px 10px;
    display: none;
}

.signpop_text {
    width: 100%;
    text-align: center;
}

.signpop_text a {
    color: rgb(101, 137, 0);
    font-size: 14px;
    font-weight: 600;
    clear: both;
    width: 90%;
}

.city_popup_heading {
    font-size: 18px;
    font-weight: 600;
    color: rgb(255, 255, 255);
    background-color: rgb(16, 155, 0);
    padding: 13px 0px 13px 20px;
}

.pop_fild_outer {
    width: 360px;
    margin: 0px auto;
    padding: 60px 0px;
}

.pop_fild_outer.change_pwd_popup_inner {
    padding: 40px 0px;
}

.pop_close, .pop_close_forgot_pwd {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 24px;
    text-transform: uppercase;
    color: rgb(255, 255, 255);
    cursor: pointer;
    font-weight: 600;
    padding: 5px;
    background-image: url("");
}

.textfild {
    font-family: "Source Sans Pro", Arial, Helvetica, sans-serif;
    font-size: 15px;
    color: rgb(17, 17, 17);
    border: 1px solid rgb(214, 214, 214);
    padding: 10px 0px 10px 18px;
    border-radius: 2px;
    outline: medium;
    text-indent: 0.01px;
    appearance: none;
}

.textfild:focus {
    border: 1px solid rgb(213, 213, 213);
    box-shadow: rgb(213, 213, 213) 0px 0px 10px;
}

.pop_fild {
    padding: 10px 0px 10px 12px;
    color: rgb(102, 102, 102);
    background-image: url("../../images/arrow1.png");
    background-repeat: no-repeat;
    background-position: 95% center;
    box-sizing: border-box;
}

.pop_fild:focus {
    border: 1px solid rgb(214, 214, 214);
    box-shadow: rgb(223, 243, 166) 0px 0px 0px;
}

.city_popup.forgot_pop {
    background-image: none;
    padding-bottom: 10px;
}

.pop_fild_a {
    padding: 10px 0px 10px 5%;
    /* width: 95%; */
    color: rgb(102, 102, 102);
    background-image: none;
}

.pop_fild.pop_fild_sign {
    padding: 11px 0px 11px 5%;
    width: 100%;
    color: rgb(34, 34, 34);
    background-image: none;
    margin-bottom: 8px;
}

.btn.pop_btn_sign {
    width: 100%;
    margin: 3px 0px 8px;
    text-transform: uppercase;
    font-size: 15px;
}

input[type="text"], input[type="email"], input[type="search"], input[type="password"], input[type="submit"], input[type="image"], input[type="button"] {
    appearance: none;
    border-radius: 0px;
}

#locationStore {
    margin-top: 10px;
    /* width: 267px; */
    background-image: url("../../images/arrow1.png");

}

.sa_sb {
    background-image: url("../../images/down-icon1.png");
    background-position: 95% center;
    background-repeat: no-repeat;
}

.sa_tf {
    width: 400px;
    float: left;
    display: block;
    border: 1px solid rgb(205, 205, 205);
    padding: 10px 10px 6px;
    color: rgb(59, 59, 59);
    font-size: 14px;
    margin: 0px 18px 12px 0px;
    border-radius: 2px !important;
}

.sa_tf:focus {
    border: 1px solid rgb(187, 197, 160);
    box-shadow: rgb(202, 216, 163) 0px 0px 8px 0px;
    background-color: rgb(246, 246, 246);
}

.mask, .mask_a, .mask_b, .mask_coupon, .mask_forgot_pwd, .mask_status {
    width: 100%;
    height: 100%;
    background: rgb(0, 0, 0);
    top: 0px;
    position: fixed;
    opacity: 0.5;
    display: none;
    z-index: 11;
}

.mask_forgot_pwd {
    width: 100%;
    height: 100%;
    background: rgb(0, 0, 0);
    top: 0px;
    position: fixed;
    opacity: 0.5;
    display: none;
    z-index: 22;
}

.mask_c {
    width: 100%;
    height: 100%;
    background: rgb(0, 0, 0);
    top: 0px;
    position: fixed;
    opacity: 0.5;
    display: none;
    z-index: 21;
}

.mask_status {
    z-index: 999 !important;
}

.main_wrapper_outer {
    width: 100%;
    background-color: rgb(255, 255, 255);
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.orb_logo {
    width: 84px;
    position: absolute;
    top: 5px;
    right: 5px;
    z-index: 10;
}

.orb_logo img {
    width: 100% !important;
    height: 24px !important;
    min-height: 24px !important;
}

.orb_image {
    width: 100px;
    float: right;
    clear: both;
}

.orb_image img {
    width: 100%;
}

#search2 {
    border: 1px solid #dcdde1;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06);
}

#products {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.brand-label {
    color: white;
    margin: 12px 0px;
    font-size: 16px;
    font-weight: bolder;
}

.sidenav__signout {
    position: fixed;
    bottom: 8px;
    padding: 12px 22px 0px;
    border-top: 1px solid gray;
    right: 0px;
    left: 0px;
}

.sidenav__signout i {
    width: 24px;
    height: 24px;
    color: white;
}

.sidenav__signout span {
    font-weight: bold;
    font-size: 16px;
    color: white;
}