:root {
    --bg: #fff;
    --surface: #ffffff;
    --surface-soft: #fff;
    --surface-dark: #1f3320;
    --border: #d9e2d1;
    --text: #253225;
    --text-soft: #5f6d5f;
    --heading: #172217;
    --primary: #39452e;
    --primary-dark: #4d771d;
    --accent: #93bf4b;
    --white: #ffffff;
    --shadow: 0 18px 44px #fff;
    --radius-sm: 14px;
    --radius-md: 22px;
    --radius-lg: 34px;
    --container: 1240px;
    --header-height: 112px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
}

img {
    max-width: 100%;
    display: block;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

h1,
h2,
h3,
h4,
p,
ul {
    margin: 0;
}

ul {
    padding-left: 1.2rem;
}

.unstyled-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.container {
    width: min(var(--container), calc(100% - 32px));
    margin: 0 auto;
}

.section {
    padding: 88px 0;
}

.section-top-offset {
    padding-top: calc(var(--header-height) + 48px);
}

.section-soft {
    background: #fff;
}

.section-dark {
    background: linear-gradient(135deg, #294429, #1c301d);
    color: var(--white);
}

.section-heading {
    display: grid;
    gap: 14px;
    margin-bottom: 34px;
}

.section-heading.with-link {
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 20px;
}

.section-heading h1,
.section-heading h2,
.hero-copy h1,
.story-copy h2,
.product-info h1 {
    color: var(--heading);
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.section-heading h1,
.hero-copy h1,
.product-info h1 {
    font-size: clamp(2.4rem, 4vw, 4.8rem);
}

.section-heading h2,
.story-copy h2,
.section-dark h2 {
    font-size: clamp(2rem, 3vw, 3.2rem);
}

.section-intro {
    color: var(--text-soft);
    max-width: 760px;
}

.eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--primary-dark);
    font-weight: 700;
}

.eyebrow--light {
    color: #d8f1bc;
}

.card-surface {
    background: var(--surface);
    box-shadow: var(--shadow);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(248, 247, 242, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(37, 50, 37, 0.08);
}

.header-inner {
    min-height: var(--header-height);
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
}

.brand-logo {
    width: 70px;
    max-width: 100%;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
}

.site-nav a {
    font-size: 0.98rem;
    color: var(--text-soft);
    padding-bottom: 6px;
    border-bottom: 2px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
    color: var(--heading);
    border-color: var(--primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-section {
    padding: 64px 0 88px;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 560px);
    gap: 34px;
    align-items: center;
}

.hero-copy {
    display: grid;
    gap: 22px;
}

.hero-copy p {
    max-width: 700px;
    color: var(--text-soft);
    font-size: 1.06rem;
}

.hero-media {
    overflow: hidden;
    padding: 18px;
}

.hero_inner{
	height:1000px;
}

.hero-media img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-highlights li {
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.8);
    font-size: 0.92rem;
}

.button-group,
.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 22px;
    border: 1px solid var(--primary);
    background: var(--primary);
    color: var(--white);
    font-weight: 700;
    line-height: 1;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.button:hover {
    transform: translateY(-1px);
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

.button--secondary {
    background: transparent;
    color: var(--heading);
    border-color: var(--border);
}

.button--secondary:hover {
    background: var(--surface-soft);
    border-color: var(--accent);
}

.button--small {
    padding: 12px 18px;
    font-size: 0.92rem;
}

.button--light {
    background: var(--white);
    border-color: var(--white);
    color: var(--surface-dark);
}

.button--light:hover {
    background: #eff6e7;
    border-color: #eff6e7;
}

.button--ghost-light {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.button--ghost-light:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.45);
}

.section-link {
    color: var(--primary-dark);
    font-weight: 700;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.feature-card {
    padding: 28px;
    display: grid;
    gap: 10px;
}

.feature-card h3 {
    color: var(--heading);
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--text-soft);
}

.story-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
    gap: 32px;
    align-items: start;
}

.story-copy {
    display: grid;
    gap: 18px;
}

.story-copy p {
    color: var(--text-soft);
}

.story-media-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 18px;
}

