:root {
    --lf-green: #79b64a;
    --lf-green-dark: #4f8429;
    --lf-cream: #fff7e8;
    --lf-dark: #17120d;
    --lf-muted: #756b61;
    --lf-white: #ffffff;
    --lf-radius: 24px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--lf-dark);
    background: var(--lf-cream);
}

a {
    text-decoration: none;
}

.lf-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 247, 232, .94);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(0,0,0,.06);
}

.lf-navbar {
    padding: 14px 0;
}

.lf-nav-container {
    width: min(1180px, calc(100% - 28px));
    margin: auto;
    display: flex;
    align-items: center;
    gap: 22px;
}

.lf-logo {
    display: flex;
    align-items: center;
    color: var(--lf-dark);
    font-weight: 800;
    font-size: 22px;
    white-space: nowrap;
}

.lf-logo img {
    max-height: 154px;
}

.lf-menu {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-left: auto;
}

.lf-menu a {
    color: var(--lf-dark);
    font-weight: 600;
}

.lf-menu a:hover {
    color: var(--lf-green-dark);
}

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

.lf-lang {
    display: flex;
    background: #fff;
    border-radius: 999px;
    padding: 4px;
}

.lf-lang a {
    padding: 6px 10px;
    color: var(--lf-dark);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
}

.lf-lang a.active {
    background: var(--lf-green);
    color: #fff;
}

.lf-login-btn,
.lf-cart-btn,
.lf-menu-toggle {
    border: 0;
    border-radius: 999px;
    background: #fff;
    color: var(--lf-dark);
    padding: 10px 14px;
    font-weight: 700;
}

.lf-cart-btn {
    position: relative;
}

.lf-cart-btn span {
    background: var(--lf-green);
    color: #fff;
    border-radius: 999px;
    padding: 2px 7px;
    font-size: 12px;
}

.lf-menu-toggle {
    display: none;
    font-size: 24px;
}

.lf-hero {
    position: relative;
    min-height: 620px;
    background: var(--lf-green);
    overflow: hidden;
}

.lf-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    opacity: 1;
    transform: scale(1.01);
    filter: none;
    transition: background-image .8s ease, opacity .8s ease;
}

.lf-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(121, 182, 74, .45) 0%,
            rgba(121, 182, 74, .24) 45%,
            rgba(121, 182, 74, .10) 100%
        );
    pointer-events: none;
}

.lf-hero .container {
    position: relative;
    z-index: 2;
}

.lf-hero-inner {
    min-height: 620px;
    display: grid;
    grid-template-columns: 1fr 520px;
    align-items: center;
    gap: 40px;
}

.lf-eyebrow {
    display: inline-block;
    background: rgba(255,255,255,.28);
    padding: 8px 16px;
    border-radius: 999px;
    font-weight: 800;
    margin-bottom: 18px;
}

.lf-hero h1 {
    font-size: clamp(38px, 6vw, 72px);
    line-height: 1;
    font-weight: 900;
    margin-bottom: 20px;
}

.lf-hero p {
    font-size: 20px;
    max-width: 580px;
}

.lf-hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.lf-primary-btn,
.lf-secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 13px 24px;
    font-weight: 800;
    border: 0;
}

.lf-primary-btn {
    background: var(--lf-dark);
    color: #fff;
}

.lf-secondary-btn {
    background: rgba(255,255,255,.85);
    color: var(--lf-dark);
}

.lf-orbit {
    position: relative;
    width: 420px;
    height: 420px;
    margin: auto;
    animation: orbitSpin 18s linear infinite;
}

.lf-orbit-item {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 8px solid rgba(255,255,255,.35);
    background: #fff;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,.18);
    transition: .4s;
}

.lf-orbit-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lf-orbit-item.active {
    transform: scale(1.12);
    border-color: #fff;
}

.lf-orbit-item:nth-child(1) {
    left: 135px;
    top: 0;
}

.lf-orbit-item:nth-child(2) {
    right: 0;
    top: 135px;
}

.lf-orbit-item:nth-child(3) {
    left: 135px;
    bottom: 0;
}

.lf-orbit-item:nth-child(4) {
    left: 0;
    top: 135px;
}

@keyframes orbitSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.lf-orbit-item img {
    animation: orbitReverse 18s linear infinite;
}

