:root {
    --bg: #ffffff;
    --gold: #c89435;
    --gold-light: #fff1c8;
    --text: #2b2b2b;
    --heading: #121212;
    --muted: #777;
    --green: #2ea44f;
    --red: #e5533d;
    --line: #e3e3e0;
    --ink: #191400;
    --card: #ffffff;
    --orange: #EA9834;
    --brown: #8b6914;
    --danger: #e3342f
}

/* ========== SMOOTH SCROLLING ========== */
html {
    scroll-behavior: smooth
}

/* ========== GLOBAL TRANSITIONS ========== */
*,
*::before,
*::after {
    transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform;
    transition-duration: 200ms;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1)
}

/* Reset transitions for elements that shouldn't have them */
html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
pre,
code {
    transition: none
}

* {
    box-sizing: border-box
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Lexend', system-ui, -apple-system, sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden
}

html,
body {
    max-width: 100%;
    overflow-x: hidden
}

main {
    display: block;
    padding: 0;
    margin: 0
}

section {
    display: block;
    margin: 0;
    padding: 0
}

body.home main {
    padding: 0;
    margin: 0
}

.row {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.flex {
    display: flex
}

.flex-col {
    flex-direction: column
}

.flex-1 {
    flex: 1 1 0%
}

.items-center {
    align-items: center
}

.items-start {
    align-items: flex-start
}

.items-end {
    align-items: flex-end
}

.justify-center {
    justify-content: center
}

.justify-between {
    justify-content: space-between
}

.gap-2 {
    gap: 8px
}

.gap-3 {
    gap: 12px
}

.gap-4 {
    gap: 16px
}

.gap-2\.5 {
    gap: 10px
}

.gap-3\.5 {
    gap: 14px
}

.gap-\[18px\] {
    gap: 18px
}

.mt-3 {
    margin-top: 12px
}

.mt-1\.5 {
    margin-top: 6px
}

.mt-2\.5 {
    margin-top: 10px
}

.mb-0 {
    margin-bottom: 0
}

.mb-0\.5 {
    margin-bottom: 2px
}

.mb-2 {
    margin-bottom: 8px
}

.mb-3 {
    margin-bottom: 12px
}

.mb-4 {
    margin-bottom: 16px
}

.ml-2 {
    margin-left: 8px
}

.w-full {
    width: 100%
}

.h-5 {
    height: 20px
}

.w-5 {
    width: 20px
}

.min-w-\[20px\] {
    min-width: 20px
}

.min-h-\[80vh\] {
    min-height: 80vh
}

.text-center {
    text-align: center
}

.text-sm {
    font-size: 14px
}

.text-2xl {
    font-size: 24px
}

.text-4xl {
    font-size: 36px
}

.text-\[13px\] {
    font-size: 13px
}

.text-\[15px\] {
    font-size: 15px
}

.text-\[26px\] {
    font-size: 26px
}

.font-medium {
    font-weight: 500
}

.font-semibold {
    font-weight: 600
}

.font-bold {
    font-weight: 700
}

.leading-normal {
    line-height: 1.5
}

.leading-relaxed {
    line-height: 1.625
}

.leading-tight {
    line-height: 1.25
}

.cursor-pointer {
    cursor: pointer
}

.no-underline {
    text-decoration: none
}

.rounded {
    border-radius: 8px
}

.text-muted {
    color: var(--muted)
}

.text-text {
    color: var(--text)
}

.text-gold {
    color: var(--gold)
}

.bg-ink {
    background: var(--ink)
}

.border-line {
    border-color: var(--line)
}

.border-text {
    border-color: var(--text)
}

.text-\[\#3e3e3a\] {
    color: #3e3e3a
}

/* ========== ADDITIONAL UTILITY CLASSES ========== */

.hidden {
    display: none
}

.relative {
    position: relative
}

.text-danger {
    color: var(--danger)
}

/* Dropdown Menu Right Alignment */
.dropdown-menu-right {
    right: 0;
    left: auto
}

/* Button Icon (unstyled button) */
.btn-icon {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.2s ease
}

.btn-icon:hover {
    opacity: 0.8
}

.btn-icon:active {
    transform: scale(0.95)
}

/* Cart Button */
.cart-btn {
    color: var(--text);
    text-decoration: none
}

/* Cart Badge */
.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--gold);
    color: #fff;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1)
}

.cart-btn:hover .cart-badge {
    transform: scale(1.1);
    box-shadow: 0 2px 8px rgba(234, 152, 52, 0.4)
}

/* Mobile cart badge fix */
@media (max-width: 768px) {
    .cart-badge {
        right: -4px;
        top: -6px;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    box-sizing: border-box
}

.header {
    border-bottom: 1px solid var(--line);
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 50
}

.header .row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    height: 100%;
}

.header-actions .nav-link-with-arrow {
    display: flex;
    align-items: center;
    gap: 6px;
    height: auto;
    line-height: 1;
}

.header-actions .nav-link-with-arrow img {
    display: block;
    flex-shrink: 0;
}

.header-actions .nav-link-with-arrow span {
    display: inline-block;
    vertical-align: middle;
    line-height: 1.5;
}

.header-actions .btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
}

.header-actions .btn-icon img {
    display: block;
    flex-shrink: 0;
}

.header-top {
    background: #1b1b18;
    border-bottom: none;
    font-size: 11px;
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px
}

.header-top .row {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 0
}

.header-top span {
    letter-spacing: 0.3px
}

.header-top .left,
.header-top .right {
    display: flex;
    gap: 14px;
    align-items: center;
    color: #fff
}

.header-top img {
    height: 16px;
    width: 16px;
    filter: invert(1)
}

.nav {
    display: flex;
    gap: 42px;
    align-items: center;
    height: 100%;
}

.brand {
    display: flex;
    align-items: center;
    /* height: 100%; */
}

.brand img {
    display: block;
    height: auto;
    max-height: 32px;
}

.uppercase-links a {
    font-family: 'Lexend', sans-serif;
    text-transform: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0;
    color: var(--heading);
}

.nav a:hover {
    color: var(--gold);
    text-decoration: none
}