.story-media-grid img {
    width: 100%;
    object-fit: cover;
    overflow: hidden;
    padding: 10px;
}

.story-media-grid img:first-child {
    min-height: 100%;
}

.cta-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
}

.cta-panel p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.product-grid--listing {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-grid--related {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-card {
    overflow: hidden;
    display: grid;
}

.product-card__media {
    display: block;
    overflow: hidden;
    background: #eef3ea;
}

.product-card__media img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.fixed-square img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.product-card__content {
    padding: 22px;
    display: grid;
    gap: 14px;
}

.product-card__topline {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
}

.product-card__category {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.76rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary-dark);
    font-weight: 700;
}

.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 10px;
    border-radius: 999px;
    background: #edf6df;
    color: var(--primary-dark);
    font-size: 0.76rem;
    font-weight: 700;
}

.product-card h2,
.product-card h3 {
    color: var(--heading);
    font-size: 1.25rem;
    line-height: 1.2;
}

.product-card p {
    color: var(--text-soft);
    font-size: 0.98rem;
}

.product-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--text-soft);
}

.product-card__meta strong,
.product-price {
    color: var(--heading);
    font-size: 1.28rem;
}

.button-row--split > * {
    flex: 1 1 0;
}

.filter-bar {
    padding: 20px 22px;
    display: grid;
    gap: 14px;
    margin-bottom: 28px;
}

.filter-label {
    font-weight: 700;
    color: var(--heading);
}

.pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--text-soft);
}

.pill.is-active,
.pill:hover {
    border-color: var(--primary);
    background: #edf6df;
    color: var(--primary-dark);
}

.empty-state {
    padding: 40px;
    display: grid;
    gap: 18px;
    text-align: center;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
    color: var(--text-soft);
    font-size: 0.95rem;
}

.product-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 500px);
    gap: 28px;
    align-items: start;
}

.product-gallery {
    display: grid;
    gap: 16px;
}

main {
}
.product-gallery__main {
    padding: 20px;
}

.product-gallery__main img {
    width: 100%;
    border-radius: calc(var(--radius-md) - 8px);
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.product-gallery__thumbs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.thumb-card {
    padding: 8px;
}

.thumb-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: calc(var(--radius-sm) - 4px);
}

.product-info {
    padding: 30px;
    display: grid;
    gap: 18px;
    position: sticky;
    top: calc(var(--header-height) + 20px);
}

.product-tagline {
    font-size: 1.08rem;
    color: var(--primary-dark);
}

.product-meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.price-block {
    display: grid;
    gap: 4px;
}

.product-size {
    color: var(--text-soft);
    font-size: 0.95rem;
}

.purchase-box {
    display: grid;
    gap: 18px;
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--surface-soft);
}

.quantity-selector {
    display: grid;
    gap: 10px;
}

.quantity-selector label {
    font-weight: 700;
    color: var(--heading);
}

.qty-input {
    display: inline-grid;
    grid-template-columns: 44px 90px 44px;
    width: fit-content;
    border: 1px solid var(--border);
    border-radius: 999px;
    overflow: hidden;
    background: var(--white);
}

.qty-input button,
.qty-input input {
    border: 0;
    background: transparent;
    text-align: center;
    min-height: 46px;
}

.qty-input input {
    appearance: textfield;
    width: 100%;
}

.qty-input input::-webkit-outer-spin-button,
.qty-input input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.feature-badge-list {
    display: grid;
    gap: 10px;
}

.feature-badge {
    padding: 12px 16px;
    border-radius: 999px;
    background: #edf6df;
    color: var(--primary-dark);
    font-size: 0.92rem;
    font-weight: 700;
}

.section-inner,
.section-inner-grid {
    margin-top: 40px;
}

.section-inner-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.info-panel {
    padding: 28px;
    display: grid;
    gap: 16px;
}

.info-panel--wide {
    grid-column: 1 / -1;
}

.info-panel h2 {
    color: var(--heading);
    font-size: 1.5rem;
}