@keyframes orbitReverse {
    from { transform: rotate(0deg) scale(1.1); }
    to { transform: rotate(-360deg) scale(1.1); }
}

.lf-products-section {
    padding: 80px 0;
}

.lf-section-head {
    text-align: center;
    margin-bottom: 36px;
}

.lf-section-head span {
    color: var(--lf-green-dark);
    font-weight: 900;
}

.lf-section-head h2 {
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 900;
}

.lf-product-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 16px 38px rgba(0,0,0,.08);
    height: 100%;
}

.lf-product-img {
    height: 220px;
    background: #f5f5f5;
}

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

.lf-product-body {
    padding: 18px;
}

.lf-product-body h3 {
    font-size: 18px;
    font-weight: 900;
}

.lf-price {
    color: var(--lf-green-dark);
    font-weight: 900;
    font-size: 20px;
    margin: 8px 0 14px;
}

.lf-add-cart {
    width: 100%;
    border: 0;
    border-radius: 999px;
    padding: 11px;
    background: var(--lf-green);
    color: #fff;
    font-weight: 800;
}

.lf-footer {
    background: var(--lf-dark);
    color: #fff;
    padding: 50px 0 20px;
}

.lf-footer p {
    color: rgba(255,255,255,.7);
}

.lf-socials {
    display: flex;
    gap: 10px;
}

.lf-socials a {
    width: 40px;
    height: 40px;
    background: var(--lf-green);
    color: #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
}

.lf-copy {
    color: rgba(255,255,255,.65);
    text-align: center;
}

.lf-modal {
    border-radius: 22px;
    border: 0;
}

@media(max-width: 991px) {
    .lf-menu-toggle {
        display: inline-flex;
    }

    .lf-menu {
        display: none;
        position: absolute;
        left: 14px;
        right: 14px;
        top: 82px;
        background: #fff;
        border-radius: 22px;
        padding: 18px;
        flex-direction: column;
        align-items: flex-start;
        box-shadow: 0 20px 50px rgba(0,0,0,.15);
    }

    .lf-menu.show {
        display: flex;
    }

    .lf-actions {
        margin-left: auto;
    }

    .lf-login-btn {
        display: none;
    }

    .lf-hero-inner {
        grid-template-columns: 1fr;
        padding: 50px 0;
        text-align: center;
    }

    .lf-hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .lf-hero-buttons {
        justify-content: center;
    }

    .lf-orbit {
        width: 310px;
        height: 310px;
    }

    .lf-orbit-item {
        width: 112px;
        height: 112px;
    }

    .lf-orbit-item:nth-child(1) {
        left: 99px;
        top: 0;
    }

    .lf-orbit-item:nth-child(2) {
        right: 0;
        top: 99px;
    }

    .lf-orbit-item:nth-child(3) {
        left: 99px;
        bottom: 0;
    }

    .lf-orbit-item:nth-child(4) {
        left: 0;
        top: 99px;
    }
}

@media(max-width: 575px) {
    .lf-nav-container {
        width: min(100% - 20px, 1180px);
        gap: 8px;
    }

    .lf-logo span {
        font-size: 18px;
    }

    .lf-lang {
        display: none;
    }

    .lf-hero {
        min-height: auto;
    }

    .lf-hero-inner {
        min-height: auto;
    }

    .lf-orbit {
        width: 260px;
        height: 260px;
    }

    .lf-orbit-item {
        width: 96px;
        height: 96px;
    }

    .lf-orbit-item:nth-child(1) {
        left: 82px;
    }

    .lf-orbit-item:nth-child(2) {
        top: 82px;
    }

    .lf-orbit-item:nth-child(3) {
        left: 82px;
    }

    .lf-orbit-item:nth-child(4) {
        top: 82px;
    }

    .lf-products-section {
        padding: 55px 0;
    }

    .lf-product-img {
        height: 150px;
    }

    .lf-product-body {
        padding: 13px;
    }

    .lf-product-body h3 {
        font-size: 15px;
    }
}

.lf-page-hero {
    background: linear-gradient(135deg, var(--lf-green), var(--lf-green-dark));
    padding: 80px 0;
    color: #fff;
    text-align: center;
}

.lf-page-hero span {
    display: inline-block;
    background: rgba(255,255,255,.22);
    padding: 7px 16px;
    border-radius: 999px;
    font-weight: 800;
    margin-bottom: 14px;
}