.nav .nav-dropdown:hover .nav-link-with-arrow {
    color: var(--gold);
}

.nav-dropdown {
    position: relative
}

.nav-link-with-arrow {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--heading);
    text-decoration: none;
    font-family: 'Lexend', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
}

.nav-link-with-arrow:hover {
    text-decoration: underline
}

.nav-link-with-arrow .arrow-down {
    font-size: 10px;
    color: var(--muted);
    transition: transform 0.2s
}

.nav-dropdown:hover .arrow-down {
    transform: rotate(180deg)
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 8px 0;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .1);
    z-index: 100;
    margin-top: 8px
}

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

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--text);
    text-decoration: none;
    font-family: 'Lexend', sans-serif;
    font-size: 13px;
    text-transform: none;
    letter-spacing: normal;
}

.dropdown-menu a:hover {
    background: #faf9f6;
    text-decoration: none
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px
}

.brand img {
    height: 32px;
    width: auto
}

.brand .name {
    font-weight: 600;
    font-size: 18px
}

.hero {
    position: relative;
    padding: 0;
    background: #f5f1e8;
    margin: 0;
    line-height: 0;
    font-size: 0
}

.hero .grid,
.hero-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 48px;
    align-items: center;
    height: 580px;
    line-height: normal;
    font-size: initial
}

.hero-full {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background: #f5f1e8;
    margin-top: 0;
    margin-bottom: 0;
    display: block;
    line-height: 0;
    font-size: 0;
    padding: 0
}

.carousel {
    position: relative;
    overflow: hidden;
    background: #f5f1e8;
    display: block;
    line-height: 0;
    font-size: 0;
    margin: 0;
    padding: 0
}

.slides {
    display: flex;
    transition: transform .6s ease;
    line-height: 0;
    font-size: 0;
    vertical-align: top
}

.slide {
    min-width: 100vw;
    height: auto;
    background: none;
    padding: 0;
    display: block;
    position: relative;
    overflow: visible;
    vertical-align: top
}

.hero-banner-img {
    display: block;
    width: 100%;
    height: auto
}

.hero-banner-picture {
    display: block;
    width: 100%;
}

.hero-banner-link {
    display: block;
    width: 100%;
    line-height: 0;
    text-decoration: none;
}

.hero-tag {
    color: var(--gold);
    letter-spacing: 2px;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 8px
}

.hero-title {
    font-size: 54px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #1b1b18;
    line-height: 1.1;
    max-width: 500px;
    margin-bottom: 20px;
    margin-top: 0
}

.hero-sub {
    color: #1b1b18;
    margin-top: 0;
    font-size: 16px;
    line-height: 1.6;
    max-width: 520px;
    font-weight: 400;
    margin-bottom: 8px
}

.hero-left {
    padding-top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.hero-right {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    height: 100%
}

.hero-right img {
    height: 500px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, .15));
    position: relative;
    z-index: 2;
    mix-blend-mode: multiply;
    display: block;
}


/* Decorative Elements for Hero */
.hero .decorative-bee {
    position: absolute;
    width: 60px;
    height: auto;
    z-index: 3;
    animation: float 6s ease-in-out infinite
}

.hero .bee-left {
    top: 50px;
    left: 10%
}

.hero .bee-right {
    top: 80px;
    right: 12%;
    animation-delay: 2s
}

.hero .honey-dipper {
    position: absolute;
    width: 80px;
    height: auto;
    top: 70%;
    right: 8%;
    z-index: 3;
    opacity: 0.9
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg)
    }

    25% {
        transform: translateY(-15px) rotate(3deg)
    }

    50% {
        transform: translateY(-10px) rotate(-3deg)
    }

    75% {
        transform: translateY(-18px) rotate(2deg)
    }
}


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

.dot {
    height: 7px;
    width: 7px;
    border-radius: 50%;
    background: #e3e3e0;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    padding: 0;
    margin: 0;
    min-width: 7px;
    min-height: 7px;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation
}

.dot.active {
    background: var(--gold);
    width: 7px;
    border-radius: 50%
}

.arrows {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 50%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 10
}

.arrow {
    pointer-events: auto;
    background: #fff;
    border: 1px solid var(--line);
    height: 40px;
    width: 40px;
    min-width: 44px;
    min-height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--text);
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .1);
    padding: 0;
    margin: 0;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation
}

.arrow:hover {
    background: #faf9f6;
    border-color: var(--gold);
    color: var(--gold)
}

.cta {
    display: flex;
    gap: 16px;
    margin-top: 32px;
    flex-wrap: wrap
}

.btn {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none
}

.btn-primary {
    background: var(--gold);
    color: #fff;
    box-shadow: 0 2px 8px rgba(234, 152, 52, .3);
    font-weight: 600;
    transition: all 0.2s;
    padding: 13px 30px;
    font-size: 15px;
    border-radius: 6px;
    border: none;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation
}

.btn-primary:hover {
    background: #e6a800;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(234, 152, 52, .4)
}


.btn-outline {
    border: 1px solid #1b1b18;
    color: #1b1b18;
    background: transparent;
    padding: 13px 30px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 6px;
    display: inline-block;
    text-decoration: none;
    transition: all 0.2s;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation
}

.btn-outline:hover {
    background: rgba(27, 27, 24, .08);
    border-color: #1b1b18;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, .08)
}

.strip {
    display: flex;
    gap: 10px;
    padding: 12px 0;
    overflow: auto
}

.chip {
    display: inline-block;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 8px 14px;
    white-space: nowrap
}

.ribbon {
    background: #6B4F1D;
    color: #fff;
    border-top: none;
    border-bottom: none;
    margin-top: -1px;
    margin-bottom: 0;
    position: relative;
    z-index: 5;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    overflow: hidden;
    display: block;
    line-height: 0;
    font-size: 0;
    padding: 0
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    line-height: 0;
    font-size: 0
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 8px 0;
    animation: marquee 30s linear infinite;
    will-change: transform;
    line-height: normal;
    font-size: initial
}

.marquee-content:hover {
    animation-play-state: paused
}