.check-list,
.ingredient-list {
    display: grid;
    gap: 10px;
    padding-left: 1.2rem;
}

.check-list li::marker,
.ingredient-list li::marker {
    color: var(--primary-dark);
}

.stock-message {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
}

.stock-message::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: currentColor;
}

.stock-message.green {
    color: #27884f;
}

.stock-message.orange {
    color: #c77d1a;
}

.stock-message.red {
    color: #bf3a3a;
}

.site-footer {
    padding: 42px 0 56px;
    border-top: 1px solid rgba(37, 50, 37, 0.08);
    background: #eceee7;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 28px;
}

.footer-logo {
    width: 150px;
    margin-bottom: 14px;
}

.footer-grid p,
.footer-links a {
    color: var(--text-soft);
}

.footer-grid h3 {
    color: var(--heading);
    font-size: 1.06rem;
    margin-bottom: 12px;
}

.footer-links {
    display: grid;
    gap: 10px;
}

.footer-links a:hover,
.section-link:hover {
    color: var(--primary-dark);
}

.cart-summary,
.cart-drawer,
.cart-drawer__footer,
.cart-item,
.cart-progress,
.cart-totals {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--surface);
}

.cart-summary,
.cart-drawer,
.cart-drawer__footer,
.cart-item,
.cart-progress,
.cart-totals {
    padding: 18px;
}

.cart-summary,
.cart-item,
.cart-totals {
    display: grid;
    gap: 12px;
}

.cart-summary__subtotal,
.cart-totals__row,
.cart-item__row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
}

.cart-progress__bar {
    width: 100%;
    height: 8px;
    border-radius: 999px;
    background: #e9eee2;
    overflow: hidden;
}

.cart-progress__bar span {
    display: block;
    height: 100%;
    width: 35%;
    background: linear-gradient(90deg, var(--accent), var(--primary));
}

@media (max-width: 1180px) {
    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-grid--listing,
    .product-grid--related,
    .feature-grid,
    .footer-grid,
    .cta-panel,
    .story-grid,
    .hero-grid,
    .product-layout,
    .section-inner-grid {
        grid-template-columns: 1fr;
    }

    .product-info {
        position: static;
    }
}