.lf-page-hero h1 {
    font-size: clamp(34px, 5vw, 64px);
    font-weight: 900;
    margin-bottom: 12px;
}

.lf-page-hero p {
    max-width: 680px;
    margin: auto;
    font-size: 18px;
    opacity: .9;
}

.lf-products-page {
    padding: 70px 0;
}

.lf-category-filter {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 35px;
}

.lf-category-filter a {
    background: #fff;
    color: var(--lf-dark);
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(0,0,0,.05);
}

.lf-category-filter a.active,
.lf-category-filter a:hover {
    background: var(--lf-green);
    color: #fff;
}

.lf-product-card a {
    color: inherit;
}

.lf-product-category {
    color: var(--lf-green-dark);
    font-weight: 800;
}

.lf-product-desc {
    min-height: 42px;
    color: var(--lf-muted);
    font-size: 14px;
    margin: 8px 0 12px;
}

.lf-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.lf-price-row strong {
    font-size: 20px;
    color: var(--lf-green-dark);
}

.lf-price-row small {
    display: block;
    text-decoration: line-through;
    color: var(--lf-muted);
}

.lf-empty {
    background: #fff;
    border-radius: 24px;
    text-align: center;
    padding: 60px 20px;
    color: var(--lf-muted);
}

.lf-empty i {
    font-size: 46px;
    display: block;
    margin-bottom: 12px;
}

@media(max-width:575px) {
    .lf-page-hero {
        padding: 55px 0;
    }

    .lf-products-page {
        padding: 45px 0;
    }

    .lf-category-filter {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 8px;
    }

    .lf-category-filter a {
        white-space: nowrap;
    }
}

.lf-product-detail {
    padding: 70px 0;
}

.lf-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 30px;
    color: var(--lf-muted);
    font-size: 14px;
}

.lf-breadcrumb a {
    color: var(--lf-green-dark);
    font-weight: 800;
}

.lf-main-image {
    background: #fff;
    border-radius: 28px;
    padding: 18px;
    box-shadow: 0 18px 44px rgba(0,0,0,.08);
}

.lf-main-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 22px;
}

.lf-thumbs {
    display: flex;
    gap: 12px;
    margin-top: 16px;
    overflow-x: auto;
    padding-bottom: 8px;
}

.lf-thumbs button {
    width: 86px;
    height: 86px;
    border: 3px solid transparent;
    border-radius: 18px;
    padding: 0;
    overflow: hidden;
    background: #fff;
    flex-shrink: 0;
}

.lf-thumbs button.active {
    border-color: var(--lf-green);
}

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

.lf-detail-info {
    background: #fff;
    border-radius: 28px;
    padding: 32px;
    box-shadow: 0 18px 44px rgba(0,0,0,.08);
}

.lf-detail-category {
    display: inline-block;
    background: #edf7e8;
    color: var(--lf-green-dark);
    font-weight: 900;
    padding: 7px 14px;
    border-radius: 999px;
    margin-bottom: 14px;
}

.lf-detail-info h1 {
    font-size: clamp(32px, 4vw, 54px);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 18px;
}

.lf-detail-price strong {
    color: var(--lf-green-dark);
    font-size: 34px;
    font-weight: 900;
}

.lf-detail-price small {
    display: block;
    color: var(--lf-muted);
    text-decoration: line-through;
    font-size: 18px;
}

.lf-stock-line {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 18px 0;
}

.lf-stock-line span {
    padding: 7px 13px;
    border-radius: 999px;
    color: #fff;
    font-weight: 800;
    font-size: 14px;
}

.lf-stock-line .available {
    background: #198754;
}

.lf-stock-line .order {
    background: #ffc107;
    color: #222;
}

.lf-stock-line .soldout {
    background: #dc3545;
}

.lf-stock-line small {
    color: var(--lf-muted);
    font-weight: 700;
}

.lf-detail-desc {
    color: var(--lf-muted);
    line-height: 1.75;
    margin: 22px 0;
}

.lf-detail-actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.lf-qty {
    display: flex;
    border-radius: 999px;
    overflow: hidden;
    border: 1px solid #eee;
    background: #fff;
}

.lf-qty button {
    width: 44px;
    border: 0;
    background: #f5f5f5;
    font-weight: 900;
}