@keyframes marquee {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

.ribbon .items {
    display: flex;
    gap: 8px 22px;
    align-items: center;
    justify-content: center;
    padding: 8px 10px;
    flex-wrap: wrap;
    max-width: 100%;
    width: 100%
}

.ribbon .items::-webkit-scrollbar {
    display: none
}

.ribbon .item {
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    position: relative;
    padding-left: 16px
}

.ribbon .item:first-child {
    padding-left: 0
}

.ribbon .item:first-child:before {
    display: none
}

.ribbon .item:before {
    content: '•';
    color: #fff;
    font-size: 16px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    line-height: 1;
    opacity: 0.7
}

.section {
    margin-top: 70px;
    padding-left: 0;
    padding-right: 0
}

.section-header {
    text-align: center;
    margin-bottom: 48px
}

.section-title {
    font-family: 'Lexend', sans-serif;
    font-size: 32px;
    font-weight: 500;
    color: var(--heading);
    margin-bottom: 12px;
    line-height: 1;
    letter-spacing: 0
}

.section-subtitle {
    font-family: 'Lexend', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--muted);
    line-height: 22px;
    letter-spacing: 0;
    max-width: 650px;
    margin: 0 auto
}

.mt-6 {
    margin-top: 24px
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px
}

.card {
    background: var(--card);
    border: none;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08)
}

.card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
    background: #fff
}

.price {
    color: var(--muted)
}

.stars {
    color: var(--gold);
    font-size: 14px
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px
}

.step-icon {
    height: 48px;
    width: 48px;
    margin-bottom: 8px
}

.vs {
    display: flex;
    align-items: center;
    justify-content: center
}

.vs .badge {
    height: 40px;
    width: 40px;
    clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700
}

.faq-section {
    background: url('/img/faq_bg.png') right center / contain no-repeat;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 80px 0;
    position: relative;
}

.faq-section .container {
    position: relative;
    z-index: 1;
}

.faq-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 64px;
    align-items: start;
    margin-top: 40px
}


.faq-section {
    background: url(/img/faq_bg.png) right center / contain no-repeat;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 0px 0;
    position: relative
}

.faq-content {
    flex: 1
}

.faq-content .section-header {
    text-align: left;
    margin-bottom: 32px
}

.faq-content .section-title {
    text-align: left
}

.faq-content .section-subtitle {
    text-align: left;
    margin-left: 0;
    margin-right: 0
}

.faq-illustration {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-top: 0;
    position: relative;
    margin-right: -50px
}

.faq-pour-image {
    max-width: 420px;
    width: 100%;
    height: auto;
    max-height: 650px;
    object-fit: contain;
    position: relative;
    right: 0;
    display: block;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.08))
}

.accordion {
    max-width: 100%
}

.faq-item {
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    background: transparent;
    margin-bottom: 16px;
    overflow: hidden
}

.faq-question {
    padding: 16px 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    transition: background 0.2s;
    user-select: none;
    min-height: 48px;
    -webkit-tap-highlight-color: transparent
}

.faq-question:hover {
    background: transparent
}

.faq-question:after {
    content: '';
    height: 36px;
    width: 36px;
    min-width: 36px;
    background-image: url('/img/faq-down.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.3s ease
}

.faq-item.open .faq-question:after {
    background-image: url('/img/faq-up.png')
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease
}

.faq-answer-inner {
    padding: 0 20px 20px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7
}

.band {
    background: #faf9f6;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 24px 0;
    margin-top: 40px
}


/* Farm Section with Text Box Overlay */
.farm-section {
    margin-top: 0px;
    background: url(/img/true_tuch.png) center bottom / cover no-repeat;
    min-height: 360px;
    display: flex;
    align-items: flex-start;
    padding: 80px 0 80px;
    position: relative;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw)
}

.farm-section .container {
    position: relative;
    z-index: 1;
    max-width: 1200px
}

.farm-text-box {
    background: #fffbf3;
    border-radius: 8px;
    padding: 32px 36px;
    max-width: 500px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 200px
}

.farm-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 20px;
    line-height: 0;
    position: relative;
    z-index: 1
}

.farm-description {
    font-size: 14px;
    color: var(--text);
    line-height: 1.7;
    margin: 0;
    position: relative;
    z-index: 1
}

.farm {
    margin-top: 56px;
    background: url('/img/true_tuch.png') center bottom / cover no-repeat;
    min-height: 650px;
    display: flex;
    align-items: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw)
}

.farm .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1
}

.farm-content {
    max-width: 100%;
    padding: 0
}

.farm .container:after {
    display: none
}

.pour {
    position: relative;
    min-height: 120px
}

.pour img {
    position: absolute;
    right: 0;
    top: -24px;
    height: 170px
}

.footer {
    background: #fffdf7;
    margin-top: 0px;
    border-top: 1px solid var(--line)
}

.footer .grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    padding: 32px 0;
    margin: auto
}

.footer h4 {
    margin: 0 0 12px 0;
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    letter-spacing: 0
}

.footer a {
    color: var(--text);
    text-decoration: none;
    font-size: 13px;
    line-height: 2;
    transition: all 0.2s ease
}

.footer a:hover {
    text-decoration: none;
    color: var(--gold);
    transform: translateX(2px)
}

.footer .brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px
}

.footer .brand img {
    height: 32px;
    width: auto
}

.footer-bottom {
    background: #ffffff;
    color: #1b1b18;
    padding: 20px 0;
    border-top: 1px solid var(--line)
}

.footer-bottom .row {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-size: 12px;
    color: #706f6c;
    font-weight: 400
}

.social-icons {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    text-decoration: none;
    transition: all 0.2s ease;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(234, 152, 52, 0.1)
}

.social-icon:hover {
    background: rgba(234, 152, 52, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(234, 152, 52, 0.2)
}

.social-icon img,
.social-icon svg {
    width: 20px;
    height: 20px;
    object-fit: contain
}

.home #honey {
    text-align: center
}

.home #honey .section-header {
    text-align: center
}

.home #honey .grid-4 {
    margin-top: 48px;
    gap: 24px
}

.home-seo-section {
    margin-top: 70px;
}

.home-seo-section .home-seo-header {
    margin-bottom: 40px;
}

