@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&display=swap');

:root {
    --dark-green: #1f3b20;
    --dark-green-2: #132814;
    --gold: #c99a2e;
    --gold-dark: #9b7218;
    --cream: #fbf7ee;
    --cream-2: #f5ecdc;
    --white: #ffffff;
    --text: #1f2f1f;
    --muted: #6f786d;
    --border: #e8deca;
    --soft-border: #edf0e8;
    --shadow: 0 18px 45px rgba(31, 59, 32, 0.09);
    --header-height: 98px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--cream);
    color: var(--text);
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input {
    font-family: inherit;
}

button {
    border: 0;
    background: none;
    cursor: pointer;
}

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

.container {
    width: min(1500px, calc(100% - 40px));
    margin: 0 auto;
}

.announcement-slider {
    background: #070807;
    color: var(--white);
}

.announcement-inner {
    height: 42px;
    display: grid;
    grid-template-columns: 34px 1fr 34px;
    align-items: center;
    gap: 12px;
}

.announcement-track {
    height: 100%;
    position: relative;
    overflow: hidden;
}

.announcement-track p {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateY(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1.4px;
    text-align: center;
    text-transform: uppercase;
    transition: 0.35s ease;
}

.announcement-track p.active {
    opacity: 1;
    transform: translateY(0);
}

.announcement-arrow {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.76);
    display: grid;
    place-items: center;
    font-size: 14px;
    transition: 0.25s ease;
}

.announcement-arrow:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--gold);
}

.utility-bar {
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--soft-border);
}

.utility-inner {
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.utility-left,
.utility-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.utility-left span,
.utility-right a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #526050;
    font-size: 13px;
    font-weight: 750;
    white-space: nowrap;
}

.utility-left i {
    color: var(--gold);
    font-size: 15px;
}

.utility-right a {
    transition: 0.2s ease;
}

.utility-right a:hover {
    color: var(--gold-dark);
}

.main-header {
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--soft-border);
    position: relative;
    z-index: 70;
}

.header-center {
    height: var(--header-height);
    display: grid;
    grid-template-columns: 210px minmax(360px, 1fr) auto;
    align-items: center;
    gap: 26px;
}

.brand-logo {
    display: flex;
    align-items: center;
    min-width: 0;
}

.brand-logo img {
    width: 164px;
    max-height: 76px;
    object-fit: contain;
}

.header-search {
    height: 56px;
    display: grid;
    grid-template-columns: 1fr 62px;
    align-items: center;
    background: #fbfcf8;
    border: 1px solid #dfe8dc;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 14px 32px rgba(31, 59, 32, 0.055);
    transition: 0.25s ease;
}

.header-search:focus-within {
    border-color: rgba(201, 154, 46, 0.62);
    box-shadow: 0 16px 38px rgba(31, 59, 32, 0.08);
    background: #ffffff;
}

.header-search input {
    width: 100%;
    height: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    padding: 0 22px;
    color: var(--text);
    font-size: 15px;
    font-weight: 650;
}

.header-search input::placeholder {
    color: #879182;
    opacity: 1;
}

.search-submit {
    height: 100%;
    background: var(--dark-green);
    color: var(--white);
    display: grid;
    place-items: center;
    font-size: 24px;
    transition: 0.25s ease;
}

.search-submit:hover {
    background: var(--gold);
}

.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    min-width: 0;
}

.account-wrap {
    position: relative;
}

.header-action {
    height: 54px;
    min-width: 108px;
    padding: 0 15px;
    border: 1px solid #dfe8dc;
    border-radius: 17px;
    background: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: var(--text);
    position: relative;
    transition: 0.25s ease;
    box-shadow: 0 10px 25px rgba(31, 59, 32, 0.045);
}

.header-action i {
    color: var(--dark-green);
    font-size: 22px;
    line-height: 1;
}

.header-action span {
    color: #142715;
    font-size: 13px;
    font-weight: 900;
    white-space: nowrap;
}

.header-action small {
    display: inline-flex;
    color: var(--gold-dark);
    font-size: 10px;
}

.header-action small i {
    color: var(--gold-dark);
    font-size: 10px;
}

.header-action em {
    position: absolute;
    top: -8px;
    right: -7px;
    width: 23px;
    height: 23px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--white);
    display: grid;
    place-items: center;
    font-size: 11px;
    font-style: normal;
    font-weight: 900;
    border: 2px solid var(--white);
}

.header-action:hover,
.account-wrap.active .header-action {
    border-color: rgba(201, 154, 46, 0.58);
    box-shadow: 0 16px 34px rgba(31, 59, 32, 0.09);
    transform: translateY(-1px);
}

.account-menu {
    position: absolute;
    top: calc(100% + 14px);
    right: 0;
    width: 292px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 24px;
    box-shadow: 0 24px 70px rgba(31, 59, 32, 0.16);
    padding: 18px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    z-index: 120;
    transition: 0.25s ease;
}

.account-wrap.active .account-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.account-menu::before {
    content: "";
    position: absolute;
    top: -7px;
    right: 34px;
    width: 14px;
    height: 14px;
    background: var(--white);
    border-left: 1px solid var(--border);
    border-top: 1px solid var(--border);
    transform: rotate(45deg);
}

.account-menu-head {
    padding-bottom: 14px;
    margin-bottom: 14px;
    border-bottom: 1px solid var(--soft-border);
}

.account-menu-head strong {
    display: block;
    color: var(--dark-green);
    font-size: 15px;
    margin-bottom: 6px;
}

.account-menu-head p {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.5;
}

.login-btn,
.register-btn {
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    font-weight: 900;
    font-size: 14px;
    transition: 0.22s ease;
}

.login-btn {
    background: var(--dark-green);
    color: var(--white);
    margin-bottom: 9px;
}

.login-btn:hover {
    background: var(--gold);
}

.register-btn {
    background: var(--cream);
    color: var(--dark-green);
    border: 1px solid var(--border);
}

.register-btn:hover {
    border-color: rgba(201, 154, 46, 0.55);
}

.mobile-menu-button {
    width: 54px;
    height: 54px;
    border-radius: 17px;
    background: var(--dark-green);
    color: var(--white);
    display: none;
    place-items: center;
    font-size: 27px;
    transition: 0.25s ease;
}

.mobile-menu-button:hover {
    background: var(--gold);
}

.category-nav {
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid #e5ebe2;
    position: sticky;
    top: 0;
    z-index: 45;
}

.category-inner {
    height: 58px;
    display: flex;
    align-items: center;
}

.category-links {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    overflow-x: auto;
    scrollbar-width: none;
}

.category-links::-webkit-scrollbar {
    display: none;
}

.category-links a {
    height: 58px;
    padding: 0 4px;
    display: inline-flex;
    align-items: center;
    color: var(--text);
    font-size: 14px;
    font-weight: 900;
    white-space: nowrap;
    position: relative;
    transition: 0.25s ease;
}

.category-links a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    border-radius: 20px 20px 0 0;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: center;
    transition: 0.25s ease;
}

.category-links a.active,
.category-links a:hover {
    color: var(--gold-dark);
}

.category-links a.active::after,
.category-links a:hover::after {
    transform: scaleX(1);
}

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(11, 19, 12, 0.58);
    z-index: 90;
    opacity: 0;
    pointer-events: none;
    transition: 0.25s ease;
}

.mobile-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-panel {
    position: fixed;
    top: 0;
    left: -100%;
    width: min(420px, 100%);
    height: 100vh;
    z-index: 100;
    background: var(--white);
    padding: 20px;
    box-shadow: var(--shadow);
    transition: 0.3s ease;
}

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

.mobile-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.mobile-panel-head img {
    width: 150px;
}

.mobile-panel-close {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: var(--dark-green);
    color: var(--white);
    display: grid;
    place-items: center;
}

.mobile-search {
    height: 48px;
    display: grid;
    grid-template-columns: 1fr 48px;
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 18px;
}

.mobile-search input {
    border: 0;
    outline: 0;
    padding: 0 14px;
    color: var(--text);
}

.mobile-search button {
    background: var(--dark-green);
    color: var(--white);
}

.mobile-links {
    display: grid;
}

.mobile-links a {
    padding: 15px 4px;
    border-bottom: 1px solid #edf0ec;
    color: var(--text);
    font-size: 15px;
    font-weight: 800;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: -460px;
    width: 440px;
    max-width: 100%;
    height: 100vh;
    z-index: 110;
    background: #fffdf8;
    box-shadow: -24px 0 70px rgba(31, 59, 32, 0.18);
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
}

.cart-drawer.active {
    right: 0;
}

.cart-drawer-head {
    padding: 24px 24px 18px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    border-bottom: 1px solid var(--soft-border);
    background: var(--white);
}

.cart-drawer-head strong {
    color: var(--dark-green);
    font-size: 26px;
    font-weight: 900;
}

.cart-drawer-head p {
    color: var(--muted);
    font-size: 13px;
    margin-top: 4px;
}

.cart-close {
    width: 48px;
    height: 48px;
    border-radius: 17px;
    background: var(--dark-green);
    color: var(--white);
    display: grid;
    place-items: center;
    font-size: 18px;
}

.cart-list {
    padding: 20px 24px;
    display: grid;
    gap: 13px;
    overflow-y: auto;
}

.cart-item {
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: 14px;
    padding: 13px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: var(--white);
}

.cart-thumb {
    width: 92px;
    height: 92px;
    border-radius: 20px;
    background: var(--cream-2);
    overflow: hidden;
}

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

.cart-info {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cart-title {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
}

.cart-title h4 {
    color: var(--text);
    font-size: 15px;
    line-height: 1.3;
    margin-bottom: 5px;
}

.cart-title p {
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}

.cart-title button {
    color: #b7aa94;
    font-size: 15px;
    transition: 0.2s ease;
}

.cart-title button:hover {
    color: #c23b3b;
}

.cart-item-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.cart-item-bottom span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
}

.cart-item-bottom strong {
    color: var(--gold-dark);
    font-size: 17px;
    font-weight: 900;
}

.cart-totals {
    margin: auto 24px 0;
    padding: 17px;
    border-radius: 22px;
    background: var(--white);
    border: 1px solid var(--border);
    display: grid;
    gap: 12px;
}

.cart-totals div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--muted);
    font-size: 14px;
    font-weight: 800;
}

.cart-totals strong {
    color: var(--text);
    font-size: 15px;
    font-weight: 900;
}

.cart-totals .grand-total {
    padding-top: 12px;
    border-top: 1px solid var(--soft-border);
    color: var(--dark-green);
}

.cart-totals .grand-total span {
    color: var(--dark-green);
    font-size: 16px;
    font-weight: 900;
}

.cart-totals .grand-total strong {
    color: var(--gold-dark);
    font-size: 24px;
    font-weight: 900;
}

.cart-buttons {
    padding: 16px 24px 24px;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 10px;
}

.cart-checkout,
.cart-payment {
    height: 52px;
    border-radius: 17px;
    display: grid;
    place-items: center;
    font-size: 14px;
    font-weight: 900;
}

.cart-checkout {
    background: var(--cream);
    color: var(--dark-green);
    border: 1px solid var(--border);
}

.cart-payment {
    background: var(--gold);
    color: var(--white);
}

.hero-banner-section {
    padding: 18px 0 10px;
    background: var(--cream);
}

.hero-slider {
    width: 100%;
    height: clamp(260px, 28vw, 500px);
    position: relative;
    overflow: hidden;
    background: var(--cream-2);
    border-radius: 34px;
    border: 1px solid rgba(232, 222, 202, 0.9);
    box-shadow: 0 18px 44px rgba(31, 59, 32, 0.12);
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: block;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.55s ease;
}

.hero-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 8;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.22);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.34);
    display: grid;
    place-items: center;
    font-size: 20px;
    backdrop-filter: blur(10px);
    transition: 0.25s ease;
}

.hero-prev {
    left: 18px;
}

.hero-next {
    right: 18px;
}

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

.hero-dots {
    position: absolute;
    left: 50%;
    bottom: 16px;
    z-index: 8;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 10px 24px rgba(31, 59, 32, 0.12);
}

.hero-dots button {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(31, 59, 32, 0.35);
    transition: 0.25s ease;
}