.lf-qty input {
    width: 58px;
    border: 0;
    text-align: center;
    font-weight: 900;
}

.lf-detail-cart {
    flex: 1;
}

.lf-whatsapp-product {
    margin-top: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #25D366;
    color: #fff;
    border-radius: 999px;
    padding: 13px 20px;
    font-weight: 900;
}

@media(max-width: 768px) {
    .lf-product-detail {
        padding: 45px 0;
    }

    .lf-main-image img {
        height: 330px;
    }

    .lf-detail-info {
        padding: 22px;
    }

    .lf-detail-actions {
        flex-direction: column;
    }

    .lf-qty {
        justify-content: center;
        width: 100%;
    }

    .lf-qty input {
        flex: 1;
    }
}

.lf-cart-page {
    padding: 70px 0;
}

.lf-cart-box {
    background: #fff;
    border-radius: 28px;
    padding: 26px;
    box-shadow: 0 18px 44px rgba(0,0,0,.08);
}

.lf-cart-box h3 {
    font-weight: 900;
    margin-bottom: 20px;
}

.lf-cart-item {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 16px;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid #eee;
}

.lf-cart-item small {
    display: block;
    color: var(--lf-muted);
}

.lf-cart-qty {
    display: flex;
    align-items: center;
    border: 1px solid #eee;
    border-radius: 999px;
    overflow: hidden;
}

.lf-cart-qty button {
    border: 0;
    background: #f6f6f6;
    width: 34px;
    height: 34px;
    font-weight: 900;
}

.lf-cart-qty span {
    width: 36px;
    text-align: center;
    font-weight: 900;
}

.lf-remove {
    border: 0;
    background: transparent;
    color: #dc3545;
    display: block;
    margin-left: auto;
}

.lf-cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 22px;
    font-size: 20px;
}

.lf-cart-total strong {
    color: var(--lf-green-dark);
    font-size: 26px;
}

@media(max-width:575px) {
    .lf-cart-page {
        padding: 45px 0;
    }

    .lf-cart-box {
        padding: 18px;
        border-radius: 22px;
    }

    .lf-cart-item {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

.lf-track-page {
    padding: 70px 0;
}

.lf-track-search,
.lf-track-result,
.lf-track-box {
    background: #fff;
    border-radius: 28px;
    padding: 26px;
    box-shadow: 0 18px 44px rgba(0,0,0,.08);
}

.lf-track-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}

.lf-track-head span {
    color: var(--lf-muted);
    font-weight: 700;
}

.lf-track-head h2 {
    font-weight: 900;
    margin: 0;
}

.lf-track-status {
    color: #fff;
    border-radius: 999px;
    padding: 12px 20px;
    font-weight: 900;
}

.lf-track-box h3 {
    font-weight: 900;
    margin-bottom: 18px;
}

.lf-track-item {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    padding: 14px 0;
    border-bottom: 1px solid #eee;
}

.lf-track-item small {
    display: block;
    color: var(--lf-muted);
}

.lf-track-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 18px;
    font-size: 20px;
}

.lf-track-total strong {
    color: var(--lf-green-dark);
    font-size: 26px;
}

@media(max-width:575px) {
    .lf-track-page {
        padding: 45px 0;
    }

    .lf-track-search,
    .lf-track-result,
    .lf-track-box {
        padding: 18px;
        border-radius: 22px;
    }

    .lf-track-head h2 {
        font-size: 22px;
    }
}

.lf-auth-tabs {
    background: #f3f7ef;
    padding: 5px;
    border-radius: 999px;
    display: flex;
}

.lf-auth-tabs .nav-item {
    flex: 1;
}

.lf-auth-tabs .nav-link {
    width: 100%;
    border-radius: 999px;
    color: var(--lf-dark);
    font-weight: 800;
    font-size: 14px;
}

.lf-auth-tabs .nav-link.active {
    background: var(--lf-green);
    color: #fff;
}

.lf-google-soft {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: 100%;
    border: 1px solid #e6eadf;
    background: #fff;
    color: var(--lf-dark);
    border-radius: 999px;
    padding: 10px 14px;
    font-weight: 700;
    font-size: 14px;
}

.lf-google-soft:hover {
    border-color: var(--lf-green);
    color: var(--lf-green-dark);
}

.lf-auth-separator {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 18px 0;
    color: var(--lf-muted);
    font-size: 13px;
}