.home-seo-section .section-title {
    margin-bottom: 12px;
}

.home-seo-section .section-subtitle {
    margin-bottom: 0;
}

.home-seo-content {
    background: #fff;
    border: none;
    border-radius: 0;
    padding: 0 0 24px 0;
    color: var(--text);
    font-family: 'Lexend', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    width: 100%;
    max-width: 100%;
}

.home-seo-content .home-seo-lead {
    font-size: 15px;
    line-height: 1.7;
    margin: 0 0 28px;
    color: #3e3e3a;
}

.home-seo-content .home-seo-h3 {
    font-family: 'Lexend', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--heading);
    margin: 36px 0 14px;
    line-height: 1.3;
}

.home-seo-content .home-seo-h3:first-of-type {
    margin-top: 0;
}

.home-seo-content p {
    font-size: 15px;
    line-height: 1.7;
    margin: 0 0 16px;
    color: #3e3e3a;
}

.home-seo-content ul,
.home-seo-content ol {
    margin: 0 0 20px 24px;
    padding: 0 0 0 4px;
}

.home-seo-content ol {
    padding-left: 20px;
}

.home-seo-content li {
    font-size: 15px;
    line-height: 1.7;
    margin: 0 0 10px;
    color: #3e3e3a;
    list-style: outside;
}

.home-seo-content li:last-child {
    margin-bottom: 0;
}

.product-card {
    background: #fff;
    border: 0;
    padding: 0;
    text-align: left;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column
}

.product-card:hover {
    transform: translateY(-4px)
}

.product-image-link {
    display: block;
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: #ffffff;
    position: relative;
    border: 1px solid #fff6f6;
    border-radius: 0;
    text-decoration: none
}

.honey-drip-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: visible
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 30px;
    transition: transform 0.4s ease;
    background: transparent;
    border-radius: 0;
    max-width: 100%;
    display: block
}

.product-card:hover .product-image {
    transform: scale(1.05)
}

.product-info {
    padding-top: 10px;
    flex: 1;
    display: flex;
    flex-direction: column
}

.product-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    margin: 0 0 8px 0;
    line-height: 1.3;
    text-align: left
}

.product-description {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 12px;
    line-height: 1.5;
    text-align: left;
    min-height: 15px
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
    flex-wrap: wrap
}

.rating-value {
    font-weight: 600;
    color: var(--text);
    font-size: 14px
}

.product-rating .star-icon {
    color: #f5a623;
    font-size: 14px
}

.product-rating .reviews-count {
    color: var(--muted);
    font-size: 13px
}

.product-price {
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 16px;
    text-align: left
}

.shop-now-btn {
    width: 100%;
    text-align: center;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    background: linear-gradient(135deg, #D4962B 0%, #C8892A 100%);
    color: #fff;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer
}

.shop-now-btn:hover {
    background: linear-gradient(135deg, #C8892A 0%, #B87E28 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 150, 43, 0.3);
    color: #fff
}

.shop-now-btn:active {
    transform: translateY(0)
}

.btn-explore-all {
    display: inline-block;
    color: var(--text);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    margin-top: 32px;
    transition: color 0.2s
}

.btn-explore-all .arrow-right {
    margin-left: 6px;
    color: var(--gold);
    font-size: 16px;
    transition: margin-left 0.2s
}

.btn-explore-all:hover {
    color: var(--gold);
    text-decoration: none
}

.btn-explore-all:hover .arrow-right {
    margin-left: 10px;
    color: var(--gold)
}

.home #process {
    text-align: center
}

.process-grid {
    gap: 32px;
    margin-top: 48px
}

.process-card {
    background: transparent;
    border: 0;
    padding: 0;
    text-align: center
}

.process-icon {
    height: 300px;
    width: auto;
    max-width: 100%;
    margin: 0 auto 24px;
    display: block;
    object-fit: contain
}

.process-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 12px;
    line-height: 1.3
}

.process-description {
    font-family: 'Lexend', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--muted);
    line-height: 22px;
    letter-spacing: 0;
    max-width: 320px;
    margin: 0 auto
}

.home #comparison {
    background: #fffcf2 !important;
    background-color: #fffcf2 !important;
    padding: 62px 0 36px;
    margin-top: 70px;
    overflow: hidden;
}

.home #comparison .container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 10px;
}

.home #comparison .section-title-v2 {
    font-family: 'Lexend', sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.08;
    color: #1a1a1a;
    margin-bottom: 8px;
    text-align: center;
}

.home #comparison .subtitle-v2 {
    font-family: 'Lexend', sans-serif;
    font-size: 14px;
    line-height: 1.3;
    color: #3e3e3e;
    margin-bottom: 52px;
    text-align: center;
}

.home #comparison .compare-container-v2 {
    position: relative;
    max-width: 1140px;
    margin: 0 auto;
}

.home #comparison .compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: end;
    position: relative;
    z-index: 2;
}

.home #comparison .compare-side-v2 {
    position: relative;
}

.home #comparison .compare-product-v2 {
    position: relative;
    z-index: 3;
    width: min(34vw, 210px);
    max-height: 250px;
    object-fit: contain;
    margin: 0 auto -24px;
    filter: none;
    mix-blend-mode: multiply;
}

.home #comparison .card {
    background: #ffffff !important;
    background-color: #ffffff !important;
    border: none;
    border-radius: 14px;
    padding: 0;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    text-align: left;
    position: relative;
    z-index: 1;
}

.home #comparison .card:hover {
    transform: none;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.home #comparison .card::before {
    content: '';
    display: block;
    height: 56px;
    background: #ffffff;
}

.home #comparison .card-header-v2 {
    padding: 16px 20px;
    font-family: 'Lexend', sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
}

.home #comparison .raw .card-header-v2 {
    background: linear-gradient(90deg, #d8a13d 0%, #7d5a18 100%);
    color: #fff;
}

.home #comparison .market .card-header-v2 {
    background: #efe2b9;
    color: #1f1f1f;
}

.home #comparison .card-body-v2 {
    background: #ffffff !important;
    background-color: #ffffff !important;
    padding: 0 16px;
}