@media (max-width: 840px) {
    :root {
        --header-height: 96px;
    }

    .section {
        padding: 72px 0;
    }

    .section-heading.with-link {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .product-gallery__thumbs {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .container {
        width: min(var(--container), calc(100% - 22px));
    }

    .brand-logo,
    .footer-logo {
        width: 60px;
    }

    .hero-section {
        padding-top: 34px;
    }

    .hero-highlights,
    .button-group,
    .button-row,
    .pill-list {
        gap: 10px;
    }

    .button,
    .button--secondary,
    .button--light,
    .button--ghost-light {
        width: 100%;
    }

    .button-row--stack-mobile > * {
        width: 100%;
    }

    .product-grid,
    .product-grid--listing,
    .product-grid--related,
    .product-gallery__thumbs {
        grid-template-columns: 1fr;
    }

    .fixed-square img {
        height: auto;
        aspect-ratio: 1 / 1;
    }

    .site-nav {
        justify-content: center;
    }

    .header-actions {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .product-info,
    .feature-card,
    .product-card__content,
    .info-panel,
    .filter-bar,
    .empty-state {
        padding: 20px;
    }
}

.header-inner {
    min-height: var(--header-height);
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
    position: relative;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-self: end;
}

.icon-circle {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    background: var(--surface);
    border-radius: 50%;
    position: relative;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
    box-shadow: 0 8px 20px rgba(25, 45, 24, 0.06);
}

.icon-circle:hover {
    transform: translateY(-1px);
    border-color: var(--primary);
    background: var(--surface-soft);
}

.icon-circle svg {
    width: 22px;
    height: 22px;
    stroke: var(--heading);
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.cart-circle {
    overflow: visible;
}

.cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1;
    border: 2px solid var(--bg);
}

.nav-toggle {
    display: none;
    width: 52px;
    height: 52px;
    border: 1px solid var(--border);
    background: var(--surface);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    padding: 0;
    gap: 4px;
    flex-direction: column;
    box-shadow: 0 8px 20px rgba(25, 45, 24, 0.06);
}

.nav-toggle span {
    width: 20px;
    height: 2px;
    background: var(--heading);
    border-radius: 999px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle.is-active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 840px) {
    :root {
        --header-height: 88px;
    }

    .brand {
        z-index: 61;
    }

    .nav-toggle {
        display: inline-flex;
        justify-self: center;
        z-index: 61;
    }

    .header-actions {
        width: auto;
        justify-content: flex-end;
        flex-wrap: nowrap;
        z-index: 61;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 14px;
        background: rgba(248, 247, 242, 0.98);
        backdrop-filter: blur(12px);
        border: 1px solid var(--border);
        border-radius: var(--radius-md);
        box-shadow: var(--shadow);
        z-index: 60;
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav a {
        padding: 14px 16px;
        border-bottom: 1px solid rgba(37, 50, 37, 0.08);
        border-left: 0;
        border-right: 0;
        border-top: 0;
    }

    .site-nav a:last-child {
        border-bottom: 0;
    }
}

@media (max-width: 640px) {
    .header-inner {
        grid-template-columns: auto 1fr auto;
    }

    .brand-logo {
        width: 50px;
    }

    .icon-circle,
    .nav-toggle {
        width: 46px;
        height: 46px;
    }

    .header-actions {
        gap: 10px;
    }
}

.hayat-hero {
    position: relative;
    min-height: clamp(860px, 78vh, 860px);
    display: flex;
    align-items: center;
    background-image:url('/assets/img/hayat-organic.png');
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hayat-hero__inner {
    width: 100%;
    padding-top: 500px;
    padding-bottom: 96px;
}

.hayat-hero__content {
    max-width: 620px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    color: #fff;
    text-align: left;
		padding-left: 50px;
		padding-right:50px;
}

.hayat-hero__badge {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 10px 18px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #fff;
}

.hayat-hero__content h1 {
    margin: 0;
    max-width: 14ch;
    font-size: clamp(2.4rem, 1.5vw, 4.8rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
    color: #d8f1bc;
}

.hayat-hero__content p {
    margin: 0;
    max-width: 25ch;
    font-size: clamp(1rem, 1.35vw, 1.14rem);
    line-height: 1.75;
    color: rgb(216 241 188);
    padding: 12px;
}

.hayat-hero__actions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 8px;
}

.hayat-hero .button {
    min-height: 52px;
    padding: 14px 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
}

@media (max-width: 900px) {
    .hayat-hero {
        min-height: 680px;
        background-image:url('/assets/img/hayat-organic.png');
        background-position: center center;
    }

    .hayat-hero__inner {
        padding-top: 500px;
        padding-bottom: 72px;
    }

    .hayat-hero__content {
        max-width: 100%;
        gap: 16px;
    }

    .hayat-hero__content h1 {
        max-width: 11ch;
    }

    .hayat-hero__content p {
        max-width: 42ch;
    }
}

@media (max-width: 640px) {
    .hayat-hero {
        min-height: 620px;
    }

    .hayat-hero__inner {
        padding-top: 500px;
        padding-bottom: 56px;
    }

    .hayat-hero__badge {
        min-height: 36px;
        padding: 8px 14px;
        font-size: 0.84rem;
    }

    .hayat-hero__content h1 {
        font-size: clamp(2rem, 10vw, 3rem);
        line-height: 1.02;
    }

    .hayat-hero__content p {
        font-size: 0.98rem;
        line-height: 1.65;
    }

    .hayat-hero .button {
        width: auto;
    }
}

        .hayat-home {
            --hayat-ink: #162018;
            --hayat-soft: #566257;
            --hayat-line: #d8ddd4;
            --hayat-sand: #eee7dd;
            --hayat-cream: #f7f4ee;
            --hayat-green: #1f3026;
            --hayat-green-2: #2d4033;
            --hayat-shadow: 0 20px 48px rgba(19, 31, 23, 0.08);
            background: #fff;
            color: var(--hayat-ink);
        }

        .hayat-home,
        .hayat-home * {
            box-sizing: border-box;
        }

        .hayat-home img,
        .hayat-home .hayat-card,
        .hayat-home .hayat-panel,
        .hayat-home .hayat-product,
        .hayat-home .hayat-hero__content,
        .hayat-home .hayat-band,
        .hayat-home .hayat-split,
        .hayat-home .hayat-story__grid {
            border-radius: 0 !important;
        }
				
				hayat-grid--6 hayat-card{
					background-color:#fff;
				}
        .hayat-home .hayat-button,
        .hayat-home .hayat-linkchip,
        .hayat-home .hayat-hero__kicker span {
            border-radius: 999px !important;
        }

        .hayat-home .section {
            padding: clamp(56px, 7vw, 100px) 0;
        }

        .hayat-home .eyebrow {
            display: inline-block;
            margin-bottom: 14px;
            font-size: 0.76rem;
            font-weight: 700;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: #70806f;
						padding-left: 25px;
    				padding-right: 25px;
        }

        .hayat-home h1,
        .hayat-home h2,
        .hayat-home h3 {
            margin: 0;
            line-height: 1.03;
            letter-spacing: -0.035em;
        }

        .hayat-home p {
            margin: 0;
            line-height: 1.7;
            color: var(--hayat-soft);
						padding-left: 25px;
    				padding-right: 25px;
        }

        .hayat-home a {
            text-decoration: none;
        }

        .hayat-home .section-heading {
            max-width: 800px;
            margin-bottom: 28px;
        }

        .hayat-home .section-heading h2 {
            font-size: clamp(2rem, 3vw, 3.3rem);
            margin-bottom: 18px;
						padding-left: 25px;
    				padding-right: 25px;
        }

        .hayat-home .hayat-hero {
            position: relative;
position: relative;
    display: flex;
    align-items: flex-end;
    min-height: clamp(620px, 88vh, 920px);
    background: linear-gradient(90deg, rgb(233 242 236 / 0%) 0%, rgb(14 20 16 / 3%) 46%, rgb(14 20 16 / 0%) 100%), linear-gradient(180deg, rgb(240 242 241 / 0%) 0%, rgb(14 20 16 / 75%) 100%), url(/assets/img/hayat-organic.png) center center / cover no-repeat;
    background-color: #2f3f34;
    color: #fff;        }

        .hayat-home .hayat-hero::after {
            content: '';
            position: absolute;
            inset: auto 0 0 0;
            height: clamp(120px, 18vw, 220px);
            background: linear-gradient(180deg, rgba(247, 244, 238, 0) 0%, rgba(247, 244, 238, 1) 100%);
            pointer-events: none;
        }

        .hayat-home .hayat-hero .container {
            position: relative;
            z-index: 1;
            width: 100%;
        }

        .hayat-home .hayat-hero__content {
            max-width: 760px;
            padding: clamp(110px, 11vw, 150px) 25px clamp(74px, 9vw, 100px);
        }

        .hayat-home .hayat-hero__kicker {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 18px;
        }

        .hayat-home .hayat-hero__kicker span {
            display: inline-flex;
            align-items: center;
            min-height: 38px;
            padding: 0 16px;
            border: 1px solid rgba(255, 255, 255, 0.28);
            background: rgb(75 107 152);
            color: #fff;
            font-size: 0.82rem;
            letter-spacing: 0.04em;
            text-transform: uppercase;
        }

        .hayat-home .hayat-hero h1 {
            font-size: clamp(2.8rem, 3.4vw, 6.2rem);
            max-width: 13ch;
            margin-bottom: 22px;
        }

        .hayat-home .hayat-hero p {
            max-width: 62ch;
            font-size: clamp(1.03rem, 1.6vw, 1.22rem);
            color: rgba(255, 255, 255, 0.88);
        }

        .hayat-home .hayat-hero__actions {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            margin-top: 28px;
        }

        .hayat-home .hayat-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 52px;
            padding: 0 22px;
            border: 1px solid var(--hayat-green);
            background: var(--hayat-green);
            color: #fff;
            font-weight: 700;
            letter-spacing: 0.01em;
            transition: 0.2s ease;
        }

        .hayat-home .hayat-button--ghost {
            border-color: rgba(255, 255, 255, 0.34);
            background: rgb(75 107 152);;
            color: #fff;
        }

        .hayat-home .hayat-button:hover {
            transform: translateY(-1px);
            opacity: 0.96;
        }

        .hayat-home .hayat-linkrow {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 26px;
        }

        .hayat-home .hayat-linkchip {
            display: inline-flex;
            align-items: center;
            min-height: 40px;
            padding: 0 15px;
            border: 1px solid var(--hayat-line);
            color: var(--hayat-ink);
            background: #fff;
            font-size: 0.95rem;
        }

        .hayat-home .hayat-intro {
            margin-top: -28px;
            position: relative;
            z-index: 2;
        }

        .hayat-home .hayat-band {
            display: grid;
            grid-template-columns: 1.15fr 0.85fr;
            border: 1px solid var(--hayat-line);
            background: var(--hayat-cream);
            box-shadow: var(--hayat-shadow);
        }

        .hayat-home .hayat-band__main,
        .hayat-home .hayat-band__side {
            padding: clamp(28px, 4vw, 42px);
        }

        .hayat-home .hayat-band__main {
            border-right: 1px solid var(--hayat-line);
        }

        .hayat-home .hayat-band__main h2 {
            font-size: clamp(1.9rem, 3.3vw, 3rem);
            margin-bottom: 16px;
        }

        .hayat-home .hayat-band__side {
            display: grid;
            gap: 18px;
            align-content: start;
        }

        .hayat-home .hayat-band__metric strong {
            display: block;
            margin-bottom: 6px;
            font-size: 0.85rem;
            font-weight: 800;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            color: #6c7a70;
        }

        .hayat-home .hayat-grid {
            display: grid;
            gap: 22px;
        }

        .hayat-home .hayat-grid--3 {
            grid-template-columns: repeat(3, minmax(0, 1fr));
        }

        .hayat-home .hayat-grid--6 {
            grid-template-columns: repeat(3, minmax(0, 1fr));
        }

        .hayat-home .hayat-card,
        .hayat-home .hayat-product {
            border: 1px solid var(--hayat-line);
            background: #a3be77;
            min-height: 100%;
        }
				
				.grid--6{
					background: #a3be77;
				}
				#shop, #rituals  {
					background: #a3be77;
				}
				
				.hayat-grid--6 .hayat-card{
					background-color:var(--hayat-cream);	
				}
				
				.hayat-grid--6 .grid6{
					background-color:#a3be77;	
				}
        .hayat-home .hayat-card {
            padding: 26px;
            transition: transform 0.2s ease, border-color 0.2s ease;
        }

        .hayat-home .hayat-card:hover,
        .hayat-home .hayat-product:hover {
            transform: translateY(-2px);
            border-color: #c5cdc2;
        }

        .hayat-home .hayat-card h3,
        .hayat-home .hayat-product h3 {
            font-size: 1.5rem;
            margin-bottom: 12px;
        }

        .hayat-home .hayat-card p,
        .hayat-home .hayat-product p {
            margin-bottom: 18px;
        }

        .hayat-home .hayat-card__link,
        .hayat-home .hayat-inline-link {
            color: var(--hayat-green);
            font-weight: 700;
        }

        .hayat-home .hayat-products {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 22px;
        }

        .hayat-home .hayat-product__media {
            aspect-ratio: 1 / 1;
            overflow: hidden;
            border-bottom: 1px solid var(--hayat-line);
            background: var(--hayat-sand);
        }

        .hayat-home .hayat-product__media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .hayat-home .hayat-product__body {
            padding: 22px;
        }

        .hayat-home .hayat-product__meta {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 14px;
            margin-bottom: 10px;
            font-size: 0.82rem;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: #70806f;
        }

        .hayat-home .hayat-product__price {
            margin-bottom: 18px;
            color: var(--hayat-ink);
            font-weight: 700;
        }

        .hayat-home .hayat-split {
            display: grid;
            grid-template-columns: 1fr 1fr;
            border: 1px solid var(--hayat-line);
            background: #fff;
        }

        .hayat-home .hayat-split__copy,
        .hayat-home .hayat-split__list {
            padding: clamp(28px, 4vw, 44px);
        }

        .hayat-home .hayat-split__copy {
            border-right: 1px solid var(--hayat-line);
            background: var(--hayat-cream);
        }

        .hayat-home .hayat-split__copy h2 {
            font-size: clamp(2rem, 4vw, 3.2rem);
            margin-bottom: 18px;
        }

        .hayat-home .hayat-story__grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            border-top: 1px solid var(--hayat-line);
            border-left: 1px solid var(--hayat-line);
            margin-top: 28px;
        }

        .hayat-home .hayat-story__item {
            padding: 24px;
            border-right: 1px solid var(--hayat-line);
            border-bottom: 1px solid var(--hayat-line);
            background: #fff;
        }

        .hayat-home .hayat-story__item strong {
            display: inline-block;
            margin-bottom: 12px;
            font-size: 0.78rem;
            font-weight: 800;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            color: #70806f;
        }

        .hayat-home .hayat-story__item h3 {
            margin-bottom: 12px;
            font-size: 1.35rem;
        }

        .hayat-home .hayat-origin {
            background: var(--hayat-cream);
            border-top: 1px solid var(--hayat-line);
            border-bottom: 1px solid var(--hayat-line);
        }

        .hayat-home .hayat-cta {
            border: 1px solid var(--hayat-line);
            background: linear-gradient(180deg, #f6f3ed 0%, #ede6dc 100%);
            padding: clamp(30px, 4vw, 48px);
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 22px;
            align-items: end;
        }

        .hayat-home .hayat-cta h2 {
            font-size: clamp(2rem, 4vw, 3.1rem);
            margin-bottom: 16px;
        }

        .hayat-home .hayat-cta__links {
            display: grid;
            gap: 12px;
            justify-items: start;
        }

        @media (max-width: 1100px) {
            .hayat-home .hayat-grid--3,
            .hayat-home .hayat-grid--6,
            .hayat-home .hayat-products,
            .hayat-home .hayat-story__grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (max-width: 860px) {
            .hayat-home .hayat-band,
            .hayat-home .hayat-split,
            .hayat-home .hayat-cta {
                grid-template-columns: 1fr;
            }

            .hayat-home .hayat-band__main,
            .hayat-home .hayat-split__copy {
                border-right: 0;
                border-bottom: 1px solid var(--hayat-line);
            }

            .hayat-home .hayat-hero {
                min-height: 700px;
                background-position: center center;
            }

            .hayat-home .hayat-hero__content {
                max-width: 100%;
                padding-top: 96px;
								padding-left: 25px;
        				padding-right: 25px;
            }
        }

        @media (max-width: 640px) {
            .hayat-home .section {
                padding: 46px 0;
            }

            .hayat-home .hayat-grid--3,
            .hayat-home .hayat-grid--6,
            .hayat-home .hayat-products,
            .hayat-home .hayat-story__grid {
                grid-template-columns: 1fr;
            }

            .hayat-home .hayat-hero {
                min-height: 640px;
        background: linear-gradient(180deg, rgb(14 20 16 / 0%) 0%, rgb(14 20 16 / 49%) 42%, rgb(14 20 16 / 1%) 100%), url(/assets/img/hayat-organic.png) center center / cover no-repeat;
            }

            .hayat-home .hayat-hero h1 {
                max-width: 10.5ch;
            }

            .hayat-home .hayat-band__main,
            .hayat-home .hayat-band__side,
            .hayat-home .hayat-card,
            .hayat-home .hayat-product__body,
            .hayat-home .hayat-split__copy,
            .hayat-home .hayat-split__list,
            .hayat-home .hayat-story__item,
            .hayat-home .hayat-cta {
                padding: 22px;
            }
        }
 