.lf-auth-separator::before,
.lf-auth-separator::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #eee;
}

#authMessage .alert {
    border-radius: 14px;
    margin: 0;
}



.lf-user-panel {
    padding: 70px 0;
}

.lf-panel-sidebar,
.lf-panel-box,
.lf-order-card,
.lf-comment-row {
    background: #fff;
    border-radius: 26px;
    padding: 24px;
    box-shadow: 0 18px 44px rgba(0,0,0,.08);
}

.lf-user-avatar {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    background: var(--lf-green);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 34px;
    margin-bottom: 16px;
}

.lf-panel-sidebar h4 {
    font-weight: 900;
    margin-bottom: 4px;
}

.lf-panel-sidebar p {
    color: var(--lf-muted);
    font-size: 14px;
    word-break: break-word;
}

.lf-panel-sidebar a,
.lf-logout-btn {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 9px;
    border: 0;
    background: #f4f7ef;
    color: var(--lf-dark);
    border-radius: 999px;
    padding: 11px 15px;
    font-weight: 800;
    margin-top: 8px;
}

.lf-panel-sidebar a.active,
.lf-panel-sidebar a:hover {
    background: var(--lf-green);
    color: #fff;
}

.lf-logout-btn {
    background: #fff1f1;
    color: #dc3545;
}

.lf-panel-head h3 {
    font-weight: 900;
    margin-bottom: 18px;
}

.lf-order-card {
    box-shadow: none;
    border: 1px solid #eef1e9;
    height: 100%;
}

.lf-comment-row {
    box-shadow: none;
    border: 1px solid #eef1e9;
    margin-bottom: 12px;
}

.lf-comment-row p {
    margin: 10px 0 0;
    color: var(--lf-muted);
}

@media(max-width:575px) {
    .lf-user-panel {
        padding: 45px 0;
    }

    .lf-panel-sidebar,
    .lf-panel-box {
        padding: 18px;
        border-radius: 22px;
    }
}

#cartCount {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    transform-origin: center center;
    animation: lfCartPulse 1.6s infinite ease-in-out;
}

@keyframes lfCartPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(121,182,74,.65);
    }

    45% {
        transform: scale(1.28);
        box-shadow: 0 0 0 8px rgba(121,182,74,0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(121,182,74,0);
    }
}
@keyframes lfCartPulse{
    0%{
        transform:scale(1);
        box-shadow:0 0 0 0 rgba(121,182,74,.7);
    }

    70%{
        transform:scale(1.15);
        box-shadow:0 0 0 10px rgba(121,182,74,0);
    }

    100%{
        transform:scale(1);
        box-shadow:0 0 0 0 rgba(121,182,74,0);
    }
}




.lf-products-hero {
    position: relative;
    padding: 95px 0 85px;
    background:
        radial-gradient(circle at top left, rgba(255,255,255,.35), transparent 32%),
        linear-gradient(135deg, var(--lf-green), var(--lf-green-dark));
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.lf-products-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        url("../images/pattern.png"),
        linear-gradient(90deg, rgba(0,0,0,.12), rgba(0,0,0,0));
    opacity: .12;
    pointer-events: none;
}

.lf-products-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: auto;
}

.lf-products-hero span {
    display: inline-flex;
    background: rgba(255,255,255,.18);
    color: #fff;
    padding: 8px 18px;
    border-radius: 999px;
    font-weight: 900;
    margin-bottom: 18px;
}

.lf-products-hero h1 {
    font-size: clamp(42px, 6vw, 78px);
    font-weight: 950;
    line-height: 1;
    margin-bottom: 18px;
}

.lf-products-hero p {
    font-size: 19px;
    line-height: 1.7;
    opacity: .92;
    margin: 0;
}

.lf-products-page-modern {
    padding: 70px 0 90px;
}

.lf-products-toolbar {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
}

.lf-toolbar-label {
    display: inline-flex;
    color: var(--lf-green-dark);
    font-weight: 900;
    margin-bottom: 5px;
}

.lf-products-toolbar h2 {
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 950;
    margin: 0;
}

.lf-product-count {
    background: #fff;
    color: var(--lf-green-dark);
    border-radius: 999px;
    padding: 10px 18px;
    font-weight: 900;
    box-shadow: 0 12px 30px rgba(0,0,0,.06);
}