.home #comparison .row-v2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 73px;
    border-bottom: 1px solid #dfdfdf;
    font-family: 'Lexend', sans-serif;
    font-size: 16px;
    color: #4e4e4e;
    padding: 8px 12px;
    flex-wrap: nowrap;
}

.home #comparison .row-v2>span:first-child {
    width: 20px;
    min-width: 20px;
}

.home #comparison .row-v2>span:last-child {
    display: inline-block;
    min-width: 250px;
    text-align: left;
}

.home #comparison .row-v2:last-child {
    border-bottom: 0;
}

.home #comparison .icon-v2 {
    width: 20px;
    height: 20px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    background: transparent;
    flex-shrink: 0;
}

.home #comparison .icon-v2.green {
    color: #53a63a;
    border: 1.5px solid #53a63a;
}

.home #comparison .icon-v2.red {
    color: #e04843;
    border: 1.5px solid #e04843;
}

.home #comparison .vs {
    position: absolute;
    left: 50%;
    top: 54px;
    transform: translateX(-50%);
    width: 110px;
    height: 124px;
    background: #eda53a;
    color: #fff;
    font-size: 34px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(50% 0%, 95% 25%, 95% 75%, 50% 100%, 5% 75%, 5% 25%);
    z-index: 5;
}

.home #comparison .honey-v2 {
    margin-top: 8px;
    text-align: center;
}

.home #comparison .honey-v2 img {
    width: min(22vw, 250px);
    margin: 0 auto;
    display: block;
}

@media (max-width: 960px) {
    .home #comparison {
        padding: 54px 0 32px;
        background: #f7f5ec !important;
        background-color: #f7f5ec !important;
    }

    .home #comparison .section-title-v2 {
        font-size: 34px;
    }

    .home #comparison .subtitle-v2 {
        font-size: 16px;
        margin-bottom: 34px;
    }

    .home #comparison .compare {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .home #comparison .vs {
        display: none;
    }

    .home #comparison .compare-product-v2 {
        width: min(58vw, 220px);
        max-height: 240px;
        margin-bottom: -15px;
    }

    .home #comparison .card-header-v2 {
        font-size: 24px;
    }

    .home #comparison .row-v2 {
        min-height: 60px;
        font-size: 16px;
    }

    .home #comparison .row-v2>span:last-child {
        min-width: 210px;
    }

    .home #comparison .honey-v2 img {
        width: min(46vw, 210px);
    }
}


.comparison-illustration {
    text-align: center;
    margin-top: 48px;
    position: relative;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 24px
}

.comparison-pour {
    height: 140px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    display: block
}

.home #testimonials {
    text-align: center
}

.testimonials-grid {
    gap: 28px;
    margin-top: 48px
}

.testimonial-card {
    background: #fff;
    border: none;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    text-align: left;
    transition: transform 0.2s
}

.testimonial-card:hover {
    transform: translateY(-4px)
}

.testimonial-stars {
    color: var(--gold);
    font-size: 18px;
    margin-bottom: 16px;
    letter-spacing: 3px
}

.testimonial-content {
    font-size: 15px;
    color: #3e3e3a;
    line-height: 1.7;
    margin-bottom: 16px
}

.testimonial-author {
    font-size: 14px;
    color: var(--muted);
    font-style: normal;
    font-weight: 500
}

/* Ensure images don't overflow on mobile */
img {
    max-width: 100%;
    height: auto;
    display: block
}

@media (max-width:960px) {

    .hero .grid,
    .hero-grid {
        grid-template-columns: 1fr;
        min-height: auto;
        height: auto;
        gap: 32px;
        padding: 40px 0
    }

    .hero-left {
        order: 1;
        text-align: center;
        padding: 0
    }

    .hero-right {
        order: 2;
        justify-content: center;
        align-items: center
    }

    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px
    }

    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px
    }

    .footer .grid {
        grid-template-columns: 1fr 1fr
    }

    .comparison-wrapper {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 32px;
        display: flex;
        flex-direction: column;
        padding: 0 16px
    }

    .comparison-side {
        gap: 24px;
        width: 100%
    }

    .comparison-vs-badge {
        padding: 20px 0;
        order: 2;
        align-self: center
    }

    .comparison-left-side {
        order: 1
    }

    .comparison-right-side {
        order: 3
    }

    .comparison-image-wrapper {
        width: 100%;
        max-width: 300px;
        margin: 0 auto
    }

    .comparison-container {
        flex-direction: column;
        gap: 24px
    }

    .comparison-table {
        grid-template-columns: 1fr;
        gap: 16px
    }

    .comparison-vs-top {
        margin-bottom: 32px
    }

    .faq-section {
        padding: 60px 0;
    }

    .faq-container {
        grid-template-columns: 1fr
    }

    .faq-illustration {
        display: none
    }

    .farm .container {
        grid-template-columns: 1fr;
        gap: 32px
    }

    .farm .container:after {
        display: none
    }

    .farm {
        background-position: center center;
        background-size: cover;
        padding: 60px 0;
        min-height: auto
    }

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

    .farm .content {
        max-width: 100%;
        margin: 0 auto
    }

    .slide {
        min-height: auto;
        height: auto;
        background-size: cover;
        background-position: center;
        padding: 60px 0 40px 0
    }

    .jar-img {
        height: 350px;
        max-width: 100%;
        width: auto
    }

    .hero-title {
        font-size: 42px;
        max-width: 100%;
        text-align: center
    }

    .hero-sub {
        font-size: 16px;
        max-width: 100%;
        text-align: center
    }

    .cta {
        flex-direction: column;
        width: 100%;
        gap: 12px;
        align-items: stretch
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
        text-align: center;
        display: block
    }

    .section-title {
        font-size: 26px
    }

    .nav {
        flex-wrap: wrap;
        gap: 12px
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 8px 0 0 16px
    }

    .nav-dropdown:hover .dropdown-menu {
        transform: none
    }
}