.hero-dots button.active {
    width: 26px;
    background: var(--gold);
}

.site-toast {
    position: fixed;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%) translateY(20px);
    z-index: 300;
    min-width: 260px;
    max-width: calc(100% - 32px);
    padding: 14px 18px;
    border-radius: 999px;
    background: #1f3b20;
    color: #ffffff;
    text-align: center;
    font-size: 14px;
    font-weight: 800;
    opacity: 0;
    pointer-events: none;
    box-shadow: 0 18px 40px rgba(31, 59, 32, 0.24);
    transition: 0.25s ease;
}

.site-toast.active {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

@media (max-width: 1360px) {
    .header-center {
        grid-template-columns: 190px minmax(320px, 1fr) auto;
        gap: 20px;
    }

    .brand-logo img {
        width: 150px;
    }

    .header-action {
        min-width: 56px;
        padding: 0 14px;
    }

    .header-action span,
    .header-action small {
        display: none;
    }

    .category-links {
        justify-content: flex-start;
        gap: 28px;
    }
}

@media (max-width: 1080px) {
    .utility-left {
        gap: 16px;
    }

    .utility-left span:nth-child(4) {
        display: none;
    }

    .header-center {
        grid-template-columns: 170px minmax(280px, 1fr) auto;
        gap: 16px;
    }

    .brand-logo img {
        width: 140px;
    }

    .header-search {
        grid-template-columns: 1fr 58px;
    }

    .search-submit {
        font-size: 22px;
    }
}

@media (max-width: 900px) {
    .announcement-slider,
    .utility-bar,
    .category-nav {
        display: none;
    }

    .container {
        width: min(100% - 28px, 1500px);
    }

    .main-header {
        position: sticky;
        top: 0;
        z-index: 80;
        background: #ffffff;
        border-bottom: 1px solid #edf0e8;
        box-shadow: 0 12px 30px rgba(31, 59, 32, 0.06);
    }

    .header-center {
        min-height: 128px;
        height: auto;
        padding: 10px 0 12px;
        display: grid;
        grid-template-columns: 52px minmax(0, 1fr) auto;
        grid-template-areas:
            "menu logo actions"
            "search search search";
        gap: 10px 12px;
        align-items: center;
    }

    .mobile-menu-button {
        grid-area: menu;
        display: grid;
        width: 52px;
        height: 52px;
        min-width: 52px;
        border-radius: 16px;
        background: #f3f6f1;
        color: var(--dark-green);
        font-size: 28px;
        box-shadow: none;
    }

    .mobile-menu-button:hover {
        background: #eef3ec;
        color: var(--gold-dark);
    }

    .brand-logo {
        grid-area: logo;
        justify-self: start;
        min-width: 0;
        height: 52px;
    }

    .brand-logo img {
        width: 142px;
        max-height: 58px;
        object-fit: contain;
    }

    .header-actions {
        grid-area: actions;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 14px;
        min-width: 0;
        height: 52px;
    }

    .account-wrap {
        position: static;
        display: block;
    }

    .header-action,
    .cart-button {
        width: auto;
        height: auto;
        min-width: auto;
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        transform: none;
        display: inline-flex;
    }

    .header-action:hover,
    .account-wrap.active .header-action {
        border-color: transparent;
        box-shadow: none;
        transform: none;
    }

    .header-action span,
    .header-action small {
        display: none;
    }

    .header-action i {
        color: #132c18;
        font-size: 23px;
    }

    .header-action em {
        top: -12px;
        right: -10px;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        background: #c99a2e;
        color: #ffffff;
        border: 2px solid #ffffff;
        font-size: 10px;
        font-weight: 900;
    }

    .header-search {
        grid-area: search;
        height: 56px;
        display: grid;
        grid-template-columns: 56px 1fr;
        background: #fbfcf8;
        border: 1px solid #dfe8dc;
        border-radius: 18px;
        overflow: hidden;
        box-shadow: none;
    }

    .header-search input {
        grid-column: 2;
        grid-row: 1;
        padding: 0 16px 0 2px;
        font-size: 14px;
        font-weight: 650;
    }

    .search-submit {
        grid-column: 1;
        grid-row: 1;
        width: 56px;
        height: 56px;
        background: transparent;
        color: var(--gold);
        font-size: 24px;
    }

    .search-submit:hover {
        background: transparent;
        color: var(--dark-green);
    }

    .account-menu {
        position: fixed;
        top: 72px;
        right: 14px;
        width: min(310px, calc(100% - 28px));
        z-index: 140;
    }

    .account-menu::before {
        right: 74px;
    }

    .hero-banner-section {
        padding: 14px 0 8px;
    }

    .hero-slider {
        height: 285px;
        border-radius: 24px;
    }

    .hero-arrow {
        width: 42px;
        height: 42px;
        font-size: 17px;
    }

    .hero-prev {
        left: 12px;
    }

    .hero-next {
        right: 12px;
    }

    .hero-dots {
        bottom: 12px;
    }
}

@media (max-width: 520px) {
    .container {
        width: min(100% - 24px, 1500px);
    }

    .header-center {
        min-height: 122px;
        grid-template-columns: 48px minmax(0, 1fr) auto;
        gap: 9px 10px;
        padding: 9px 0 10px;
    }

    .mobile-menu-button {
        width: 48px;
        height: 48px;
        min-width: 48px;
        border-radius: 15px;
        font-size: 26px;
    }

    .brand-logo {
        height: 48px;
    }

    .brand-logo img {
        width: 132px;
        max-height: 54px;
    }

    .header-actions {
        height: 48px;
        gap: 12px;
    }

    .header-action i {
        font-size: 21px;
    }

    .header-action em {
        top: -11px;
        right: -9px;
        width: 19px;
        height: 19px;
        font-size: 10px;
    }

    .header-search {
        height: 54px;
        grid-template-columns: 54px 1fr;
        border-radius: 17px;
    }

    .search-submit {
        width: 54px;
        height: 54px;
        font-size: 23px;
    }

    .header-search input {
        font-size: 13px;
        padding-right: 12px;
    }

    .hero-banner-section {
        padding: 12px 0 6px;
    }

    .hero-slider {
        height: 215px;
        border-radius: 18px;
    }

    .hero-arrow {
        display: none;
    }

    .hero-dots {
        bottom: 10px;
        padding: 7px 9px;
        gap: 7px;
    }

    .hero-dots button {
        width: 7px;
        height: 7px;
    }

    .hero-dots button.active {
        width: 20px;
    }

    .cart-drawer {
        width: 100%;
    }

    .cart-buttons {
        grid-template-columns: 1fr;
    }

    .cart-item {
        grid-template-columns: 82px 1fr;
    }

    .cart-thumb {
        width: 82px;
        height: 82px;
    }
}

@media (max-width: 390px) {
    .header-center {
        grid-template-columns: 46px minmax(0, 1fr) auto;
    }

    .mobile-menu-button {
        width: 46px;
        height: 46px;
        min-width: 46px;
        font-size: 25px;
    }

    .brand-logo img {
        width: 116px;
    }

    .header-actions {
        gap: 10px;
    }

    .header-action i {
        font-size: 20px;
    }

    .header-search input {
        font-size: 12.5px;
    }
}

html,
body {
    overflow-x: hidden;
}

@media (max-width: 900px) {
    .main-header {
        position: sticky;
        top: 0;
        z-index: 80;
        background: #ffffff;
        border-bottom: 1px solid #edf0e8;
        box-shadow: 0 10px 26px rgba(31, 59, 32, 0.06);
        overflow: hidden;
    }

    .main-header .container {
        width: min(100% - 24px, 1500px);
        margin: 0 auto;
    }

    .header-center {
        min-height: 126px;
        height: auto;
        padding: 10px 0 11px;
        display: grid;
        grid-template-columns: 52px 1fr 112px;
        grid-template-areas:
            "menu logo actions"
            "search search search";
        align-items: center;
        gap: 10px;
        position: relative;
    }

    .mobile-menu-button {
        grid-area: menu;
        position: static;
        display: grid;
        width: 52px;
        height: 52px;
        min-width: 52px;
        border-radius: 16px;
        background: #f3f6f1;
        color: var(--dark-green);
        place-items: center;
        font-size: 28px;
        z-index: 2;
    }

    .brand-logo {
        grid-area: logo;
        justify-self: center;
        align-self: center;
        width: auto;
        height: 58px;
        min-height: 58px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        margin: 0;
    }

    .brand-logo img {
        width: 142px;
        max-width: 142px;
        max-height: 58px;
        object-fit: contain;
    }

    .header-actions {
        grid-area: actions;
        justify-self: end;
        align-self: center;
        height: 52px;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 13px;
        min-width: 112px;
        max-width: 112px;
        overflow: visible;
    }

    .account-wrap {
        display: block;
        position: static;
    }

    .header-action,
    .cart-button {
        display: inline-flex;
        width: auto;
        height: auto;
        min-width: auto;
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        transform: none;
        color: var(--dark-green);
    }

    .header-action:hover,
    .account-wrap.active .header-action {
        border-color: transparent;
        box-shadow: none;
        transform: none;
    }

    .header-action span,
    .header-action small {
        display: none;
    }

    .header-action i {
        color: #132c18;
        font-size: 22px;
        line-height: 1;
    }

    .header-action em {
        top: -12px;
        right: -10px;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        background: var(--gold);
        color: #ffffff;
        border: 2px solid #ffffff;
        font-size: 10px;
        font-style: normal;
        font-weight: 900;
        display: grid;
        place-items: center;
    }

    .header-search {
        grid-area: search;
        width: 100%;
        height: 56px;
        display: grid;
        grid-template-columns: 56px 1fr;
        background: #fbfcf8;
        border: 1px solid #dfe8dc;
        border-radius: 18px;
        overflow: hidden;
        box-shadow: none;
        margin: 0;
    }

    .header-search input {
        grid-column: 2;
        grid-row: 1;
        width: 100%;
        height: 100%;
        padding: 0 14px 0 2px;
        border: 0;
        outline: 0;
        background: transparent;
        color: var(--text);
        font-size: 14px;
        font-weight: 700;
    }

    .header-search input::placeholder {
        color: #7f8979;
        opacity: 1;
    }

    .search-submit {
        grid-column: 1;
        grid-row: 1;
        width: 56px;
        height: 56px;
        background: transparent;
        color: var(--gold);
        font-size: 24px;
    }

    .search-submit:hover {
        background: transparent;
        color: var(--dark-green);
    }

    .account-menu {
        position: fixed;
        top: 72px;
        right: 12px;
        width: min(310px, calc(100% - 24px));
        z-index: 140;
    }

    .cart-drawer {
        right: 0;
        width: min(440px, 100vw);
        max-width: 100vw;
        transform: translateX(110%);
        transition: transform 0.3s ease;
        overflow-x: hidden;
    }

    .cart-drawer.active {
        right: 0;
        transform: translateX(0);
    }

    .cart-drawer,
    .mobile-panel {
        will-change: transform;
    }

    .mobile-overlay {
        width: 100vw;
        max-width: 100vw;
    }
}

@media (max-width: 520px) {
    .main-header .container {
        width: min(100% - 20px, 1500px);
    }

    .header-center {
        min-height: 120px;
        grid-template-columns: 48px 1fr 104px;
        gap: 9px;
        padding: 9px 0 10px;
    }

    .mobile-menu-button {
        width: 48px;
        height: 48px;
        min-width: 48px;
        border-radius: 15px;
        font-size: 26px;
    }

    .brand-logo {
        height: 54px;
        min-height: 54px;
    }

    .brand-logo img {
        width: 128px;
        max-width: 128px;
        max-height: 54px;
    }

    .header-actions {
        height: 48px;
        min-width: 104px;
        max-width: 104px;
        gap: 12px;
    }

    .header-action i {
        font-size: 21px;
    }

    .header-action em {
        top: -11px;
        right: -9px;
        width: 19px;
        height: 19px;
        font-size: 10px;
    }

    .header-search {
        height: 54px;
        grid-template-columns: 54px 1fr;
        border-radius: 17px;
    }

    .search-submit {
        width: 54px;
        height: 54px;
        font-size: 23px;
    }

    .header-search input {
        font-size: 13px;
        padding-right: 10px;
    }

    .cart-drawer {
        width: 100vw;
        max-width: 100vw;
    }
}

@media (max-width: 390px) {
    .header-center {
        grid-template-columns: 46px 1fr 96px;
    }

    .mobile-menu-button {
        width: 46px;
        height: 46px;
        min-width: 46px;
        font-size: 25px;
    }

    .brand-logo img {
        width: 116px;
        max-width: 116px;
    }

    .header-actions {
        min-width: 96px;
        max-width: 96px;
        gap: 10px;
    }

    .header-action i {
        font-size: 20px;
    }
}
@media (max-width: 900px) {
    .header-center {
        min-height: 120px;
        height: auto;
        padding: 10px 0 11px;
        display: grid;
        grid-template-columns: auto 1fr auto;
        grid-template-areas:
            "logo space actions"
            "search search search";
        align-items: center;
        gap: 10px;
        position: relative;
    }

    .brand-logo {
        grid-area: logo;
        justify-self: start;
        align-self: center;
        width: auto;
        height: 58px;
        min-height: 58px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding: 0;
        margin: 0;
    }

    .brand-logo img {
        width: 132px;
        max-width: 132px;
        max-height: 58px;
        object-fit: contain;
    }

    .header-actions {
        grid-area: actions;
        justify-self: end;
        align-self: center;
        height: 52px;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 14px;
        min-width: auto;
        max-width: none;
        overflow: visible;
    }

    .mobile-menu-button {
        position: static;
        display: grid;
        width: 52px;
        height: 52px;
        min-width: 52px;
        border-radius: 16px;
        background: #f3f6f1;
        color: var(--dark-green);
        place-items: center;
        font-size: 28px;
        z-index: 2;
        order: 10;
    }

    .account-wrap {
        display: block;
        position: static;
    }

    .header-action,
    .cart-button {
        display: inline-flex;
        width: auto;
        height: auto;
        min-width: auto;
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        transform: none;
        color: var(--dark-green);
    }

    .header-action span,
    .header-action small {
        display: none;
    }

    .header-action i {
        color: #132c18;
        font-size: 22px;
        line-height: 1;
    }

    .header-action em {
        top: -12px;
        right: -10px;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        background: var(--gold);
        color: #ffffff;
        border: 2px solid #ffffff;
        font-size: 10px;
        font-style: normal;
        font-weight: 900;
        display: grid;
        place-items: center;
    }

    .header-search {
        grid-area: search;
        width: 100%;
        height: 56px;
        display: grid;
        grid-template-columns: 56px 1fr;
        background: #fbfcf8;
        border: 1px solid #dfe8dc;
        border-radius: 18px;
        overflow: hidden;
        box-shadow: none;
        margin: 0;
    }

    .search-submit {
        grid-column: 1;
        grid-row: 1;
        width: 56px;
        height: 56px;
        background: transparent;
        color: var(--gold);
        font-size: 24px;
    }

    .header-search input {
        grid-column: 2;
        grid-row: 1;
        width: 100%;
        height: 100%;
        padding: 0 14px 0 2px;
        border: 0;
        outline: 0;
        background: transparent;
        color: var(--text);
        font-size: 14px;
        font-weight: 700;
    }
}

@media (max-width: 520px) {
    .header-center {
        min-height: 116px;
        grid-template-columns: auto 1fr auto;
        gap: 9px;
        padding: 9px 0 10px;
    }

    .brand-logo {
        height: 52px;
        min-height: 52px;
    }

    .brand-logo img {
        width: 122px;
        max-width: 122px;
        max-height: 52px;
    }

    .header-actions {
        height: 50px;
        gap: 12px;
    }

    .mobile-menu-button {
        width: 50px;
        height: 50px;
        min-width: 50px;
        border-radius: 15px;
        font-size: 26px;
    }

    .header-action i {
        font-size: 21px;
    }

    .header-action em {
        top: -11px;
        right: -9px;
        width: 19px;
        height: 19px;
        font-size: 10px;
    }

    .header-search {
        height: 54px;
        grid-template-columns: 54px 1fr;
        border-radius: 17px;
    }

    .search-submit {
        width: 54px;
        height: 54px;
        font-size: 23px;
    }

    .header-search input {
        font-size: 13px;
        padding-right: 10px;
    }
}

@media (max-width: 390px) {
    .brand-logo img {
        width: 108px;
        max-width: 108px;
    }

    .header-actions {
        gap: 10px;
    }

    .mobile-menu-button {
        width: 46px;
        height: 46px;
        min-width: 46px;
        font-size: 25px;
    }

    .header-action i {
        font-size: 20px;
    }
}
@media (max-width: 900px) {
    .main-header .container {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }

    .header-center {
        width: 100%;
        padding: 10px 8px 12px 0;
        grid-template-columns: auto 1fr auto;
        grid-template-areas:
            "logo space actions"
            "search search search";
    }

    .brand-logo {
        grid-area: logo;
        justify-self: start;
        margin-left: 0;
        padding-left: 0;
    }

    .brand-logo img {
        margin-left: 0;
    }

    .header-actions {
        padding-right: 8px;
    }

    .header-search {
        width: calc(100% - 16px);
        margin: 0 8px;
    }
}

@media (max-width: 520px) {
    .header-center {
        padding: 9px 6px 10px 0;
    }

    .header-actions {
        padding-right: 6px;
    }

    .header-search {
        width: calc(100% - 12px);
        margin: 0 6px;
    }
}
@media (max-width: 900px) {
    .main-header .container {
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin: 0;
    }

    .header-center {
        width: 100%;
        padding: 10px 8px 12px 0;
        grid-template-columns: auto 1fr auto;
        grid-template-areas:
            "logo space actions"
            "search search search";
    }

    .brand-logo {
        grid-area: logo;
        justify-self: start;
        margin: 0;
        padding: 0;
        width: 128px;
        height: 58px;
        min-height: 58px;
        overflow: visible;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

    .brand-logo img {
        width: 142px;
        max-width: none;
        max-height: 58px;
        object-fit: contain;
        transform: translateX(-14px);
    }

    .header-actions {
        grid-area: actions;
        justify-self: end;
        padding-right: 8px;
    }

    .header-search {
        grid-area: search;
        width: calc(100% - 16px);
        margin: 0 8px;
    }
}

@media (max-width: 520px) {
    .header-center {
        padding: 9px 6px 10px 0;
    }

    .brand-logo {
        width: 116px;
        height: 54px;
        min-height: 54px;
    }

    .brand-logo img {
        width: 132px;
        max-height: 54px;
        transform: translateX(-13px);
    }

    .header-actions {
        padding-right: 6px;
    }

    .header-search {
        width: calc(100% - 12px);
        margin: 0 6px;
    }
}

@media (max-width: 390px) {
    .brand-logo {
        width: 104px;
    }

    .brand-logo img {
        width: 122px;
        transform: translateX(-12px);
    }
}

@media (min-width: 901px) {
    .header-center {
        grid-template-columns: 185px minmax(420px, 1fr) auto;
        gap: 24px;
    }

    .brand-logo {
        justify-self: start;
        transform: translateX(-14px);
    }

    .brand-logo img {
        width: 170px;
        max-height: 78px;
    }
}

@media (min-width: 1361px) {
    .header-center {
        grid-template-columns: 190px minmax(460px, 1fr) auto;
    }

    .brand-logo {
        transform: translateX(-18px);
    }
}
.service-highlights {
    padding: 18px 0 22px;
    background:
        radial-gradient(circle at 20% 20%, rgba(201, 154, 46, 0.06), transparent 18%),
        radial-gradient(circle at 80% 30%, rgba(31, 59, 32, 0.04), transparent 20%),
        var(--cream);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.service-card {
    min-height: 220px;
    padding: 26px 22px;
    border-radius: 28px;
    background: linear-gradient(180deg, #edf4ec 0%, #e4eee3 100%);
    border: 1px solid rgba(31, 59, 32, 0.08);
    box-shadow: 0 14px 35px rgba(31, 59, 32, 0.08);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    transition: 0.28s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    right: -40px;
    top: -40px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(201, 154, 46, 0.08);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(31, 59, 32, 0.12);
    border-color: rgba(201, 154, 46, 0.28);
}

.service-card-whatsapp {
    background: linear-gradient(180deg, #eef7ee 0%, #e5f2e5 100%);
}

.service-icon {
    width: 72px;
    height: 72px;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid rgba(31, 59, 32, 0.08);
    display: grid;
    place-items: center;
    box-shadow: 0 10px 24px rgba(31, 59, 32, 0.07);
    position: relative;
    z-index: 1;
}

.service-icon i {
    font-size: 32px;
    color: var(--gold);
    line-height: 1;
}

.service-card-whatsapp .service-icon i {
    color: #25d366;
}

.service-content {
    position: relative;
    z-index: 1;
}

.service-content span {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--gold-dark);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.service-content h3 {
    color: var(--dark-green);
    font-size: 28px;
    line-height: 1.08;
    font-weight: 900;
    margin-bottom: 10px;
}

.service-content p {
    color: var(--text);
    font-size: 20px;
    line-height: 1.25;
    font-weight: 800;
    margin-bottom: 8px;
}

.service-content small {
    display: block;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
    font-weight: 600;
}

@media (max-width: 1200px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .service-highlights {
        padding: 14px 0 18px;
    }

    .service-grid {
        gap: 14px;
    }

    .service-card {
        min-height: 205px;
        padding: 22px 18px;
        border-radius: 24px;
    }

    .service-icon {
        width: 64px;
        height: 64px;
        border-radius: 19px;
    }

    .service-icon i {
        font-size: 28px;
    }

    .service-content h3 {
        font-size: 24px;
    }

    .service-content p {
        font-size: 18px;
    }
}

@media (max-width: 520px) {
    .service-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .service-card {
        min-height: auto;
        padding: 20px 16px;
        border-radius: 20px;
        gap: 14px;
    }

    .service-icon {
        width: 58px;
        height: 58px;
        border-radius: 17px;
    }

    .service-icon i {
        font-size: 25px;
    }

    .service-content span {
        font-size: 11px;
        margin-bottom: 6px;
    }

    .service-content h3 {
        font-size: 22px;
        margin-bottom: 8px;
    }

    .service-content p {
        font-size: 17px;
        margin-bottom: 6px;
    }

    .service-content small {
        font-size: 12px;
        line-height: 1.5;
    }
}
.product-showcase {
    padding: 18px 0 54px;
    background:
        radial-gradient(circle at 15% 12%, rgba(201, 154, 46, 0.07), transparent 20%),
        radial-gradient(circle at 86% 28%, rgba(31, 59, 32, 0.05), transparent 20%),
        var(--cream);
}

.product-row {
    margin-bottom: 34px;
}

.product-row:last-child {
    margin-bottom: 0;
}

.product-row-head {
    min-height: 66px;
    margin-bottom: 16px;
    padding: 0 6px 0 0;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    border-bottom: 1px solid rgba(31, 59, 32, 0.1);
}

.product-row-head span {
    display: inline-flex;
    align-items: center;
    height: 26px;
    padding: 0 12px;
    margin-bottom: 8px;
    border-radius: 999px;
    background: rgba(201, 154, 46, 0.12);
    color: var(--gold-dark);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.product-row-head h2 {
    color: var(--dark-green);
    font-size: clamp(24px, 2.2vw, 34px);
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -0.8px;
    padding-bottom: 12px;
}

.product-row-head a {
    height: 42px;
    padding: 0 16px;
    margin-bottom: 11px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid rgba(31, 59, 32, 0.1);
    color: var(--dark-green);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 900;
    white-space: nowrap;
    box-shadow: 0 10px 26px rgba(31, 59, 32, 0.055);
    transition: 0.24s ease;
}

.product-row-head a:hover {
    background: var(--dark-green);
    color: #ffffff;
    border-color: var(--dark-green);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.product-card {
    position: relative;
    min-width: 0;
    min-height: 100%;
    padding: 14px;
    border-radius: 28px;
    background: #ffffff;
    border: 1px solid rgba(31, 59, 32, 0.09);
    box-shadow: 0 16px 38px rgba(31, 59, 32, 0.075);
    transition: 0.28s ease;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 54px rgba(31, 59, 32, 0.13);
    border-color: rgba(201, 154, 46, 0.35);
}

.product-fav {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 5;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(31, 59, 32, 0.08);
    color: var(--dark-green);
    display: grid;
    place-items: center;
    font-size: 19px;
    box-shadow: 0 12px 24px rgba(31, 59, 32, 0.08);
    transition: 0.24s ease;
}

.product-fav:hover {
    background: var(--gold);
    color: #ffffff;
    border-color: var(--gold);
}

.product-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 5;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: #e52b24;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    line-height: 1;
    font-weight: 900;
    box-shadow: 0 12px 24px rgba(229, 43, 36, 0.22);
}

.product-image {
    height: 260px;
    border-radius: 22px;
    background:
        radial-gradient(circle at 50% 35%, rgba(201, 154, 46, 0.10), transparent 34%),
        #f9f6ef;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.35s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.045);
}

.product-info {
    padding: 16px 6px 4px;
}

.product-title {
    min-height: 46px;
    display: block;
    color: var(--text);
    font-size: 15px;
    line-height: 1.45;
    font-weight: 850;
    text-align: center;
    transition: 0.22s ease;
}

.product-title:hover {
    color: var(--gold-dark);
}

.product-meta {
    margin: 12px 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
}

.product-meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.product-meta i {
    color: var(--gold);
    font-size: 12px;
}

.product-price {
    min-height: 36px;
    margin-bottom: 15px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.product-price del {
    color: #9c9c9c;
    font-size: 15px;
    font-weight: 750;
}

.product-price strong {
    color: #070807;
    font-size: 25px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.7px;
}

.product-cart {
    width: min(230px, 100%);
    height: 54px;
    margin: 0 auto;
    border-radius: 18px;
    background: var(--dark-green);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 900;
    box-shadow: 0 14px 28px rgba(31, 59, 32, 0.20);
    transition: 0.25s ease;
}

.product-cart i {
    font-size: 21px;
}

.product-cart:hover {
    background: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 18px 32px rgba(201, 154, 46, 0.26);
}

@media (max-width: 1280px) {
    .product-grid {
        gap: 14px;
    }

    .product-image {
        height: 230px;
    }

    .product-price strong {
        font-size: 22px;
    }
}

@media (max-width: 1040px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-image {
        height: 260px;
    }
}

@media (max-width: 640px) {
    .product-showcase {
        padding: 14px 0 38px;
    }

    .product-row {
        margin-bottom: 28px;
    }

    .product-row-head {
        min-height: auto;
        align-items: flex-start;
        margin-bottom: 13px;
    }

    .product-row-head h2 {
        font-size: 24px;
        padding-bottom: 10px;
    }

    .product-row-head a {
        height: 38px;
        padding: 0 13px;
        margin-bottom: 9px;
        font-size: 12px;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 13px;
    }

    .product-card {
        padding: 12px;
        border-radius: 24px;
    }

    .product-image {
        height: 245px;
        border-radius: 20px;
    }

    .product-title {
        min-height: auto;
        font-size: 15px;
    }

    .product-price strong {
        font-size: 23px;
    }

    .product-cart {
        height: 52px;
    }
}

.tab-products-section {
    padding: 28px 0 56px;
    background:
        radial-gradient(circle at 18% 8%, rgba(201, 154, 46, 0.06), transparent 20%),
        radial-gradient(circle at 88% 32%, rgba(31, 59, 32, 0.045), transparent 22%),
        var(--cream);
}

.tab-products-head {
    margin-bottom: 18px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
}

.tab-products-head span {
    display: inline-flex;
    margin-bottom: 8px;
    color: var(--gold-dark);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.tab-products-head h2 {
    color: var(--dark-green);
    font-size: clamp(25px, 2.5vw, 38px);
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -1px;
}

.tab-products-all {
    height: 40px;
    padding: 0 15px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid rgba(31, 59, 32, 0.10);
    color: var(--dark-green);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 900;
    white-space: nowrap;
    box-shadow: 0 10px 24px rgba(31, 59, 32, 0.055);
    transition: 0.22s ease;
}

.tab-products-all:hover {
    background: var(--dark-green);
    color: #ffffff;
    border-color: var(--dark-green);
}

.product-tabs {
    margin-bottom: 18px;
    padding: 6px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(31, 59, 32, 0.08);
    box-shadow: 0 14px 34px rgba(31, 59, 32, 0.06);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
}

.product-tab {
    height: 48px;
    border-radius: 14px;
    color: var(--dark-green);
    font-size: 14px;
    font-weight: 900;
    transition: 0.22s ease;
}

.product-tab:hover {
    background: rgba(201, 154, 46, 0.10);
}

.product-tab.active {
    background: var(--dark-green);
    color: #ffffff;
    box-shadow: 0 12px 24px rgba(31, 59, 32, 0.18);
}

.product-tab-panel {
    display: none;
}

.product-tab-panel.active {
    display: block;
}

.soft-product-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

.soft-product-card {
    position: relative;
    min-width: 0;
    padding: 10px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid rgba(31, 59, 32, 0.08);
    box-shadow: 0 10px 26px rgba(31, 59, 32, 0.055);
    transition: 0.24s ease;
    overflow: hidden;
}

.soft-product-card:hover {
    transform: translateY(-3px);
    border-color: rgba(201, 154, 46, 0.35);
    box-shadow: 0 16px 34px rgba(31, 59, 32, 0.10);
}

.soft-product-fav {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 5;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(31, 59, 32, 0.08);
    color: var(--dark-green);
    display: grid;
    place-items: center;
    font-size: 16px;
    box-shadow: 0 8px 18px rgba(31, 59, 32, 0.07);
    transition: 0.22s ease;
}

.soft-product-fav:hover {
    background: var(--gold);
    color: #ffffff;
    border-color: var(--gold);
}

.soft-product-badge {
    position: absolute;
    top: 13px;
    left: 13px;
    z-index: 5;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: #e63b32;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 900;
    box-shadow: 0 8px 18px rgba(230, 59, 50, 0.18);
}

.soft-product-image {
    height: 176px;
    border-radius: 14px;
    background: #faf7ef;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.soft-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.28s ease;
}

.soft-product-card:hover .soft-product-image img {
    transform: scale(1.035);
}

.soft-product-info {
    padding: 12px 4px 2px;
}

.soft-product-title {
    min-height: 42px;
    display: block;
    color: var(--text);
    font-size: 13px;
    line-height: 1.35;
    font-weight: 850;
    text-align: center;
    transition: 0.22s ease;
}

.soft-product-title:hover {
    color: var(--gold-dark);
}

.soft-product-price {
    min-height: 34px;
    margin: 9px 0 11px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 7px;
    flex-wrap: wrap;
}

.soft-product-price del {
    color: #a0a0a0;
    font-size: 12px;
    font-weight: 700;
}

.soft-product-price strong {
    color: #080a08;
    font-size: 18px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.4px;
}

.soft-product-cart {
    width: 100%;
    height: 42px;
    border-radius: 13px;
    background: var(--dark-green);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-size: 12px;
    font-weight: 900;
    box-shadow: 0 10px 20px rgba(31, 59, 32, 0.16);
    transition: 0.22s ease;
}

.soft-product-cart i {
    font-size: 17px;
}

.soft-product-cart:hover {
    background: var(--gold);
    transform: translateY(-1px);
}

@media (max-width: 1280px) {
    .soft-product-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1040px) {
    .soft-product-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .soft-product-image {
        height: 170px;
    }
}

@media (max-width: 760px) {
    .tab-products-head {
        align-items: flex-start;
    }

    .tab-products-all {
        display: none;
    }

    .product-tabs {
        display: flex;
        overflow-x: auto;
        gap: 7px;
        scrollbar-width: none;
    }

    .product-tabs::-webkit-scrollbar {
        display: none;
    }

    .product-tab {
        min-width: max-content;
        padding: 0 16px;
        height: 44px;
        font-size: 13px;
    }

    .soft-product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .soft-product-card {
        padding: 8px;
        border-radius: 16px;
    }

    .soft-product-image {
        height: 145px;
        border-radius: 13px;
    }

    .soft-product-fav {
        width: 31px;
        height: 31px;
        top: 10px;
        right: 10px;
        font-size: 14px;
    }

    .soft-product-badge {
        min-height: 25px;
        top: 11px;
        left: 11px;
        padding: 0 8px;
        font-size: 10px;
    }

    .soft-product-title {
        min-height: 38px;
        font-size: 12.5px;
    }

    .soft-product-price strong {
        font-size: 16px;
    }

    .soft-product-cart {
        height: 39px;
        border-radius: 12px;
        font-size: 11px;
    }
}

@media (max-width: 390px) {
    .soft-product-grid {
        gap: 8px;
    }

    .soft-product-image {
        height: 132px;
    }

    .soft-product-title {
        font-size: 12px;
    }

    .soft-product-price del {
        font-size: 11px;
    }

    .soft-product-price strong {
        font-size: 15px;
    }
}
.brand-story-section {
    padding: 54px 0 58px;
    background:
        radial-gradient(circle at 16% 18%, rgba(201, 154, 46, 0.07), transparent 22%),
        radial-gradient(circle at 82% 22%, rgba(31, 59, 32, 0.06), transparent 24%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.54), rgba(251, 247, 238, 0.95)),
        var(--cream);
    position: relative;
    overflow: hidden;
}

.brand-story-section::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.45;
    pointer-events: none;
    background-image:
        radial-gradient(circle, rgba(31, 59, 32, 0.12) 1px, transparent 1.5px),
        linear-gradient(135deg, transparent 0%, transparent 44%, rgba(31, 59, 32, 0.045) 45%, transparent 47%);
    background-size: 42px 42px, 180px 180px;
}

.brand-story-card {
    position: relative;
    z-index: 2;
    min-height: 430px;
    padding: 52px 58px;
    border-radius: 36px;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.86) 50%, rgba(245, 236, 220, 0.48) 100%);
    border: 1px solid rgba(232, 222, 202, 0.95);
    box-shadow: 0 22px 58px rgba(31, 59, 32, 0.09);
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
    align-items: center;
    gap: 42px;
    overflow: hidden;
}

.brand-story-card::before {
    content: "";
    position: absolute;
    left: -80px;
    top: -80px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(201, 154, 46, 0.10);
}

.brand-story-card::after {
    content: "";
    position: absolute;
    right: -130px;
    bottom: -150px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: rgba(31, 59, 32, 0.07);
}

.brand-story-content {
    position: relative;
    z-index: 2;
}

.brand-story-content span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: rgba(201, 154, 46, 0.12);
    color: var(--gold-dark);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.brand-story-content h2 {
    max-width: 560px;
    color: var(--dark-green);
    font-size: clamp(34px, 4vw, 58px);
    line-height: 0.98;
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 24px;
}

.brand-story-content p {
    max-width: 640px;
    color: #334333;
    font-size: 16px;
    line-height: 1.75;
    font-weight: 600;
    margin-bottom: 16px;
}

.brand-story-sign {
    margin-top: 26px;
    padding-left: 18px;
    border-left: 4px solid var(--gold);
}

.brand-story-sign strong {
    display: block;
    color: var(--dark-green);
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 5px;
}

.brand-story-sign small {
    display: block;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.brand-story-visual {
    position: relative;
    z-index: 2;
    min-height: 330px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-story-image {
    width: min(520px, 100%);
    height: 300px;
    border-radius: 34px;
    overflow: hidden;
    box-shadow: 0 24px 54px rgba(31, 59, 32, 0.16);
    border: 8px solid rgba(255, 255, 255, 0.82);
    transform: rotate(-1.5deg);
}

.brand-story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-story-product {
    position: absolute;
    right: 8px;
    bottom: -6px;
    width: 190px;
    height: 190px;
    border-radius: 34px;
    overflow: hidden;
    border: 8px solid #ffffff;
    box-shadow: 0 22px 46px rgba(31, 59, 32, 0.16);
    transform: rotate(4deg);
}

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

@media (max-width: 1120px) {
    .brand-story-card {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .brand-story-content h2,
    .brand-story-content p {
        max-width: 100%;
    }

    .brand-story-visual {
        min-height: 300px;
    }

    .brand-story-image {
        width: 100%;
        height: 310px;
    }
}

@media (max-width: 760px) {
    .brand-story-section {
        padding: 34px 0 42px;
    }

    .brand-story-card {
        padding: 30px 22px;
        border-radius: 28px;
        gap: 28px;
    }

    .brand-story-content span {
        min-height: 31px;
        font-size: 11px;
        letter-spacing: 1px;
        margin-bottom: 14px;
    }

    .brand-story-content h2 {
        font-size: 34px;
        letter-spacing: -1.2px;
        margin-bottom: 18px;
    }

    .brand-story-content p {
        font-size: 14px;
        line-height: 1.7;
    }

    .brand-story-sign {
        margin-top: 20px;
    }

    .brand-story-visual {
        min-height: 255px;
    }

    .brand-story-image {
        height: 250px;
        border-radius: 24px;
        border-width: 6px;
    }

    .brand-story-product {
        width: 128px;
        height: 128px;
        right: -2px;
        bottom: -8px;
        border-radius: 24px;
        border-width: 6px;
    }
}

@media (max-width: 480px) {
    .brand-story-card {
        padding: 26px 18px;
        border-radius: 24px;
    }

    .brand-story-content h2 {
        font-size: 30px;
    }

    .brand-story-visual {
        min-height: 230px;
    }

    .brand-story-image {
        height: 220px;
    }

    .brand-story-product {
        width: 112px;
        height: 112px;
    }
}

.site-footer {
    position: relative;
    color: #ffffff;
    background:
        linear-gradient(180deg, rgba(10, 16, 10, 0.66), rgba(8, 12, 8, 0.92)),
        url('https://images.unsplash.com/photo-1523741543316-beb7fc7023d8?auto=format&fit=crop&w=1800&q=80') center center / cover no-repeat;
    overflow: hidden;
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 18%, rgba(201, 154, 46, 0.10), transparent 24%),
        radial-gradient(circle at 80% 22%, rgba(31, 59, 32, 0.12), transparent 25%);
    pointer-events: none;
}

.footer-newsletter,
.footer-main {
    position: relative;
    z-index: 2;
}

.footer-newsletter {
    padding: 34px 0 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.footer-newsletter-inner {
    display: grid;
    grid-template-columns: 1.1fr 1.5fr auto;
    align-items: center;
    gap: 22px;
}

.footer-newsletter-content span {
    display: inline-block;
    margin-bottom: 8px;
    color: #d9b664;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.footer-newsletter-content h3 {
    color: #ffffff;
    font-size: clamp(22px, 2vw, 32px);
    line-height: 1.15;
    font-weight: 900;
}

.footer-newsletter-form {
    display: grid;
    grid-template-columns: 1fr 150px;
    gap: 0;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.16);
}

.footer-newsletter-form input {
    height: 62px;
    border: 0;
    outline: 0;
    padding: 0 22px;
    color: #1f2f1f;
    background: transparent;
    font-size: 15px;
    font-weight: 700;
}

.footer-newsletter-form input::placeholder {
    color: #828b80;
    opacity: 1;
}

.footer-newsletter-form button {
    height: 62px;
    background: var(--dark-green);
    color: #ffffff;
    font-size: 16px;
    font-weight: 900;
    transition: 0.25s ease;
}

.footer-newsletter-form button:hover {
    background: var(--gold);
}

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

.footer-social a {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: rgba(31, 59, 32, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #ffffff;
    display: grid;
    place-items: center;
    font-size: 20px;
    transition: 0.25s ease;
}

.footer-social a:hover {
    background: var(--gold);
    transform: translateY(-2px);
}

.footer-main {
    padding: 46px 0 26px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.9fr 0.9fr 0.9fr 1.05fr;
    gap: 34px;
    padding-bottom: 34px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.footer-brand {
    max-width: 380px;
}

.footer-logo {
    display: inline-flex;
    margin-bottom: 18px;
}

.footer-logo img {
    width: 170px;
    max-width: 100%;
    filter: brightness(1.04);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    line-height: 1.8;
    font-weight: 500;
    margin-bottom: 22px;
}

.footer-contact-list {
    display: grid;
    gap: 12px;
}

.footer-contact-list a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    transition: 0.22s ease;
}

.footer-contact-list a i {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    color: #d9b664;
    display: grid;
    place-items: center;
    font-size: 16px;
}

.footer-contact-list a:hover {
    color: #d9b664;
}

.footer-links-column h4,
.footer-info-box h4 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 18px;
}

.footer-links-column ul {
    list-style: none;
    display: grid;
    gap: 12px;
}

.footer-links-column a {
    color: rgba(255, 255, 255, 0.78);
    font-size: 15px;
    font-weight: 600;
    transition: 0.22s ease;
}

.footer-links-column a:hover {
    color: #d9b664;
    padding-left: 4px;
}

.footer-mini-cards {
    display: grid;
    gap: 12px;
}

.footer-mini-card {
    padding: 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-mini-card i {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: rgba(201, 154, 46, 0.16);
    color: #d9b664;
    display: grid;
    place-items: center;
    font-size: 18px;
    flex-shrink: 0;
}

.footer-mini-card strong {
    display: block;
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 4px;
}

.footer-mini-card small {
    display: block;
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    line-height: 1.55;
    font-weight: 600;
}

.footer-bottom {
    padding-top: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-bottom-left p {
    color: rgba(255, 255, 255, 0.66);
    font-size: 14px;
    font-weight: 600;
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.payment-badge {
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.10);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
}

.secure-badge {
    gap: 8px;
    color: #d9b664;
}

.floating-whatsapp {
    position: fixed;
    left: 18px;
    bottom: 18px;
    z-index: 120;
    height: 58px;
    padding: 0 22px;
    border-radius: 18px;
    background: #1f8f4d;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22);
    font-size: 16px;
    font-weight: 900;
    transition: 0.25s ease;
}

.floating-whatsapp i {
    font-size: 26px;
    line-height: 1;
}

.floating-whatsapp:hover {
    background: #22a85a;
    transform: translateY(-2px);
}

@media (max-width: 1280px) {
    .footer-newsletter-inner {
        grid-template-columns: 1fr;
        align-items: stretch;
    }

    .footer-social {
        justify-content: flex-start;
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-brand {
        max-width: 100%;
    }
}

@media (max-width: 760px) {
    .footer-newsletter {
        padding: 28px 0 22px;
    }

    .footer-newsletter-form {
        grid-template-columns: 1fr;
        border-radius: 18px;
    }

    .footer-newsletter-form input,
    .footer-newsletter-form button {
        height: 56px;
    }

    .footer-main {
        padding: 34px 0 110px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding-bottom: 26px;
    }

    .footer-links-column h4,
    .footer-info-box h4 {
        font-size: 18px;
        margin-bottom: 14px;
    }

    .footer-social a {
        width: 48px;
        height: 48px;
        border-radius: 14px;
        font-size: 18px;
    }

    .floating-whatsapp {
        left: 12px;
        right: 12px;
        bottom: 12px;
        justify-content: center;
        border-radius: 16px;
    }
}

/* Barut Zeytin Zarif Final Düzeltme */

:root {
    --header-height: 84px;
    --shadow: 0 14px 34px rgba(31, 59, 32, 0.075);
}

html,
body {
    overflow-x: hidden;
}

body {
    font-size: 14px;
    line-height: 1.55;
}

.container {
    width: min(1380px, calc(100% - 44px));
}

.announcement-inner {
    height: 36px;
}

.announcement-track p {
    font-size: 11px;
    letter-spacing: 1.1px;
}

.utility-inner {
    height: 32px;
}

.utility-left span,
.utility-right a {
    font-size: 12px;
    gap: 6px;
}

.main-header {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 24px rgba(31, 59, 32, 0.035);
}

.header-center {
    height: 84px;
    grid-template-columns: 165px minmax(380px, 1fr) auto;
    gap: 22px;
}

.brand-logo {
    transform: none;
}

.brand-logo img {
    width: 146px;
    max-height: 66px;
}

.header-search {
    height: 50px;
    grid-template-columns: 1fr 56px;
    border-radius: 15px;
    box-shadow: 0 10px 24px rgba(31, 59, 32, 0.04);
}

.header-search input {
    font-size: 13px;
    font-weight: 650;
    padding: 0 18px;
}

.search-submit {
    font-size: 21px;
}

.header-actions {
    gap: 8px;
}

.header-action {
    height: 48px;
    min-width: 94px;
    padding: 0 13px;
    border-radius: 15px;
    gap: 8px;
    box-shadow: 0 8px 20px rgba(31, 59, 32, 0.035);
}

.header-action i {
    font-size: 19px;
}

.header-action span {
    font-size: 12px;
    font-weight: 850;
}

.header-action em {
    top: -7px;
    right: -6px;
    width: 21px;
    height: 21px;
    font-size: 10px;
}

.category-inner,
.category-links a {
    height: 50px;
}

.category-links a {
    font-size: 13px;
    font-weight: 850;
}

.hero-banner-section {
    padding: 14px 0 8px;
}

.hero-slider {
    height: clamp(230px, 24vw, 430px);
    border-radius: 26px;
    box-shadow: 0 14px 34px rgba(31, 59, 32, 0.10);
}

.hero-arrow {
    width: 44px;
    height: 44px;
    font-size: 17px;
}

.hero-dots {
    bottom: 13px;
    padding: 7px 11px;
}

.service-highlights {
    padding: 14px 0 18px;
}

.service-grid {
    gap: 14px;
}

.service-card {
    min-height: 178px;
    padding: 22px 20px;
    border-radius: 22px;
    gap: 14px;
    box-shadow: 0 10px 26px rgba(31, 59, 32, 0.065);
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 34px rgba(31, 59, 32, 0.10);
}

.service-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
}

.service-icon i {
    font-size: 25px;
}

.service-content span {
    font-size: 10px;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.service-content h3 {
    font-size: 22px;
    line-height: 1.12;
    margin-bottom: 7px;
}

.service-content p {
    font-size: 16px;
    margin-bottom: 6px;
}

.service-content small {
    font-size: 12px;
    line-height: 1.5;
}

.tab-products-section {
    padding: 24px 0 46px;
}

.tab-products-head {
    margin-bottom: 15px;
}

.tab-products-head span {
    font-size: 11px;
    letter-spacing: 0.9px;
    margin-bottom: 6px;
}

.tab-products-head h2 {
    font-size: clamp(24px, 2.15vw, 32px);
    letter-spacing: -0.7px;
}

.tab-products-all {
    height: 36px;
    padding: 0 14px;
    font-size: 12px;
}

.product-tabs {
    margin-bottom: 16px;
    padding: 5px;
    border-radius: 15px;
}

.product-tab {
    height: 42px;
    border-radius: 12px;
    font-size: 12.5px;
}

.soft-product-grid {
    gap: 12px;
}

.soft-product-card {
    padding: 9px;
    border-radius: 16px;
    box-shadow: 0 8px 22px rgba(31, 59, 32, 0.05);
}

.soft-product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 13px 28px rgba(31, 59, 32, 0.085);
}

.soft-product-image {
    height: 158px;
    border-radius: 13px;
}

.soft-product-fav {
    width: 31px;
    height: 31px;
    top: 11px;
    right: 11px;
    font-size: 14px;
}

.soft-product-badge {
    top: 11px;
    left: 11px;
    min-height: 24px;
    padding: 0 8px;
    font-size: 10px;
}

.soft-product-info {
    padding: 10px 3px 1px;
}

.soft-product-title {
    min-height: 38px;
    font-size: 12.2px;
    line-height: 1.35;
    font-weight: 800;
}

.soft-product-price {
    min-height: 30px;
    margin: 8px 0 10px;
    gap: 6px;
}

.soft-product-price del {
    font-size: 11px;
}

.soft-product-price strong {
    font-size: 16px;
    letter-spacing: -0.25px;
}

.soft-product-cart {
    height: 38px;
    border-radius: 12px;
    font-size: 11px;
    gap: 6px;
    box-shadow: 0 8px 18px rgba(31, 59, 32, 0.14);
}

.soft-product-cart i {
    font-size: 15px;
}

.brand-story-section {
    padding: 44px 0 50px;
}

.brand-story-card {
    min-height: 390px;
    padding: 42px 48px;
    border-radius: 30px;
    gap: 34px;
    box-shadow: 0 18px 46px rgba(31, 59, 32, 0.075);
}

.brand-story-content span {
    min-height: 30px;
    padding: 0 12px;
    margin-bottom: 14px;
    font-size: 11px;
    letter-spacing: 1px;
}

.brand-story-content h2 {
    font-size: clamp(31px, 3.25vw, 46px);
    letter-spacing: -1.4px;
    margin-bottom: 18px;
}

.brand-story-content p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 13px;
}

.brand-story-sign {
    margin-top: 22px;
}

.brand-story-sign strong {
    font-size: 16px;
}

.brand-story-sign small {
    font-size: 12px;
}

.brand-story-visual {
    min-height: 290px;
}

.brand-story-image {
    height: 270px;
    border-radius: 28px;
    border-width: 7px;
}

.brand-story-product {
    width: 158px;
    height: 158px;
    border-radius: 28px;
    border-width: 7px;
}

.footer-newsletter {
    padding: 28px 0 24px;
}

.footer-newsletter-inner {
    gap: 18px;
}

.footer-newsletter-content span {
    font-size: 11px;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.footer-newsletter-content h3 {
    font-size: clamp(21px, 1.7vw, 27px);
}

.footer-newsletter-form {
    border-radius: 16px;
}

.footer-newsletter-form input,
.footer-newsletter-form button {
    height: 54px;
}

.footer-newsletter-form input {
    font-size: 13px;
}

.footer-newsletter-form button {
    font-size: 14px;
}

.footer-social {
    gap: 10px;
}

.footer-social a {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    font-size: 18px;
}

.footer-main {
    padding: 38px 0 24px;
}

.footer-grid {
    gap: 28px;
    padding-bottom: 28px;
}

.footer-brand {
    max-width: 350px;
}

.footer-logo {
    min-width: 190px;
    min-height: 92px;
    padding: 16px 18px;
    margin-bottom: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.45);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.14);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer-logo img {
    width: 150px;
    max-height: 62px;
    object-fit: contain;
    filter: none;
}

.footer-brand p {
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 18px;
}

.footer-contact-list {
    gap: 10px;
}

.footer-contact-list a {
    font-size: 13px;
}

.footer-contact-list a i {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    font-size: 14px;
}

.footer-links-column h4,
.footer-info-box h4 {
    font-size: 17px;
    margin-bottom: 14px;
}

.footer-links-column ul {
    gap: 10px;
}

.footer-links-column a {
    font-size: 13.5px;
}

.footer-mini-cards {
    gap: 10px;
}

.footer-mini-card {
    padding: 12px;
    border-radius: 15px;
    gap: 10px;
}

.footer-mini-card i {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    font-size: 16px;
}

.footer-mini-card strong {
    font-size: 13.5px;
}

.footer-mini-card small {
    font-size: 11.5px;
}

.footer-bottom {
    padding-top: 18px;
}

.footer-bottom-left p {
    font-size: 12.5px;
}

.payment-badge {
    min-height: 34px;
    padding: 0 12px;
    font-size: 12px;
}

.floating-whatsapp {
    height: 52px;
    padding: 0 18px;
    border-radius: 16px;
    font-size: 14px;
    gap: 10px;
}

.floating-whatsapp i {
    font-size: 23px;
}

.cart-drawer {
    width: 400px;
}

.cart-drawer-head {
    padding: 21px 21px 16px;
}

.cart-drawer-head strong {
    font-size: 22px;
}

.cart-close {
    width: 42px;
    height: 42px;
    border-radius: 14px;
}

.cart-list {
    padding: 18px 21px;
    gap: 11px;
}

.cart-item {
    grid-template-columns: 82px 1fr;
    gap: 12px;
    padding: 11px;
    border-radius: 18px;
}

.cart-thumb {
    width: 82px;
    height: 82px;
    border-radius: 16px;
}

.cart-title h4 {
    font-size: 13.5px;
}

.cart-title p,
.cart-item-bottom span {
    font-size: 11.5px;
}

.cart-item-bottom strong {
    font-size: 15px;
}

.cart-totals {
    margin: auto 21px 0;
    padding: 15px;
    border-radius: 18px;
}

.cart-totals .grand-total strong {
    font-size: 21px;
}

.cart-buttons {
    padding: 14px 21px 21px;
}

.cart-checkout,
.cart-payment {
    height: 48px;
    border-radius: 15px;
    font-size: 13px;
}

@media (min-width: 901px) {
    .header-center {
        grid-template-columns: 165px minmax(420px, 1fr) auto;
        gap: 22px;
    }

    .brand-logo {
        transform: none;
    }

    .brand-logo img {
        width: 146px;
        max-height: 66px;
    }
}

@media (min-width: 1361px) {
    .header-center {
        grid-template-columns: 170px minmax(450px, 1fr) auto;
    }

    .brand-logo {
        transform: none;
    }
}

@media (max-width: 1360px) {
    .header-center {
        grid-template-columns: 150px minmax(320px, 1fr) auto;
        gap: 18px;
    }

    .brand-logo img {
        width: 138px;
    }

    .header-action {
        min-width: 50px;
        height: 46px;
        padding: 0 12px;
    }
}

@media (max-width: 1080px) {
    .header-center {
        grid-template-columns: 140px minmax(270px, 1fr) auto;
        gap: 15px;
    }

    .brand-logo img {
        width: 130px;
    }

    .header-search {
        height: 48px;
        grid-template-columns: 1fr 52px;
    }
}

@media (max-width: 900px) {
    .announcement-slider,
    .utility-bar,
    .category-nav {
        display: none;
    }

    .container {
        width: min(100% - 24px, 1380px);
    }

    .main-header {
        position: sticky;
        top: 0;
        z-index: 80;
        background: #ffffff;
        border-bottom: 1px solid #edf0e8;
        box-shadow: 0 10px 26px rgba(31, 59, 32, 0.06);
        overflow: visible;
    }

    .main-header .container {
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin: 0;
    }

    .header-center {
        width: 100%;
        min-height: 112px;
        height: auto;
        padding: 9px 10px 11px;
        display: grid;
        grid-template-columns: minmax(96px, auto) 1fr auto;
        grid-template-areas:
            "logo space actions"
            "search search search";
        align-items: center;
        gap: 9px;
    }

    .brand-logo {
        grid-area: logo;
        justify-self: start;
        align-self: center;
        width: 118px;
        height: 50px;
        min-height: 50px;
        padding: 0;
        margin: 0;
        overflow: visible;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        transform: none;
    }

    .brand-logo img {
        width: 116px;
        max-width: 116px;
        max-height: 50px;
        object-fit: contain;
        transform: none;
        margin: 0;
    }

    .header-actions {
        grid-area: actions;
        justify-self: end;
        align-self: center;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 11px;
        min-width: 0;
        max-width: none;
        padding: 0;
        overflow: visible;
    }

    .account-wrap {
        position: static;
        display: block;
        width: auto;
        height: auto;
    }

    .header-action,
    .cart-button {
        width: 24px;
        height: 24px;
        min-width: 24px;
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        transform: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: var(--dark-green);
    }

    .header-action:hover,
    .account-wrap.active .header-action {
        border-color: transparent;
        box-shadow: none;
        transform: none;
        background: transparent;
    }

    .header-action span,
    .header-action small {
        display: none;
    }

    .header-action i {
        color: #132c18;
        font-size: 20px;
        line-height: 1;
    }

    .header-action em {
        top: -9px;
        right: -9px;
        width: 18px;
        height: 18px;
        border-radius: 50%;
        background: var(--gold);
        color: #ffffff;
        border: 2px solid #ffffff;
        font-size: 9px;
        font-style: normal;
        font-weight: 900;
        display: grid;
        place-items: center;
    }

    .mobile-menu-button {
        position: static;
        display: grid;
        order: 20;
        width: 25px;
        height: 25px;
        min-width: 25px;
        padding: 0;
        border-radius: 0;
        background: transparent;
        color: var(--dark-green);
        place-items: center;
        font-size: 24px;
        box-shadow: none;
    }

    .mobile-menu-button:hover {
        background: transparent;
        color: var(--gold-dark);
    }

    .header-search {
        grid-area: search;
        width: 100%;
        height: 48px;
        display: grid;
        grid-template-columns: 48px 1fr;
        background: #fbfcf8;
        border: 1px solid #dfe8dc;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: none;
        margin: 0;
    }

    .header-search input {
        grid-column: 2;
        grid-row: 1;
        width: 100%;
        height: 100%;
        padding: 0 13px 0 0;
        border: 0;
        outline: 0;
        background: transparent;
        color: var(--text);
        font-size: 13px;
        font-weight: 700;
    }

    .header-search input::placeholder {
        color: #7f8979;
        opacity: 1;
    }

    .search-submit {
        grid-column: 1;
        grid-row: 1;
        width: 48px;
        height: 48px;
        background: transparent;
        color: var(--gold);
        font-size: 22px;
    }

    .search-submit:hover {
        background: transparent;
        color: var(--dark-green);
    }

    .account-menu {
        position: fixed;
        top: 62px;
        right: 10px;
        width: min(300px, calc(100% - 20px));
        z-index: 140;
    }

    .account-menu::before {
        right: 24px;
    }

    .cart-drawer {
        right: 0;
        width: min(400px, 100vw);
        max-width: 100vw;
        transform: translateX(110%);
        transition: transform 0.3s ease;
        overflow-x: hidden;
    }

    .cart-drawer.active {
        right: 0;
        transform: translateX(0);
    }

    .hero-banner-section {
        padding: 12px 0 6px;
    }

    .hero-slider {
        height: 235px;
        border-radius: 19px;
    }

    .hero-arrow {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }

    .service-grid {
        gap: 12px;
    }

    .service-card {
        min-height: 165px;
        padding: 20px 17px;
        border-radius: 20px;
    }

    .service-content h3 {
        font-size: 21px;
    }

    .service-content p {
        font-size: 15px;
    }

    .soft-product-image {
        height: 150px;
    }

    .brand-story-card {
        padding: 34px 28px;
        border-radius: 26px;
    }
}

@media (max-width: 760px) {
    .tab-products-section {
        padding: 20px 0 40px;
    }

    .tab-products-head h2 {
        font-size: 24px;
    }

    .product-tabs {
        display: flex;
        overflow-x: auto;
        gap: 7px;
        scrollbar-width: none;
    }

    .product-tabs::-webkit-scrollbar {
        display: none;
    }

    .product-tab {
        min-width: max-content;
        height: 40px;
        font-size: 12px;
        padding: 0 14px;
    }

    .soft-product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 9px;
    }

    .soft-product-card {
        padding: 7px;
        border-radius: 14px;
    }

    .soft-product-image {
        height: 132px;
        border-radius: 12px;
    }

    .soft-product-title {
        min-height: 36px;
        font-size: 11.5px;
    }

    .soft-product-price strong {
        font-size: 14.5px;
    }

    .soft-product-cart {
        height: 36px;
        font-size: 10.5px;
    }

    .brand-story-section {
        padding: 30px 0 38px;
    }

    .brand-story-card {
        padding: 26px 20px;
        border-radius: 22px;
    }

    .brand-story-content h2 {
        font-size: 29px;
    }

    .brand-story-content p {
        font-size: 13px;
    }

    .footer-logo {
        min-width: 170px;
        min-height: 82px;
        padding: 14px 16px;
        border-radius: 19px;
    }

    .footer-logo img {
        width: 136px;
        max-height: 56px;
    }

    .footer-main {
        padding: 32px 0 102px;
    }
}

@media (max-width: 520px) {
    .container {
        width: min(100% - 22px, 1380px);
    }

    .header-center {
        min-height: 104px;
        padding: 8px 9px 10px;
        grid-template-columns: 102px 1fr auto;
        gap: 8px;
    }

    .brand-logo {
        width: 102px;
        height: 46px;
        min-height: 46px;
    }

    .brand-logo img {
        width: 96px;
        max-width: 96px;
        max-height: 46px;
    }

    .header-actions {
        height: 42px;
        gap: 10px;
    }

    .header-action,
    .cart-button {
        width: 22px;
        height: 22px;
        min-width: 22px;
    }

    .header-action i {
        font-size: 19px;
    }

    .mobile-menu-button {
        width: 24px;
        height: 24px;
        min-width: 24px;
        font-size: 23px;
    }

    .header-search {
        height: 46px;
        grid-template-columns: 46px 1fr;
        border-radius: 14px;
    }

    .search-submit {
        width: 46px;
        height: 46px;
        font-size: 21px;
    }

    .header-search input {
        font-size: 12.5px;
        padding-right: 12px;
    }

    .hero-slider {
        height: 190px;
        border-radius: 16px;
    }

    .hero-arrow {
        display: none;
    }

    .service-card {
        padding: 18px 15px;
    }

    .service-icon {
        width: 52px;
        height: 52px;
        border-radius: 15px;
    }

    .service-icon i {
        font-size: 23px;
    }

    .service-content h3 {
        font-size: 20px;
    }

    .service-content p {
        font-size: 15px;
    }

    .soft-product-grid {
        gap: 8px;
    }

    .soft-product-image {
        height: 126px;
    }

    .soft-product-fav {
        width: 28px;
        height: 28px;
        font-size: 13px;
    }

    .soft-product-badge {
        min-height: 22px;
        font-size: 9px;
    }

    .brand-story-image {
        height: 205px;
    }

    .brand-story-product {
        width: 104px;
        height: 104px;
    }

    .floating-whatsapp {
        height: 50px;
        font-size: 13px;
    }
}

@media (max-width: 390px) {
    .header-center {
        grid-template-columns: 92px 1fr auto;
    }

    .brand-logo {
        width: 92px;
    }

    .brand-logo img {
        width: 88px;
        max-width: 88px;
    }

    .header-actions {
        gap: 9px;
    }

    .header-action,
    .cart-button {
        width: 21px;
        height: 21px;
        min-width: 21px;
    }

    .header-action i {
        font-size: 18px;
    }

    .mobile-menu-button {
        width: 22px;
        height: 22px;
        min-width: 22px;
        font-size: 22px;
    }

    .soft-product-image {
        height: 118px;
    }

    .soft-product-title {
        font-size: 11px;
    }

    .soft-product-price strong {
        font-size: 13.5px;
    }
}

/* Hero Yan Haftanın Ürünleri - Final 1500x2000 Oran */

.hero-banner-section {
    padding: 18px 0 12px;
}

.hero-showcase {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 318px;
    gap: 18px;
    align-items: flex-start;
}

.hero-showcase .hero-slider {
    height: clamp(300px, 30vw, 480px);
    min-height: 430px;
    border-radius: 28px;
}

.weekly-products {
    width: 100%;
    height: auto;
    min-height: 0;
    background: #ffffff;
    border: 1px solid rgba(31, 59, 32, 0.10);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 14px 34px rgba(31, 59, 32, 0.09);
    display: flex;
    flex-direction: column;
}

.weekly-products-head {
    height: 64px;
    min-height: 64px;
    padding: 0 16px;
    background: var(--dark-green);
    color: #ffffff;
    display: grid;
    grid-template-columns: 38px 1fr 38px;
    align-items: center;
    gap: 8px;
}

.weekly-products-head h3 {
    color: #ffffff;
    font-size: 17px;
    line-height: 1.2;
    font-weight: 900;
    text-align: center;
    letter-spacing: -0.2px;
}

.weekly-arrow {
    width: 38px;
    height: 38px;
    border-radius: 13px;
    color: var(--gold);
    display: grid;
    place-items: center;
    font-size: 24px;
    transition: 0.22s ease;
}

.weekly-arrow:hover {
    background: rgba(255, 255, 255, 0.10);
    color: #ffffff;
}

.weekly-products-body {
    position: relative;
    height: auto;
    min-height: 0;
    padding: 24px 22px 28px;
    background:
        radial-gradient(circle at 50% 4%, rgba(201, 154, 46, 0.08), transparent 32%),
        #ffffff;
}

.weekly-product-slide {
    position: relative;
    inset: auto;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: opacity 0.28s ease;
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.weekly-product-slide.active {
    display: flex;
    opacity: 1;
    visibility: visible;
    transform: none;
}

.weekly-product-image,
.weekly-product-image-ratio {
    width: 100%;
    aspect-ratio: 3 / 4;
    height: auto;
    margin: 0 0 18px;
    border-radius: 22px;
    background: #fffaf2;
    display: block;
    overflow: hidden;
    flex: 0 0 auto;
}

.weekly-product-image img,
.weekly-product-image-ratio img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: #fffaf2;
    display: block;
    transition: 0.28s ease;
}

.weekly-product-slide:hover .weekly-product-image img,
.weekly-product-slide:hover .weekly-product-image-ratio img {
    transform: scale(1.015);
}

.weekly-product-title {
    width: 100%;
    min-height: auto;
    color: var(--text);
    font-size: 16px;
    line-height: 1.38;
    font-weight: 850;
    display: block;
    text-align: center;
    margin: 0 0 14px;
    transition: 0.22s ease;
}

.weekly-product-title:hover {
    color: var(--gold-dark);
}

.weekly-product-price {
    width: 100%;
    min-height: auto;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin: 0 0 20px;
}

.weekly-product-price del {
    color: #9d9d9d;
    font-size: 14px;
    font-weight: 700;
}

.weekly-product-price strong {
    color: #070807;
    font-size: 28px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.5px;
}

.weekly-product-cart-form {
    width: 100%;
    display: flex;
    justify-content: center;
}

.weekly-product-cart {
    width: min(230px, 100%);
    min-width: 170px;
    height: 54px;
    margin: 0 auto;
    padding: 0 22px;
    border: 0;
    border-radius: 999px;
    background: #173f20;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-size: 15px;
    font-weight: 900;
    line-height: 1;
    box-shadow: 0 14px 28px rgba(23, 63, 32, 0.18);
    cursor: pointer;
    transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.weekly-product-cart i {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    line-height: 1;
}

.weekly-product-cart span {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.weekly-product-cart:hover {
    background: #0f3218;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 18px 34px rgba(23, 63, 32, 0.24);
}

.weekly-product-cart:disabled,
.weekly-product-cart.is-loading {
    opacity: 0.75;
    cursor: not-allowed;
    transform: none;
}

@media (max-width: 1280px) {
    .hero-showcase {
        grid-template-columns: minmax(0, 1fr) 300px;
        gap: 15px;
    }

    .hero-showcase .hero-slider {
        min-height: 405px;
    }

    .weekly-products-head h3 {
        font-size: 15px;
    }

    .weekly-products-body {
        padding: 20px 18px 24px;
    }

    .weekly-product-title {
        font-size: 14px;
    }

    .weekly-product-price strong {
        font-size: 24px;
    }

    .weekly-product-cart {
        height: 50px;
        font-size: 13px;
    }
}

@media (max-width: 900px) {
    .hero-showcase {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .hero-showcase .hero-slider {
        height: 250px;
        min-height: 250px;
        border-radius: 20px;
    }

    .weekly-products {
        border-radius: 22px;
    }

    .weekly-products-head {
        height: 56px;
        min-height: 56px;
        grid-template-columns: 34px 1fr 34px;
    }

    .weekly-products-head h3 {
        font-size: 15px;
    }

    .weekly-arrow {
        width: 34px;
        height: 34px;
        font-size: 21px;
    }

    .weekly-products-body {
        padding: 18px;
    }

    .weekly-product-image,
    .weekly-product-image-ratio {
        max-width: 360px;
        margin-left: auto;
        margin-right: auto;
        border-radius: 20px;
    }

    .weekly-product-title {
        font-size: 14px;
    }

    .weekly-product-price strong {
        font-size: 24px;
    }

    .weekly-product-cart {
        height: 50px;
    }
}

@media (max-width: 520px) {
    .hero-showcase .hero-slider {
        height: 205px;
        min-height: 205px;
        border-radius: 16px;
    }

    .weekly-products-body {
        padding: 16px;
    }

    .weekly-product-image,
    .weekly-product-image-ratio {
        max-width: 300px;
        border-radius: 18px;
    }

    .weekly-product-title {
        font-size: 13px;
        line-height: 1.35;
    }

    .weekly-product-price del {
        font-size: 12px;
    }

    .weekly-product-price strong {
        font-size: 22px;
    }

    .weekly-product-cart {
        width: min(220px, 100%);
        height: 48px;
        font-size: 12px;
    }
}

.cart-empty-box {
    min-height: 360px;
    padding: 34px 24px;
    border: 1px dashed #e8deca;
    border-radius: 22px;
    background: #fffdf8;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.cart-empty-icon {
    width: 72px;
    height: 72px;
    margin-bottom: 16px;
    border-radius: 24px;
    background: rgba(201, 154, 46, 0.14);
    color: #9b7218;
    display: grid;
    place-items: center;
    font-size: 30px;
}

.cart-empty-box h4 {
    margin: 0;
    color: #1f3b20;
    font-size: 22px;
    font-weight: 900;
}

.cart-empty-box p {
    max-width: 320px;
    margin: 9px 0 0;
    color: #66705f;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.6;
}

.cart-empty-box a {
    min-height: 42px;
    margin-top: 18px;
    padding: 0 18px;
    border-radius: 999px;
    background: #1f3b20;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    font-size: 13px;
    font-weight: 900;
}

.cart-empty-box a:hover {
    background: #c99a2e;
    color: #ffffff;
}

.cart-title h4 a {
    color: inherit;
    text-decoration: none;
}

.cart-title form {
    margin: 0;
}

.cart-title button {
    border: 0;
    background: transparent;
    color: #9b7218;
    cursor: pointer;
}

.cart-title button:hover {
    color: #1f3b20;
}

.cart-more-info {
    padding: 12px 14px;
    border-radius: 16px;
    background: #fbf7ee;
    border: 1px solid #e8deca;
    color: #66705f;
    font-size: 13px;
    font-weight: 800;
    text-align: center;
}
.weekly-product-cart {
    width: auto;
    min-width: 170px;
    height: 48px;
    margin: 18px auto 0;
    padding: 0 22px;
    border: 0;
    border-radius: 999px;
    background: #173f20;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    box-shadow: 0 14px 28px rgba(23, 63, 32, 0.18);
    cursor: pointer;
    transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.weekly-product-cart i {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    line-height: 1;
}

.weekly-product-cart span {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.weekly-product-cart:hover {
    background: #0f3218;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 18px 34px rgba(23, 63, 32, 0.24);
}

.weekly-product-cart:disabled,
.weekly-product-cart.is-loading {
    opacity: 0.75;
    cursor: not-allowed;
    transform: none;
}

.weekly-product-cart-form {
    width: 100%;
    display: flex;
    justify-content: center;
}

@media (max-width: 991px) {
    .weekly-product-cart {
        min-width: 160px;
        height: 46px;
        font-size: 13.5px;
    }
}

/* =========================================================
   Barut Zeytin - 1500x2000 Ürün Görsel Oranı Final
   Oran: 3 / 4
========================================================= */

.soft-product-card .soft-product-image,
.product-card .product-image {
    width: 100% !important;
    aspect-ratio: 3 / 4 !important;
    height: auto !important;
    min-height: unset !important;
    max-height: none !important;
    padding: 0 !important;
    border-radius: 18px !important;
    overflow: hidden !important;
    display: block !important;
    background: #fffaf2 !important;
}

.soft-product-card .soft-product-image img,
.product-card .product-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center !important;
    border-radius: 18px !important;
    display: block !important;
    background: #fffaf2 !important;
    transform: none !important;
}

.soft-product-card:hover .soft-product-image img,
.product-card:hover .product-image img {
    transform: scale(1.015) !important;
}

.soft-product-card,
.product-card {
    height: auto !important;
}

@media (max-width: 767px) {
    .soft-product-card .soft-product-image,
    .product-card .product-image {
        aspect-ratio: 3 / 4 !important;
        border-radius: 16px !important;
    }

    .soft-product-card .soft-product-image img,
    .product-card .product-image img {
        border-radius: 16px !important;
    }
}

/* =========================================================
   BARUT FINAL - Hero Slider ve Haftanın Ürünü Eşit Yükseklik
========================================================= */

@media (min-width: 901px) {
    .hero-banner-section {
        padding: 18px 0 18px !important;
        overflow: visible !important;
    }

    .hero-banner-section .container {
        overflow: visible !important;
    }

    .hero-showcase {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) 318px !important;
        gap: 18px !important;
        align-items: stretch !important;
        overflow: visible !important;
    }

    .hero-showcase .hero-slider {
        width: 100% !important;
        height: auto !important;
        min-height: 660px !important;
        align-self: stretch !important;
        border-radius: 28px !important;
    }

    .hero-showcase .hero-slide,
    .hero-showcase .hero-slide img {
        height: 100% !important;
    }

    .hero-showcase .hero-slide img {
        width: 100% !important;
        object-fit: cover !important;
        object-position: center !important;
    }

    .hero-showcase .weekly-products {
        height: auto !important;
        min-height: 660px !important;
        max-height: none !important;
        align-self: stretch !important;
        overflow: hidden !important;
        border-radius: 28px !important;
        display: flex !important;
        flex-direction: column !important;
    }

    .hero-showcase .weekly-products-head {
        height: 64px !important;
        min-height: 64px !important;
        flex: 0 0 auto !important;
    }

    .hero-showcase .weekly-products-body {
        position: relative !important;
        flex: 1 1 auto !important;
        min-height: 0 !important;
        height: auto !important;
        padding: 22px !important;
        overflow: hidden !important;
    }

    .hero-showcase .weekly-product-slide {
        position: absolute !important;
        inset: 22px !important;
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
        overflow: visible !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }

    .hero-showcase .weekly-product-slide:not(.active) {
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }

    .hero-showcase .weekly-product-slide.active {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transform: translateX(0) !important;
    }

    .hero-showcase .weekly-product-image,
    .hero-showcase .weekly-product-image-ratio {
        width: 100% !important;
        aspect-ratio: 3 / 4 !important;
        height: auto !important;
        min-height: unset !important;
        max-height: none !important;
        margin: 0 0 18px !important;
        padding: 0 !important;
        border-radius: 22px !important;
        overflow: hidden !important;
        background: #fffaf2 !important;
        flex: 0 0 auto !important;
        display: block !important;
    }

    .hero-showcase .weekly-product-image img,
    .hero-showcase .weekly-product-image-ratio img {
        width: 100% !important;
        height: 100% !important;
        min-width: 100% !important;
        min-height: 100% !important;
        max-width: none !important;
        max-height: none !important;
        object-fit: contain !important;
        object-position: center !important;
        border-radius: 22px !important;
        background: #fffaf2 !important;
        display: block !important;
    }

    .hero-showcase .weekly-product-title {
        width: 100% !important;
        min-height: 46px !important;
        margin: 0 0 14px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        color: var(--text) !important;
        font-size: 14px !important;
        line-height: 1.35 !important;
        font-weight: 850 !important;
        text-align: center !important;
        overflow: visible !important;
        flex: 0 0 auto !important;
    }

    .hero-showcase .weekly-product-price {
        width: 100% !important;
        min-height: 36px !important;
        margin: 0 0 18px !important;
        display: flex !important;
        align-items: baseline !important;
        justify-content: center !important;
        gap: 8px !important;
        flex-wrap: wrap !important;
        overflow: visible !important;
        flex: 0 0 auto !important;
    }

    .hero-showcase .weekly-product-price strong {
        font-size: 24px !important;
        line-height: 1 !important;
        font-weight: 900 !important;
    }

    .hero-showcase .weekly-product-cart-form {
        width: 100% !important;
        margin: auto 0 0 !important;
        display: flex !important;
        justify-content: center !important;
        flex: 0 0 auto !important;
    }

    .hero-showcase .weekly-product-cart {
        width: min(100%, 212px) !important;
        min-width: 170px !important;
        height: 50px !important;
        min-height: 50px !important;
        margin: 0 auto !important;
        padding: 0 22px !important;
        border-radius: 999px !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 9px !important;
        background: var(--dark-green) !important;
        color: #ffffff !important;
        font-size: 13px !important;
        font-weight: 900 !important;
        line-height: 1 !important;
        overflow: visible !important;
        box-shadow: 0 12px 24px rgba(31, 59, 32, 0.22) !important;
    }
}

@media (min-width: 901px) and (max-width: 1280px) {
    .hero-showcase {
        grid-template-columns: minmax(0, 1fr) 300px !important;
        gap: 15px !important;
    }

    .hero-showcase .hero-slider,
    .hero-showcase .weekly-products {
        min-height: 625px !important;
    }
}

@media (min-width: 901px) and (max-width: 1080px) {
    .hero-showcase {
        grid-template-columns: minmax(0, 1fr) 286px !important;
        gap: 14px !important;
    }

    .hero-showcase .hero-slider,
    .hero-showcase .weekly-products {
        min-height: 600px !important;
    }

    .hero-showcase .weekly-products-head {
        height: 58px !important;
        min-height: 58px !important;
    }

    .hero-showcase .weekly-products-body {
        padding: 18px !important;
    }

    .hero-showcase .weekly-product-slide {
        inset: 18px !important;
    }

    .hero-showcase .weekly-product-title {
        font-size: 13px !important;
    }
}

@media (max-width: 900px) {
    .hero-showcase {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
        align-items: stretch !important;
    }

    .hero-showcase .hero-slider {
        height: 250px !important;
        min-height: 250px !important;
        border-radius: 20px !important;
    }

    .hero-showcase .weekly-products {
        min-height: 214px !important;
        height: auto !important;
        border-radius: 20px !important;
    }

    .hero-showcase .weekly-products-body {
        min-height: 162px !important;
        height: auto !important;
        padding: 14px !important;
    }

    .hero-showcase .weekly-product-slide {
        position: absolute !important;
        inset: 14px !important;
        display: grid !important;
        grid-template-columns: 118px 1fr !important;
        grid-template-areas:
            "image title"
            "image price"
            "image button" !important;
        align-items: center !important;
        column-gap: 14px !important;
        text-align: left !important;
    }

    .hero-showcase .weekly-product-image,
    .hero-showcase .weekly-product-image-ratio {
        grid-area: image !important;
        width: 118px !important;
        height: 118px !important;
        aspect-ratio: unset !important;
        margin: 0 !important;
        border-radius: 16px !important;
    }

    .hero-showcase .weekly-product-title {
        grid-area: title !important;
        min-height: auto !important;
        justify-content: flex-start !important;
        text-align: left !important;
        font-size: 13px !important;
        margin: 0 0 6px !important;
    }

    .hero-showcase .weekly-product-price {
        grid-area: price !important;
        justify-content: flex-start !important;
        margin: 0 0 10px !important;
        min-height: auto !important;
    }

    .hero-showcase .weekly-product-cart-form {
        grid-area: button !important;
        justify-content: flex-start !important;
        margin: 0 !important;
    }

    .hero-showcase .weekly-product-cart {
        width: 160px !important;
        height: 40px !important;
        min-height: 40px !important;
        margin: 0 !important;
        border-radius: 13px !important;
        font-size: 11.5px !important;
    }
}

/* =========================================================
   Barut - Haftanın Ürünü Mobil Düzen Final Fix
   Mobilde yazı/fiyat/buton üst üste binmesini engeller
========================================================= */

.hero-showcase .weekly-product-slide:not(.active) {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

.hero-showcase .weekly-product-slide.active {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

@media (max-width: 900px) {
    .hero-showcase .weekly-products {
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
        overflow: hidden !important;
        border-radius: 20px !important;
    }

    .hero-showcase .weekly-products-body {
        position: relative !important;
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
        padding: 18px !important;
        overflow: visible !important;
    }

    .hero-showcase .weekly-product-slide {
        position: relative !important;
        inset: auto !important;
        transform: none !important;
    }

    .hero-showcase .weekly-product-slide:not(.active) {
        display: none !important;
    }

    .hero-showcase .weekly-product-slide.active {
        display: grid !important;
        grid-template-columns: 126px minmax(0, 1fr) !important;
        grid-template-areas:
            "image title"
            "image price"
            "image button" !important;
        column-gap: 16px !important;
        row-gap: 8px !important;
        align-items: center !important;
        width: 100% !important;
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
        overflow: visible !important;
        text-align: left !important;
    }

    .hero-showcase .weekly-product-image,
    .hero-showcase .weekly-product-image-ratio {
        grid-area: image !important;
        width: 126px !important;
        height: auto !important;
        aspect-ratio: 3 / 4 !important;
        min-height: 0 !important;
        max-height: none !important;
        margin: 0 !important;
        padding: 0 !important;
        border-radius: 16px !important;
        overflow: hidden !important;
        background: #fffaf2 !important;
        display: block !important;
    }

    .hero-showcase .weekly-product-image img,
    .hero-showcase .weekly-product-image-ratio img {
        width: 100% !important;
        height: 100% !important;
        object-fit: contain !important;
        object-position: center !important;
        border-radius: 16px !important;
        background: #fffaf2 !important;
        transform: none !important;
    }

    .hero-showcase .weekly-product-title {
        grid-area: title !important;
        display: block !important;
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
        min-height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        color: var(--text) !important;
        font-size: 13px !important;
        line-height: 1.35 !important;
        font-weight: 850 !important;
        text-align: left !important;
        white-space: normal !important;
        overflow: visible !important;
        overflow-wrap: anywhere !important;
        word-break: normal !important;
    }

    .hero-showcase .weekly-product-price {
        grid-area: price !important;
        display: flex !important;
        width: 100% !important;
        min-width: 0 !important;
        min-height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        align-items: baseline !important;
        justify-content: flex-start !important;
        gap: 7px !important;
        flex-wrap: wrap !important;
        overflow: visible !important;
    }

    .hero-showcase .weekly-product-price del {
        font-size: 11.5px !important;
        line-height: 1 !important;
    }

    .hero-showcase .weekly-product-price strong {
        font-size: 20px !important;
        line-height: 1 !important;
        letter-spacing: -0.35px !important;
    }

    .hero-showcase .weekly-product-cart-form {
        grid-area: button !important;
        display: flex !important;
        width: 100% !important;
        min-width: 0 !important;
        margin: 0 !important;
        justify-content: flex-start !important;
    }

    .hero-showcase .weekly-product-cart {
        width: auto !important;
        min-width: 158px !important;
        height: 42px !important;
        min-height: 42px !important;
        margin: 0 !important;
        padding: 0 18px !important;
        border-radius: 999px !important;
        font-size: 12px !important;
        line-height: 1 !important;
        white-space: nowrap !important;
    }

    .hero-showcase .weekly-product-cart i {
        width: 26px !important;
        height: 26px !important;
        min-width: 26px !important;
        font-size: 14px !important;
    }
}

@media (max-width: 520px) {
    .hero-showcase .weekly-products-body {
        padding: 14px !important;
    }

    .hero-showcase .weekly-product-slide.active {
        grid-template-columns: 106px minmax(0, 1fr) !important;
        column-gap: 12px !important;
        row-gap: 7px !important;
    }

    .hero-showcase .weekly-product-image,
    .hero-showcase .weekly-product-image-ratio {
        width: 106px !important;
    }

    .hero-showcase .weekly-product-title {
        font-size: 12.2px !important;
        line-height: 1.34 !important;
    }

    .hero-showcase .weekly-product-price strong {
        font-size: 17px !important;
    }

    .hero-showcase .weekly-product-cart {
        min-width: 142px !important;
        height: 38px !important;
        min-height: 38px !important;
        padding: 0 14px !important;
        font-size: 10.5px !important;
    }

    .hero-showcase .weekly-product-cart i {
        width: 24px !important;
        height: 24px !important;
        min-width: 24px !important;
        font-size: 13px !important;
    }
}

@media (max-width: 390px) {
    .hero-showcase .weekly-product-slide.active {
        grid-template-columns: 94px minmax(0, 1fr) !important;
        column-gap: 10px !important;
    }

    .hero-showcase .weekly-product-image,
    .hero-showcase .weekly-product-image-ratio {
        width: 94px !important;
    }

    .hero-showcase .weekly-product-cart {
        min-width: 132px !important;
    }
}