.lf-category-filter-modern {
    justify-content: flex-start;
    background: #fff;
    padding: 12px;
    border-radius: 24px;
    box-shadow: 0 16px 40px rgba(0,0,0,.06);
    margin-bottom: 34px;
}

.lf-category-filter-modern a {
    box-shadow: none;
    border: 1px solid rgba(79,132,41,.12);
}

.lf-product-card-modern {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    background: #fff;
    transition: .35s ease;
    border: 1px solid rgba(79,132,41,.08);
}

.lf-product-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 26px 60px rgba(0,0,0,.14);
}

.lf-product-img-modern {
    position: relative;
    display: block;
    height: 250px;
    overflow: hidden;
    background: #f5efe2;
}

.lf-product-img-modern img {
    transition: transform .45s ease;
}

.lf-product-card-modern:hover .lf-product-img-modern img {
    transform: scale(1.08);
}

.lf-card-category {
    position: absolute;
    left: 16px;
    top: 16px;
    background: rgba(255,255,255,.92);
    color: var(--lf-green-dark);
    padding: 7px 13px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    backdrop-filter: blur(8px);
}

.lf-discount-badge {
    position: absolute;
    right: 16px;
    top: 16px;
    background: #dc3545;
    color: #fff;
    padding: 7px 11px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
}

.lf-product-body-modern {
    padding: 20px;
}

.lf-product-body-modern h3 {
    font-size: 19px;
    font-weight: 950;
    line-height: 1.25;
    min-height: 48px;
    margin-bottom: 9px;
}

.lf-product-desc-modern {
    color: var(--lf-muted);
    font-size: 14px;
    line-height: 1.55;
    min-height: 44px;
    margin-bottom: 16px;
}

.lf-product-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 16px;
}

.lf-price-modern strong {
    display: block;
    color: var(--lf-green-dark);
    font-size: 22px;
    font-weight: 950;
}

.lf-price-modern small {
    color: var(--lf-muted);
    text-decoration: line-through;
    font-weight: 700;
}

.lf-natural-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #edf7e8;
    color: var(--lf-green-dark);
    padding: 7px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
}

.lf-product-actions-modern {
    display: grid;
    grid-template-columns: 88px 1fr;
    gap: 10px;
}

.lf-detail-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f4f1e8;
    color: var(--lf-dark);
    border-radius: 999px;
    font-weight: 900;
    font-size: 14px;
}

.lf-detail-btn:hover {
    background: var(--lf-dark);
    color: #fff;
}

.lf-add-cart-modern {
    padding: 12px 10px;
    box-shadow: 0 10px 24px rgba(121,182,74,.28);
    transition: .25s ease;
}

.lf-add-cart-modern:hover {
    background: var(--lf-green-dark);
    transform: translateY(-2px);
}

@media(max-width: 768px) {
    .lf-products-hero {
        padding: 70px 0 60px;
    }

    .lf-products-toolbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .lf-category-filter-modern {
        flex-wrap: nowrap;
        overflow-x: auto;
        border-radius: 18px;
    }

    .lf-category-filter-modern a {
        white-space: nowrap;
    }

    .lf-product-img-modern {
        height: 210px;
    }
}

@media(max-width: 575px) {
    .lf-products-page-modern {
        padding: 45px 0 65px;
    }

    .lf-product-img-modern {
        height: 190px;
    }

    .lf-product-body-modern {
        padding: 15px;
    }

    .lf-product-actions-modern {
        grid-template-columns: 1fr;
    }

    .lf-product-body-modern h3 {
        min-height: auto;
        font-size: 17px;
    }

    .lf-product-desc-modern {
        min-height: auto;
    }
}

/* Sayfa detay başlık düzeltmesi */
.lf-page-detail-hero h1{
    display:block !important;
    margin:0 !important;
    padding:0 !important;
    line-height:1.15 !important;
    position:relative !important;
    top:auto !important;
    transform:none !important;
}

.lf-page-breadcrumb{
    margin-bottom:20px !important;
}
.lf-page-breadcrumb{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:#edf7e8;
    color:var(--lf-green-dark);
    padding:10px 18px;
    border-radius:999px;
    font-weight:700;
    margin-bottom:20px;
}

.lf-page-breadcrumb a{
    color:var(--lf-green-dark) !important;
}