@media (max-width: 768px) {
    .section {
        margin-top: 50px;
        padding: 0
    }

    .section-header {
        margin-bottom: 30px;
        padding: 0 16px
    }

    .section-title {
        font-size: 24px !important;
        line-height: 1.3
    }

    .section-subtitle {
        font-size: 15px;
        padding: 0 16px
    }

    .grid-4 {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px;
        padding: 0 16px
    }

    .grid-3 {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px;
        padding: 0 16px
    }

    .product-card {
        display: flex;
        flex-direction: column;
        height: 100%
    }

    .product-image {
        height: 200px;
        width: 100%;
        object-fit: contain
    }

    .product-name {
        font-size: 15px;
        margin-bottom: 6px
    }

    .product-tagline {
        font-size: 12px;
        min-height: 15px;
        margin-bottom: 8px
    }

    .product-rating {
        font-size: 13px;
        margin-bottom: 8px;
        flex-wrap: wrap;
        justify-content: center
    }

    .product-price {
        font-size: 15px;
        margin-bottom: 12px
    }

    .btn-shop-now {
        margin-top: auto;
        padding: 12px 16px;
        font-size: 13px
    }

    .process-icon {
        height: 100px;
        width: auto;
        max-width: 100%
    }

    .process-title {
        font-size: 18px;
        margin-bottom: 12px
    }

    .process-description {
        font-size: 14px;
        line-height: 1.6
    }

    .testimonial-card {
        padding: 24px;
        height: 100%
    }

    .testimonial-content {
        font-size: 14px;
        line-height: 1.6
    }

    .ribbon .item {
        font-size: 12px;
        padding-left: 12px
    }

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

    .farm .content {
        max-width: 100%;
        margin: 0 auto
    }

    .farm-title {
        font-size: 28px;
        text-align: center;
        padding: 0 16px
    }

    .farm-description {
        font-size: 14px;
        text-align: center;
        padding: 0 16px;
        max-width: 100%
    }

    .comparison-container {
        padding: 0 16px
    }

    .comparison-image {
        max-width: 100%;
        height: auto
    }

    .comparison-table {
        padding: 0 16px
    }

    .faq-container {
        padding: 0 16px
    }

    .btn-explore-all {
        display: inline-block;
        margin-top: 24px;
        padding: 12px 24px
    }
}

@media (max-width: 480px) {

    .hero .grid,
    .hero-grid {
        min-height: auto !important;
        height: auto !important;
        gap: 24px !important;
        padding: 30px 0 20px 0 !important
    }

    .slide {
        min-height: auto !important;
        height: auto !important;
        padding: 0px 0 0px 0 !important;
        background-size: cover;
        background-position: center
    }

    .hero-left {
        padding: 0 16px
    }

    .hero-title {
        font-size: 28px !important;
        line-height: 1.2;
        margin-bottom: 12px;
        text-align: center
    }

    .hero-sub {
        font-size: 14px !important;
        line-height: 1.5;
        text-align: center;
        margin-bottom: 24px
    }

    .jar-img {
        height: 250px !important;
        max-width: 100%;
        width: auto
    }

    .cta {
        gap: 10px;
        padding: 0 16px
    }

    .section {
        margin-top: 40px;
        padding: 0
    }

    .section-header {
        margin-bottom: 24px;
        padding: 0 16px
    }

    .section-title {
        font-size: 22px !important;
        line-height: 1.3
    }

    .section-subtitle {
        font-size: 14px;
        padding: 0 16px;
        line-height: 1.5
    }

    .grid-4 {
        grid-template-columns: 1fr !important;
        gap: 20px;
        padding: 0 16px
    }

    .grid-3 {
        grid-template-columns: 1fr !important;
        gap: 20px;
        padding: 0 16px
    }

    .product-card {
        max-width: 100%;
        margin: 0 auto
    }

    .product-image-link {
        height: 240px
    }

    .product-image {
        padding: 15px
    }

    .product-info {
        padding: 12px 0 0 0
    }

    .product-name {
        font-size: 14px;
        margin-bottom: 6px
    }

    .product-description {
        font-size: 12px;
        min-height: 15px;
        margin-bottom: 8px;
        line-height: 1.4
    }

    .product-rating {
        font-size: 12px;
        margin-bottom: 8px;
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 4px
    }

    .product-price {
        font-size: 15px;
        margin-bottom: 12px
    }

    .shop-now-btn {
        padding: 12px 16px;
        font-size: 13px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center
    }

    /* Hide carousel arrows on mobile */
    .arrows,
    .arrow {
        display: none !important;
    }

    .process-grid {
        gap: 30px;
        padding: 0 16px
    }

    .process-card {
        text-align: center
    }

    .process-icon {
        height: 80px;
        width: auto;
        max-width: 100%;
        margin: 0 auto 16px
    }

    .process-title {
        font-size: 16px;
        margin-bottom: 12px;
        line-height: 1.3
    }

    .process-description {
        font-size: 13px;
        line-height: 1.6;
        max-width: 100%
    }

    .home-seo-content {
        padding: 24px 20px;
    }

    .home-seo-content p,
    .home-seo-content li {
        font-size: 15px;
    }

    .home-seo-content .home-seo-h3 {
        font-size: 18px;
        margin-top: 28px;
        margin-bottom: 12px;
    }

    .home #comparison {
        padding: 54px 0 32px;
        background: #f7f5ec !important;
        background-color: #f7f5ec !important;
    }

    .home #comparison .section-header {
        margin-bottom: 50px
    }

    .comparison-content {
        padding: 0;
        gap: 50px
    }

    .comparison-images {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        gap: 30px;
        padding: 0;
        margin-bottom: 0
    }

    .comparison-image-wrapper {
        height: 180px;
        margin: 0 auto;
        max-width: 180px
    }

    .comparison-jar-image {
        max-height: 180px
    }

    .comparison-vs-center {
        padding-bottom: 20px;
        order: 2
    }

    .comparison-image-wrapper.left-image {
        order: 1
    }

    .comparison-image-wrapper.right-image {
        order: 3
    }

    .vs-badge {
        width: 70px;
        height: 70px;
        font-size: 20px
    }

    .comparison-cards {
        grid-template-columns: 1fr;
        gap: 1px;
        margin-bottom: 0;
        border-radius: 12px;
        background: #e8e8e8;
    }

    .comparison-column.left-column {
        border-right: none;
        border-bottom: 1px solid #e8e8e8;
        border-radius: 12px 12px 0 0;
    }

    .comparison-column.right-column {
        border-radius: 0 0 12px 12px;
    }

    .comparison-column-header {
        font-size: 14px;
        padding: 12px 16px
    }

    .comparison-list {
        padding: 20px 16px
    }

    .comparison-point {
        font-size: 14px;
        padding: 10px 0;
        gap: 12px
    }

    .check-icon,
    .cross-icon {
        width: 18px;
        height: 18px;
        min-width: 18px;
        min-height: 18px;
        font-size: 11px
    }

    .comparison-illustration {
        height: 100px;
        margin-top: 50px;
        padding: 0 16px
    }

    .comparison-pour {
        height: 100px;
        max-width: 140px
    }

    .comparison-column-header {
        font-size: 14px;
        padding: 12px 16px
    }

    .comparison-point {
        font-size: 13px;
        padding: 12px 16px;
        line-height: 1.5
    }

    .comparison-list {
        padding: 16px
    }

    .testimonials-grid {
        gap: 20px;
        padding: 0 16px
    }

    .testimonial-card {
        padding: 20px;
        height: 100%
    }

    .testimonial-stars {
        font-size: 16px;
        margin-bottom: 12px
    }

    .testimonial-content {
        font-size: 13px;
        margin-bottom: 12px;
        line-height: 1.6
    }

    .testimonial-author {
        font-size: 12px
    }

    .faq-section {
        padding: 40px 0;
    }

    .faq-container {
        gap: 32px;
        padding: 0 16px
    }

    .faq-question {
        padding: 14px 16px;
        font-size: 14px;
        min-height: 48px;
        display: flex;
        align-items: center
    }

    .faq-answer-inner {
        padding: 0 16px 16px;
        font-size: 13px;
        line-height: 1.6
    }

    .farm {
        padding: 40px 0;
        min-height: 350px;
        background-size: cover;
        background-position: center center
    }

    .farm .container {
        padding: 0 16px;
        display: flex;
        justify-content: center;
        align-items: center
    }

    .farm-content {
        width: 100%;
        max-width: 100%;
        text-align: center
    }

    .farm .content {
        max-width: 100%;
        margin: 0 auto;
        padding: 0
    }

    .farm-title {
        font-size: 24px;
        margin-bottom: 16px;
        text-align: center;
        line-height: 1.3;
        padding: 0 16px
    }

    .farm-description {
        font-size: 13px;
        text-align: center;
        line-height: 1.6;
        padding: 0 16px;
        max-width: 100%
    }

    .ribbon .items {
        padding: 6px 8px;
        gap: 6px 16px
    }

    .ribbon .item {
        font-size: 11px;
        padding-left: 10px
    }

    .container {
        padding: 0 16px;
        box-sizing: border-box
    }

    .btn-primary,
    .btn-outline {
        padding: 14px 20px;
        font-size: 14px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center
    }

    .arrows {
        left: 8px;
        right: 8px
    }

    .arrow {
        width: 36px;
        height: 36px;
        font-size: 20px;
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center
    }

    .dots {
        bottom: 16px;
        gap: 6px
    }

    .dot {
        height: 8px;
        width: 8px;
        min-width: 8px;
        min-height: 8px;
        cursor: pointer;
        border: none;
        background: #d6d6d3;
        padding: 0;
        margin: 0
    }

    .dot.active {
        width: 24px
    }

    .btn-explore-all {
        font-size: 14px;
        padding: 12px 20px;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center
    }

    .comparison-illustration {
        padding: 0 16px;
        margin-top: 30px
    }

    .comparison-pour {
        max-width: 100%;
        height: auto
    }
}

@media (min-width:1440px) {
    .slide {
        height: 580px;
        background-position: left -20px top;
        background-size: 1600px auto;
        padding: 0
    }

    .hero .grid {
        height: 580px
    }

    .hero-title {
        font-size: 64px
    }

    .hero-sub {
        font-size: 20px
    }

    .jar-img {
        height: 540px
    }

    .jar-img {
        height: 560px
    }


}

@media (min-width:1920px) {
    .slide {
        height: 580px;
        background-position: left top;
        background-size: auto 100%;
        padding: 0
    }

    .hero .grid {
        height: 580px
    }

    .hero-title {
        font-size: 72px
    }

    .jar-img {
        height: 600px
    }



    .dots {
        bottom: 32px
    }
}

@media (min-width:1360px) and (max-width:1439px) {
    .slide {
        height: 580px;
        background-position: left top;
        background-size: 1480px auto;
        padding: 0
    }

    .hero .grid {
        height: 580px
    }

    .hero-title {
        font-size: 64px
    }

    .jar-img {
        height: 580px
    }



    .dots {
        bottom: 24px
    }
}

/* ===== PROCESS PAGE STYLES ===== */

.process-page .process-hero {
    margin-top: 80px;
    margin-bottom: 100px;
}

.process-page .section-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.process-page .section-subtitle {
    max-width: 600px;
    font-size: 17px;
    color: var(--muted);
}

.process-timeline {
    margin-top: 80px;
    position: relative;
}

/* Decorative Bees */
.decorative-bee {
    position: absolute;
    z-index: 5;
    animation: float 4s ease-in-out infinite;
}

.bee-1 {
    top: 100px;
    right: 10%;
    animation-delay: 0s;
}

.bee-2 {
    top: 400px;
    left: 5%;
    animation-delay: 1s;
}

.bee-3 {
    top: 800px;
    right: 8%;
    animation-delay: 2s;
}

.bee-4 {
    top: 1200px;
    left: 12%;
    animation-delay: 0.5s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(10px, -10px) rotate(5deg);
    }

    50% {
        transform: translate(-5px, -20px) rotate(-3deg);
    }

    75% {
        transform: translate(-10px, -10px) rotate(3deg);
    }
}

/* Process Steps */
.process-step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

/* Step 1 & 3: Image LEFT, Text RIGHT */
.step-left .step-content {
    order: 2;
    text-align: left;
    padding-left: 60px;
}

.step-left .step-image-wrapper {
    order: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Step 2 & 4: Text LEFT, Image RIGHT */
.step-right .step-image-wrapper {
    order: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.step-right .step-content {
    order: 1;
    text-align: left;
    padding-right: 60px;
}

.step-number {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.step-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--text);
    margin: 0 0 16px 0;
    line-height: 1.3;
}

.step-description {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.8;
    margin: 0;
    max-width: 450px;
}

.step-left .step-description {
    margin-right: auto;
}

.step-right .step-description {
    margin-left: 0;
}

/* Image Wrapper with Organic Blob Background */
.step-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 450px;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blob-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.step-image {
    position: relative;
    z-index: 2;
    max-width: 350px;
    max-height: 350px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Remove old circular background styles */
.step-image-bg {
    display: none;
}

/* Responsive styles for Process page */
@media (max-width: 991px) {
    .process-step {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        margin-bottom: 80px;
    }

    .step-left .step-content,
    .step-right .step-content {
        order: 2;
        text-align: center;
        padding: 0 20px;
    }

    .step-left .step-image-wrapper,
    .step-right .step-image-wrapper {
        order: 1;
        justify-content: center;
        margin: 0 auto;
    }

    .step-left .step-description,
    .step-right .step-description {
        margin: 0 auto;
    }

    .step-image-wrapper {
        max-width: 350px;
        height: 350px;
    }

    .step-image {
        max-width: 280px;
        max-height: 280px;
    }

    /* Adjust decorative bees for tablets */
    .decorative-bee {
        display: none;
    }
}

@media (max-width: 767px) {
    .process-page .process-hero {
        margin-top: 50px;
        margin-bottom: 70px;
    }

    .process-page .section-title {
        font-size: 30px;
    }

    .process-page .section-subtitle {
        font-size: 15px;
    }

    .process-timeline {
        margin-top: 50px;
    }

    .process-step {
        margin-bottom: 60px;
        gap: 30px;
    }

    .step-title {
        font-size: 20px;
    }

    .step-description {
        font-size: 14px;
    }

    .step-image-wrapper {
        max-width: 300px;
        height: 300px;
    }

    .step-image {
        max-width: 240px;
        max-height: 240px;
    }
}

@media (max-width: 480px) {
    .process-page .section-title {
        font-size: 26px;
    }

    .process-page .section-subtitle {
        font-size: 14px;
    }

    .step-image-wrapper {
        max-width: 250px;
        height: 250px;
    }

    .step-image {
        max-width: 200px;
        max-height: 200px;
    }

    .step-number {
        font-size: 14px;
    }

    .step-title {
        font-size: 18px;
    }

    .step-description {
        font-size: 13px;
        line-height: 1.7;
    }

    .process-step {
        margin-bottom: 50px;
    }
}

@media (min-width: 1360px) and (max-width: 1439px) {
    .slide {
        height: 465px;
        background-position: left top;
        background-size: cover;
        padding: 0;
    }
}

@media (min-width: 1440px) {
    .slide {
        height: 518px;
        background-position: left -20px top;
        background-size: cover;
        padding: 0;
    }
}

/* Homepage Product Images Border */
.home .product-image {
    border: 1px solid #f9f3f3
}

/* Homepage products: mobile width correction */
@media (max-width: 768px) {
    .home #honey.container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .home #honey .section-header,
    .home #honey .section-subtitle,
    .home #honey .grid-4 {
        padding-left: 0;
        padding-right: 0;
    }

    .home #honey .grid-4 {
        grid-template-columns: 1fr !important;
        gap: 20px;
        width: 100%;
    }

    .home #honey .product-card {
        width: 100%;
        max-width: 100%;
        margin: 0;
    }

    .home #honey .product-image-link {
        height: 228px;
        border: 1px solid #eadfce;
        background: #fff;
        padding: 8px 8px 4px;
    }

    .home #honey .product-image {
        padding: 0;
        border: 0;
        object-position: center top;
        transform: scale(1.04);
        transform-origin: top center;
    }

    .home #honey .product-info {
        padding-top: 6px;
    }
}

@media (max-width: 480px) {
    .home #honey.container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .home #honey .product-image-link {
        height: 220px;
        border: 1px solid #eadfce;
        background: #fff;
        padding: 8px 8px 4px;
    }

    .home #honey .product-image {
        padding: 0;
        border: 0;
        object-position: center top;
        transform: scale(1.06);
        transform-origin: top center;
    }

    .home #honey .product-info {
        padding-top: 4px;
    }
}

/* Homepage spacing normalization */
.home #honey .grid-4,
.home #process .process-grid,
.home #testimonials .testimonials-grid {
    margin-top: 0;
}

.home #honey .text-center.mt-6 .btn-explore-all {
    margin-top: 0;
}

@media (max-width: 768px) {
    .home .section.container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .home .section .section-header,
    .home .section .section-subtitle,
    .home .section .grid-4,
    .home .section .grid-3,
    .home .section .process-grid,
    .home .section .testimonials-grid {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}

@media (max-width: 480px) {
    .home .section.container {
        padding-left: 12px;
        padding-right: 12px;
    }
}

/* FAQ mobile cleanup: remove decorative bg and reduce vertical gap */
@media (max-width: 768px) {
    .home .faq-section {
        background: none !important;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        padding-top: 16px;
        padding-bottom: 28px;
    }

    .home .faq-section.section {
        margin-top: 24px;
    }

    .home .faq-container {
        margin-top: 0;
        gap: 20px;
        padding: 0;
    }

    .home .faq-content .section-header {
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .home .faq-section.section {
        margin-top: 16px;
    }

    .home .faq-section {
        padding-top: 12px;
        padding-bottom: 24px;
    }
}

/* Home process icons: increase mobile visual size */
@media (max-width: 768px) {
    .home #process .process-icon {
        height: 185px;
        width: auto;
        max-width: 100%;
        margin: 0 auto 16px;
    }
}

@media (max-width: 480px) {
    .home #process .process-icon {
        height: 165px;
        width: auto;
        max-width: 100%;
        margin: 0 auto 14px;
    }
}
