:root {
    color-scheme: light;
    --sf-mobile-bottom-nav-offset: 10px;
    --sf-mobile-bottom-nav-clearance: 118px;
    --sf-mobile-bottom-nav-max-width: 392px;
    --store-button-height: 48px;
    --store-button-padding-x: 22px;
    --store-button-radius: 999px;
    --store-button-font-size: .9rem;
    --store-button-font-weight: 600;
    --store-button-letter-spacing: .02em;
    --store-button-shadow: 0 14px 30px rgba(35, 26, 20, .12);
}

html,
body {
    margin: 0;
    padding: 0;
}

.sf-home-banner-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
    margin-top: 0;
    padding-top: 0;
    margin-bottom: 0;
}

.sf-home-banner-card {
    position: relative;
    min-width: 0;
}

.sf-home-banner-card__close {
    display: none !important;
    pointer-events: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

.sf-home-banner-card__media {
    position: relative;
    display: block;
    aspect-ratio: 3 / 2;
    border-radius: 26px;
    overflow: hidden;
    background: #f5efe7;
}

.sf-home-banner-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sf-home-banner-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(20, 16, 12, 0.04) 0%, rgba(20, 16, 12, 0.34) 100%);
}

.sf-home-banner-card__content {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    color: #fff;
    text-shadow: 0 8px 24px rgba(17, 24, 39, 0.2);
}

.sf-home-banner-card__content strong {
    font-size: clamp(1.28rem, 1.55vw, 1.72rem);
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 1.08;
}

.sf-home-banner-card__content em {
    font-style: normal;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    opacity: 0.88;
}

.sf-home-banner-card__button {
    display: inline-flex;
    align-self: flex-start;
    margin-top: 6px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: #1f1712;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

@media (max-width: 760px) {
    .sf-home-banner-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-top: 0;
        padding-top: 0;
        margin-bottom: 0;
    }

    .sf-home-banner-card__content {
        left: 16px;
        right: 16px;
        bottom: 16px;
        gap: 5px;
    }

    .sf-home-banner-card__content strong {
        font-size: 1.14rem;
        letter-spacing: 0.04em;
    }

    .sf-home-banner-card__content em {
        font-size: 0.64rem;
    }

    .sf-home-banner-card__button {
        font-size: 0.64rem;
        padding: 9px 14px;
    }
}

/* Refined mobile navigation: full-screen backdrop with a calm, structured panel. */
@media (max-width: 920px) {
    body:has(.sf-mobile-menu.is-open) {
        overflow: hidden;
    }

    .sf-mobile-menu-toggle {
        position: relative;
        z-index: 220;
        border-radius: 12px;
        transition: background .2s ease, transform .2s ease;
    }

    body:has(.sf-mobile-menu.is-open) .sf-mobile-menu-toggle {
        background: rgba(255, 255, 255, .86);
        box-shadow: 0 8px 20px rgba(23, 18, 15, .08);
    }

    .sf-mobile-menu {
        position: fixed !important;
        inset: 0 !important;
        z-index: 200 !important;
        display: flex !important;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        width: 100vw !important;
        height: 100dvh;
        max-height: 100dvh;
        gap: 0 !important;
        margin: 0 !important;
        padding: 86px 16px 24px !important;
        overflow-y: auto;
        background: rgba(20, 31, 29, .46) !important;
        backdrop-filter: blur(9px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: none !important;
        transition: opacity .24s ease, visibility .24s ease;
    }

    .sf-mobile-menu.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .sf-mobile-menu__links,
    .sf-mobile-menu__actions {
        position: relative;
        z-index: 1;
        width: min(100%, 380px);
        box-sizing: border-box;
        background: rgba(255, 253, 249, .98);
        box-shadow: 0 22px 48px rgba(23, 18, 15, .16);
    }

    .sf-mobile-menu__links {
        counter-reset: mobile-menu-item;
        gap: 0 !important;
        padding: 23px 22px 10px;
        border-radius: 24px 24px 0 0;
    }

    .sf-mobile-menu__links::before {
        display: block;
        margin-bottom: 14px;
        content: 'MENÜ';
        color: #8d8174;
        font-family: var(--store-font-menu);
        font-size: .64rem;
        font-weight: 800;
        letter-spacing: .18em;
    }

    .sf-mobile-menu__links a {
        counter-increment: mobile-menu-item;
        display: flex;
        align-items: center;
        min-height: 46px;
        padding: 0;
        border-bottom: 1px solid rgba(72, 48, 30, .1);
        color: #2c2925;
        font-size: .78rem;
        font-weight: 600;
        letter-spacing: .09em;
        line-height: 1.2;
        text-decoration: none;
        transition: color .18s ease, padding-left .18s ease;
    }

    .sf-mobile-menu__links a::before {
        width: 28px;
        margin-right: 8px;
        content: counter(mobile-menu-item, decimal-leading-zero);
        color: #b1a69b;
        font-size: .62rem;
        font-weight: 700;
        letter-spacing: .04em;
    }

    .sf-mobile-menu__links a:last-child {
        border-bottom: 0;
    }

    .sf-mobile-menu__links a:hover,
    .sf-mobile-menu__links a:focus-visible {
        padding-left: 5px;
        color: #11884d;
    }

    .sf-mobile-menu__actions {
        display: grid;
        gap: 9px;
        padding: 12px 22px 22px;
        border-radius: 0 0 24px 24px;
    }

    .sf-mobile-menu__actions::before {
        margin: 0 0 2px;
        content: 'HIZLI ERİŞİM';
        color: #8d8174;
        font-family: var(--store-font-menu);
        font-size: .62rem;
        font-weight: 800;
        letter-spacing: .15em;
    }

    .sf-mobile-action {
        min-height: 48px;
        padding: 0 13px;
        border: 1px solid rgba(72, 48, 30, .1);
        border-radius: 14px;
        background: #f7faf8;
        color: #2c2925;
        font-size: .82rem;
        font-weight: 700;
        transition: border-color .18s ease, background .18s ease, transform .18s ease;
    }

    .sf-mobile-action:hover,
    .sf-mobile-action:focus-visible {
        border-color: rgba(17, 150, 111, .3);
        background: #edf8f1;
        transform: translateY(-1px);
    }

    .sf-mobile-action img {
        flex: 0 0 28px;
        width: 28px;
        height: 28px;
    }
}

.sf-topbar {
    position: relative;
    z-index: 22;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    background: rgba(10, 10, 10, .95);
}

.sf-topbar__viewport {
    width: 100%;
    overflow: hidden;
}

.sf-topbar__track {
    display: flex;
    width: max-content;
    animation: sf-topbar-marquee 32s linear infinite;
    will-change: transform;
}

.sf-topbar__group {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-inline-end: 20px;
}

.sf-topbar__item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 30px;
    white-space: nowrap;
    color: rgba(255, 255, 255, .96);
}

.sf-topbar__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 13px;
    height: 13px;
    color: rgba(255, 255, 255, .88);
    flex: 0 0 13px;
}

.sf-topbar__icon svg {
    width: 13px;
    height: 13px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.sf-topbar__text {
    font-family: var(--store-font-menu);
    font-size: .61rem;
    font-weight: 500;
    letter-spacing: .13em;
    text-transform: uppercase;
}

@keyframes sf-topbar-marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-25%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .sf-topbar__track {
        animation-duration: 0.01ms;
        animation-iteration-count: 1;
    }

    .sf-hero__slide,
    .sf-hero__media img,
    .sf-hero__media video,
    .sf-hero__content > * {
        transition-duration: 0.01ms !important;
        transition-delay: 0ms !important;
        animation-duration: 0.01ms !important;
    }
}

.sf-footer--rich {
    margin-top: 48px;
    border-top: 1px solid color-mix(in srgb, var(--store-border) 88%, transparent);
    background: linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(250, 248, 244, .98));
}

.sf-footer__socials {
    border-bottom: 1px solid color-mix(in srgb, var(--store-border) 82%, transparent);
    background: #f5f5f5;
}

.sf-footer__socials-inner {
    display: flex;
    justify-content: center;
    gap: 14px;
    padding: 18px 0;
}

.sf-footer__social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, #f10f84, #d60067);
    box-shadow: 0 14px 24px rgba(241, 15, 132, .18);
}

.sf-footer__social-link svg {
    width: 18px;
    height: 18px;
}

.sf-footer__inner--columns {
    display: grid;
    grid-template-columns: minmax(220px, 280px) minmax(0, 1fr) !important;
    align-items: start;
    gap: 28px;
    padding: 22px 0 16px;
}

.sf-footer__brand {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-width: 0;
    padding-top: 4px;
}

.sf-footer__links {
    display: flex;
    justify-content: flex-end;
    gap: 28px;
    flex-wrap: wrap;
    align-items: start;
    width: 100%;
    min-width: 0;
}

.sf-footer__links.is-empty {
    display: none;
}

.sf-footer__group {
    display: grid;
    align-content: start;
    gap: 5px;
    padding-left: 0;
    border-left: 0;
    min-width: 0;
    width: min(180px, 100%);
}

.sf-footer__title {
    position: static;
    padding-bottom: 0;
    margin: 0 0 4px;
    font-size: .74rem;
    font-weight: 700;
    color: var(--store-text);
    letter-spacing: .14em;
    text-transform: uppercase;
}

.sf-footer__title::after {
    content: none;
}

.sf-footer__group a {
    display: block;
    position: static;
    padding-left: 0;
    font-size: .76rem;
    line-height: 1.25;
    text-decoration: none;
    color: color-mix(in srgb, var(--store-text) 76%, transparent);
}

.sf-footer__group a::before {
    content: none;
}

.sf-footer__group a:hover {
    color: var(--store-text);
}

.sf-footer__bottom {
    border-top: 1px solid color-mix(in srgb, var(--store-border) 78%, transparent);
    background: #efefef;
}

.sf-footer__bottom-inner {
    display: grid;
    grid-template-columns: minmax(120px, 1fr) auto minmax(120px, 1fr);
    align-items: center;
    gap: 22px;
    padding: 14px 0 18px;
}

.sf-footer__bottom-inner p {
    margin: 0;
    color: var(--store-muted);
    font-size: .72rem;
}

.sf-footer__credit {
    display: inline-flex;
    align-items: center;
    justify-self: start;
    text-decoration: none;
    opacity: .9;
    transition: opacity .2s ease;
}

.sf-footer__credit:hover {
    opacity: 1;
}

.sf-footer__credit img {
    display: block;
    width: auto;
    max-width: 120px;
    height: auto;
    object-fit: contain;
}

.sf-footer__brand-note {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    color: color-mix(in srgb, var(--store-text) 62%, transparent);
    font-size: .68rem;
    line-height: 1.2;
    text-align: center;
    white-space: nowrap;
}

.sf-footer__brand-note a {
    display: inline-flex;
    align-items: center;
}

.sf-footer__brand-note img {
    display: block;
    width: auto;
    max-width: 58px;
    height: auto;
    object-fit: contain;
}

.sf-footer__trust {
    display: inline-flex;
    align-items: center;
    justify-self: end;
}

.sf-footer__trust img {
    display: block;
    width: auto;
    max-width: 184px;
    height: auto;
    object-fit: contain;
}

.sf-cookie-banner {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 70;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 16px;
    padding: 16px 18px;
    border: 1px solid color-mix(in srgb, var(--store-border) 82%, transparent);
    border-radius: 20px;
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 24px 44px rgba(17, 24, 39, .12);
    transition: opacity .22s ease, transform .22s ease;
}

.sf-cookie-banner[hidden] {
    display: none !important;
}

.sf-cookie-banner.is-hidden {
    opacity: 0;
    transform: translateY(10px);
}

.sf-cookie-banner__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    color: #f59e0b;
    background: #fff4d6;
}

.sf-cookie-banner__icon svg {
    width: 20px;
    height: 20px;
}

.sf-cookie-banner__content p {
    margin: 0;
    color: var(--store-muted);
    font-size: .98rem;
}

.sf-cookie-banner__content a {
    color: #2563eb;
    font-weight: 600;
}

.sf-cookie-banner__button {
    min-width: 120px;
    padding: 13px 20px;
    border: 0;
    border-radius: 14px;
    background: #111827;
    color: #fff;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.sf-static-page {
    padding-top: 28px;
    padding-bottom: 32px;
}

.sf-static-page__card {
    display: grid;
    gap: 18px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.sf-static-page__card h1 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3rem);
}

.sf-static-page__lead {
    margin: 0;
    color: var(--store-muted);
    font-size: 1.02rem;
    line-height: 1.8;
}

.sf-static-page__content {
    color: var(--store-text);
    font-size: 1rem;
    line-height: 1.9;
}

.sf-static-page__content p,
.sf-static-page__content h2,
.sf-static-page__content h3,
.sf-static-page__content h4,
.sf-static-page__content ul,
.sf-static-page__content ol,
.sf-static-page__content blockquote {
    margin: 0 0 16px;
}

.sf-static-page__content ul,
.sf-static-page__content ol {
    padding-left: 24px;
}

.sf-static-page__content img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 18px 0;
}

.sf-static-page__content a {
    color: var(--store-accent);
    text-decoration: underline;
}

.sf-contact-page {
    display: grid;
    gap: clamp(24px, 4vw, 42px);
}

.sf-contact-map {
    overflow: hidden;
    width: 100%;
    min-height: 360px;
    border-radius: 0;
    background: #f4f1ec;
}

.sf-contact-map iframe {
    display: block;
    width: 100%;
    height: clamp(360px, 42vw, 520px);
    border: 0;
}

.sf-contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, .72fr);
    gap: clamp(28px, 4vw, 58px);
    align-items: start;
}

.sf-contact-form,
.sf-contact-info {
    min-width: 0;
}

.sf-contact-form h1 {
    margin: 0 0 12px;
    font-size: clamp(2rem, 3.4vw, 3rem);
    line-height: 1.05;
}

.sf-contact-lead {
    max-width: 720px;
    margin: 0 0 26px;
    color: var(--store-muted);
    font-size: .98rem;
    line-height: 1.8;
}

.sf-contact-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.sf-contact-field {
    display: grid;
    gap: 8px;
    color: var(--store-text);
    font-size: .82rem;
    font-weight: 600;
}

.sf-contact-field--full,
.sf-contact-form__actions {
    grid-column: 1 / -1;
}

.sf-contact-field input,
.sf-contact-field textarea {
    width: 100%;
    border: 1px solid var(--store-border);
    border-radius: 18px;
    background: #fff;
    color: var(--store-text);
    font: inherit;
    font-weight: 400;
    outline: none;
}

.sf-contact-field input {
    min-height: 52px;
    padding: 0 18px;
}

.sf-contact-field textarea {
    min-height: 150px;
    padding: 16px 18px;
    resize: vertical;
}

.sf-contact-submit {
    min-height: 52px;
    padding: 0 28px;
    border: 0;
    border-radius: 999px;
    background: #00ab47;
    color: #fff;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.sf-contact-status {
    padding: 14px 18px;
    border-radius: 16px;
    font-size: .92rem;
    font-weight: 600;
}

.sf-contact-status.is-success {
    background: #e8f8ee;
    color: #087934;
}

.sf-contact-status.is-error {
    background: #fff1f1;
    color: #b42318;
}

.sf-contact-info {
    display: grid;
    gap: 22px;
}

.sf-contact-info__block {
    display: grid;
    gap: 14px;
}

.sf-contact-info__block h2 {
    margin: 0;
    color: var(--store-text);
    font-size: 1.15rem;
    line-height: 1.2;
}

.sf-contact-info__row {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    margin: 0;
    color: var(--store-muted);
    font-size: .95rem;
    line-height: 1.65;
}

.sf-contact-info__row svg {
    width: 34px;
    height: 34px;
    padding: 8px;
    border-radius: 999px;
    background: color-mix(in srgb, #00ab47 9%, #fff);
    stroke: #00ab47;
    stroke-width: 1.8;
    fill: none;
}

.sf-contact-info__row strong {
    color: var(--store-text);
}

.sf-contact-info__row a {
    color: inherit;
    text-decoration: none;
}

.sf-faq-list {
    display: grid;
    gap: 10px;
    margin-top: 8px;
}

.sf-faq-item {
    overflow: hidden;
    border: 1px solid color-mix(in srgb, var(--store-border) 88%, transparent);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 14px 32px rgba(17, 24, 39, .045);
}

.sf-faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 17px 20px;
    color: var(--store-text);
    font-weight: 600;
    cursor: pointer;
    list-style: none;
}

.sf-faq-item summary::-webkit-details-marker {
    display: none;
}

.sf-faq-item__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    flex: 0 0 26px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--store-accent) 11%, #fff);
    color: var(--store-accent);
    font-size: .95rem;
    font-weight: 600;
    transition: transform .2s ease, background .2s ease;
}

.sf-faq-item[open] .sf-faq-item__icon {
    transform: rotate(45deg);
    background: color-mix(in srgb, var(--store-accent) 16%, #fff);
}

.sf-faq-item__answer {
    padding: 0 20px 18px;
    color: var(--store-muted);
    font-size: .96rem;
    line-height: 1.75;
}

/* Store pages use the same readable body typography as product descriptions. */
.sf-static-page__lead,
.sf-static-page__content,
.sf-static-page__content p,
.sf-static-page__content li,
.sf-static-page__content blockquote,
.sf-faq-item__answer {
    font-family: var(--store-font-body);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
}

.sf-static-page__content strong,
.sf-static-page__content b,
.sf-static-page__content h2,
.sf-static-page__content h3,
.sf-static-page__content h4,
.sf-faq-item__answer strong,
.sf-faq-item__answer b {
    font-weight: 700;
}

@media (max-width: 920px) {
    .sf-footer__inner--columns {
        grid-template-columns: 1fr !important;
        gap: 18px;
    }

    .sf-footer__links {
        justify-content: flex-start;
        gap: 20px;
    }
}

@media (max-width: 720px) {
    .sf-static-page {
        padding-top: 18px;
        padding-bottom: 24px;
    }

    .sf-static-page__card {
        gap: 12px;
        padding: 0;
        border-radius: 0;
    }

    .sf-static-page__card h1 {
        font-size: 1.55rem;
    }

    .sf-static-page__lead,
    .sf-static-page__content {
        font-size: 12px;
        line-height: 1.7;
    }

    .sf-faq-list {
        gap: 8px;
        margin-top: 4px;
    }

    .sf-faq-item {
        border-radius: 14px;
        box-shadow: none;
    }

    .sf-faq-item summary {
        padding: 13px 14px;
        gap: 12px;
        font-size: 14px;
        line-height: 1.35;
    }

    .sf-faq-item__icon {
        width: 22px;
        height: 22px;
        flex-basis: 22px;
        font-size: .78rem;
    }

    .sf-faq-item__answer {
        padding: 0 14px 14px;
        font-size: 12px;
        line-height: 1.65;
    }

    .sf-topbar__track {
        animation-duration: 22s;
    }

    .sf-topbar__group {
        gap: 16px;
        padding-inline-end: 16px;
    }

    .sf-topbar__item {
        min-height: 26px;
        gap: 6px;
    }

    .sf-topbar__icon,
    .sf-topbar__icon svg {
        width: 11px;
        height: 11px;
    }

    .sf-topbar__text {
        font-size: .54rem;
        letter-spacing: .11em;
    }

    .sf-footer__links {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px 16px;
    }

    .sf-footer__group {
        width: 100%;
    }

    .sf-footer__socials-inner,
    .sf-footer__bottom-inner {
        justify-content: center;
    }

    .sf-footer__bottom-inner {
        grid-template-columns: 1fr;
        justify-items: center;
        align-items: center;
        gap: 9px;
        padding: 12px 0 16px;
        text-align: center;
    }

    .sf-footer__credit img {
        max-width: 96px;
    }

    .sf-footer__brand-note {
        flex-wrap: wrap;
        gap: 5px;
        font-size: .64rem;
        white-space: normal;
    }

    .sf-footer__brand-note img {
        max-width: 52px;
    }

    .sf-footer__trust {
        justify-self: center;
    }

    .sf-footer__trust img {
        max-width: 150px;
    }

    .sf-cookie-banner {
        left: 12px;
        right: 12px;
        bottom: 14px;
        grid-template-columns: 1fr;
        justify-items: start;
    }

    .sf-cookie-banner__button {
        width: 100%;
    }
}

@media (max-width: 540px) {
    .sf-footer__links {
        grid-template-columns: 1fr;
    }
}

* {
    box-sizing: border-box;
}

body.storefront-preview {
    margin: 0;
    padding: 0;
    background: var(--store-bg, #ffffff);
    color: var(--store-text);
    font-family: var(--store-font-body);
    font-size: var(--store-text-base);
    line-height: 1.5;
    font-weight: 300;
    text-rendering: optimizeLegibility;
}

body.shop-body {
    margin: 0;
    padding: 0;
    background: var(--store-bg, #ffffff);
    color: var(--store-text);
    font-family: var(--store-font-body);
    font-size: var(--store-text-base);
    line-height: 1.5;
    font-weight: 300;
    text-rendering: optimizeLegibility;
}

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

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

button,
input,
textarea,
select {
    font: inherit;
}

.sf-shell {
    width: min(calc(100% - 48px), var(--store-content-width));
    margin: 0 auto;
}

.sf-header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(18px);
    background: color-mix(in srgb, var(--store-surface) 78%, transparent);
    border-bottom: 1px solid color-mix(in srgb, var(--store-border) 72%, transparent);
}

.sf-header__inner {
    width: min(calc(100% - 48px), var(--store-content-width));
    min-height: 82px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
}

.sf-brand,
.sf-nav,
.sf-tools,
.sf-mobile-menu,
.sf-button,
.sf-link-button,
.sf-whatsapp__trigger,
.sf-whatsapp__panel strong,
.sf-size-chip {
    font-family: var(--store-font-menu);
}

.sf-brand {
    font-size: calc(1rem * var(--store-heading-scale));
    font-family: var(--store-font-heading);
    letter-spacing: .02em;
    font-weight: 400;
}

.sf-brand--lockup {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    white-space: nowrap;
}

.sf-brand__logo {
    display: block;
    width: clamp(260px, 20vw, 360px);
    max-width: 100%;
    height: 72px;
    object-fit: contain;
    object-position: left center;
}

.sf-brand__mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: linear-gradient(145deg, color-mix(in srgb, var(--store-accent) 92%, #fff 8%), color-mix(in srgb, var(--store-accent) 74%, #fff 26%));
    color: #fff;
    font-family: var(--store-font-menu);
    font-size: .88rem;
    font-weight: 600;
    letter-spacing: .18em;
    box-shadow: 0 16px 35px rgba(20, 17, 15, .12);
}

.sf-brand__wordmark {
    font-family: var(--store-font-menu);
    font-size: 1.02rem;
    font-weight: 400;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.sf-nav {
    display: flex;
    justify-content: center;
    gap: 28px;
    text-transform: uppercase;
    letter-spacing: var(--store-menu-spacing);
    font-size: .75rem;
    font-weight: 400;
}

.sf-tools {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    justify-self: end;
}

.sf-mobile-menu-toggle,
.sf-mobile-menu {
    display: none;
}

.sf-mobile-menu-toggle,
.sf-icon-link,
.sf-mobile-action img {
    color: inherit;
}

.sf-mobile-menu-toggle {
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 0;
    background: transparent;
    padding: 0;
    box-shadow: none;
    cursor: pointer;
}

.sf-mobile-menu-toggle svg,
.sf-icon-link img,
.sf-mobile-action img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.sf-icon-link img {
    filter: brightness(0) saturate(100%) invert(12%) sepia(12%) saturate(779%) hue-rotate(343deg) brightness(95%) contrast(90%);
    opacity: .9;
    transition: filter .2s ease, opacity .2s ease, transform .2s ease;
}

.sf-mobile-menu-toggle svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.45;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.sf-icon-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 0;
    border: 0;
    background: transparent;
    padding: 0;
    box-shadow: none;
    appearance: none;
    cursor: pointer;
}

.sf-icon-link--bag {
    overflow: visible;
}

.sf-icon-link--bag img,
.sf-icon-link[aria-label*="hesap"] img,
.sf-icon-link[aria-label*="giri"] img {
    width: 29px;
    height: 29px;
    transform: none;
    transform-origin: center;
}

.sf-icon-link--bag img {
    width: 30px;
    height: 30px;
}

.sf-icon-link:hover,
.sf-mobile-menu-toggle:hover {
    color: var(--store-accent);
}

.sf-icon-link:hover img,
.sf-icon-link.is-active img {
    opacity: 1;
    filter: brightness(0) saturate(100%) invert(20%) sepia(25%) saturate(827%) hue-rotate(343deg) brightness(89%) contrast(91%);
}

.sf-icon-badge {
    position: absolute;
    top: 5px;
    right: 2px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: var(--store-accent);
    color: #fff;
    font-size: .5rem;
    font-weight: 400;
    letter-spacing: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    white-space: nowrap;
}

.sf-header-search {
    border-top: 1px solid color-mix(in srgb, var(--store-border) 68%, transparent);
    background: color-mix(in srgb, var(--store-surface) 94%, transparent);
}

.sf-header-search[hidden] {
    display: none;
}

.sf-header-search__inner {
    width: min(calc(100% - 48px), var(--store-content-width));
    margin: 0 auto;
    padding: 14px 0 18px;
    display: grid;
    gap: 12px;
}

.sf-header-search__form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
    padding: 14px;
    border: 1px solid color-mix(in srgb, var(--store-border) 84%, transparent);
    border-radius: calc(var(--store-radius) + 4px);
    background: #fff;
    box-shadow: 0 18px 40px rgba(23, 18, 15, .08);
}

.sf-header-search__field {
    min-width: 0;
    height: 54px;
    border: 1px solid var(--store-border);
    border-radius: 999px;
    padding: 0 18px;
    background: #fff;
    color: var(--store-text);
    font-family: var(--store-font-menu);
    font-size: .95rem;
}

.sf-header-search__field:focus {
    outline: none;
    border-color: color-mix(in srgb, var(--store-accent) 54%, var(--store-border));
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--store-accent) 12%, transparent);
}

.sf-header-search__results {
    display: grid;
    gap: 10px;
    padding: 10px;
    border: 1px solid color-mix(in srgb, var(--store-border) 84%, transparent);
    border-radius: calc(var(--store-radius) + 4px);
    background: #fff;
    box-shadow: 0 18px 40px rgba(23, 18, 15, .08);
    max-height: min(62vh, 520px);
    overflow-y: auto;
}

.sf-header-search__results[hidden] {
    display: none;
}

.sf-header-search__results.is-loading {
    opacity: .7;
}

.sf-header-search__hint,
.sf-header-search__results .live-search-empty {
    padding: 20px 16px;
    color: rgba(58, 46, 37, .72);
    font-family: var(--store-font-menu);
    font-size: .92rem;
    text-align: center;
}

.sf-header-search__results .live-search-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 142px;
    gap: 12px;
    align-items: center;
    padding: 12px;
    border: 1px solid color-mix(in srgb, var(--store-border) 82%, transparent);
    border-radius: 24px;
    background: color-mix(in srgb, var(--store-surface) 98%, transparent);
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.sf-header-search__results .live-search-item:hover {
    border-color: color-mix(in srgb, var(--store-accent) 28%, var(--store-border));
    box-shadow: 0 14px 28px rgba(23, 18, 15, .08);
    transform: translateY(-1px);
}

.sf-header-search__results .live-search-item__link {
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    min-width: 0;
    color: inherit;
    text-decoration: none;
}

.sf-header-search__results .live-search-image {
    display: grid;
    place-items: center;
    width: 70px;
    height: 70px;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid color-mix(in srgb, var(--store-border) 82%, transparent);
    background: #fff;
    color: rgba(58, 46, 37, .56);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .12em;
}

.sf-header-search__results .live-search-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sf-header-search__results .live-search-info {
    display: grid;
    gap: 5px;
    min-width: 0;
}

.sf-header-search__results .live-search-info strong,
.sf-header-search__results .live-search-info span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sf-header-search__results .live-search-info strong {
    color: var(--store-text);
    font-size: .98rem;
    font-weight: 600;
}

.sf-header-search__results .live-search-info span {
    color: rgba(58, 46, 37, .64);
    font-size: .82rem;
}

.sf-header-search__results .live-search-info b {
    color: var(--store-accent);
    font-size: .96rem;
    font-weight: 700;
}

.sf-header-search__results .live-search-info em {
    width: fit-content;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(160, 82, 45, .08);
    color: #8b5c36;
    font-size: .74rem;
    font-style: normal;
    font-weight: 600;
}

.sf-header-search__results .live-search-cart {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 8px;
    align-items: center;
}

.sf-header-search__results .live-search-cart input {
    width: 48px;
    height: 42px;
    border: 1px solid var(--store-border);
    border-radius: 14px;
    padding: 0 0 0 12px;
    background: #fff;
    color: var(--store-text);
    font-family: var(--store-font-menu);
}

.sf-header-search__results .live-search-cart button {
    min-width: 0;
    height: 42px;
    border: 0;
    border-radius: 999px;
    background: #17120f;
    color: #fff;
    padding: 0 16px;
    font-family: var(--store-font-menu);
    font-size: .8rem;
    font-weight: 600;
    cursor: pointer;
}

.sf-header-search__results .live-search-cart button:disabled {
    opacity: .65;
    cursor: wait;
}

.sf-header-search__results .live-search-all-results {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid color-mix(in srgb, var(--store-border) 86%, transparent);
    background: color-mix(in srgb, var(--store-surface) 97%, transparent);
    color: var(--store-text);
    font-family: var(--store-font-menu);
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    text-decoration: none;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.sf-hero {
    position: relative;
    min-height: var(--store-slider-desktop-height);
    isolation: isolate;
    margin-bottom: 52px;
}

.sf-hero__slide {
    position: absolute;
    inset: 0;
    min-height: var(--store-slider-desktop-height);
    overflow: hidden;
    background: var(--store-surface);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 0;
    transition:
        opacity .82s cubic-bezier(.22, 1, .36, 1),
        visibility .82s step-end;
}

.sf-hero__slide.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 2;
    transition:
        opacity .82s cubic-bezier(.22, 1, .36, 1),
        visibility 0s linear;
}

.sf-hero__media,
.sf-hero__media picture,
.sf-hero__media img,
.sf-hero__media video,
.sf-hero__overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.sf-hero__media img {
    object-fit: cover;
    object-position: var(--slide-focus-x, 50%) var(--slide-focus-y, 50%);
    transform: scale(1.085) translate3d(var(--slide-pan-x, -1.4%), var(--slide-pan-y, 0%), 0);
    transition:
        transform 6.4s cubic-bezier(.22, 1, .36, 1),
        opacity .82s cubic-bezier(.22, 1, .36, 1);
    will-change: transform, opacity;
}

.sf-hero__media video {
    display: block;
    object-fit: cover;
    object-position: var(--slide-focus-x, 50%) var(--slide-focus-y, 50%);
    background: #17120f;
}

.sf-hero__slide.is-active .sf-hero__media img {
    transform: scale(1.02) translate3d(0, 0, 0);
}

.sf-hero__overlay {
    background:
        linear-gradient(135deg, rgba(20, 17, 15, var(--slide-overlay, .18)), rgba(20, 17, 15, calc(var(--slide-overlay, .18) + .12))),
        var(--store-hero-gradient);
}

.sf-hero__shell {
    position: relative;
    min-height: var(--store-slider-desktop-height);
    display: flex;
    align-items: center;
    padding: 28px 0 44px;
}

.sf-hero__shell.align-center {
    justify-content: center;
    text-align: center;
}

.sf-hero__shell.align-right {
    justify-content: flex-end;
    text-align: right;
}

.sf-hero__content {
    width: min(100%, var(--store-slider-content-width));
    display: grid;
    gap: 18px;
    color: #fffdf7;
}

.sf-hero__content > * {
    opacity: 0;
    transform: translate3d(0, 16px, 0);
    transition:
        opacity .72s cubic-bezier(.22, 1, .36, 1),
        transform .72s cubic-bezier(.22, 1, .36, 1);
}

.sf-hero__slide.is-active .sf-hero__content > * {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.sf-hero__slide.is-active .sf-hero__content > *:nth-child(1) {
    transition-delay: .08s;
}

.sf-hero__slide.is-active .sf-hero__content > *:nth-child(2) {
    transition-delay: .16s;
}

.sf-hero__slide.is-active .sf-hero__content > *:nth-child(3) {
    transition-delay: .24s;
}

.sf-hero__slide.is-active .sf-hero__content > *:nth-child(4) {
    transition-delay: .32s;
}

.sf-eyebrow {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: .18em;
    font-size: .76rem;
    color: color-mix(in srgb, #fff 70%, var(--store-accent));
}

.sf-hero__content h1,
.sf-section__intro h2,
.sf-editorial-banner h2,
.sf-product__details h1 {
    margin: 0;
    font-family: var(--store-font-heading);
    font-size: clamp(2.05rem, 4.8vw, 4.55rem);
    line-height: 1.04;
    letter-spacing: -.03em;
    font-weight: 400;
}

.sf-hero__content p:last-of-type,
.sf-section__intro p:last-of-type,
.sf-editorial-banner p {
    margin: 0;
    max-width: 54ch;
    color: color-mix(in srgb, #fff 82%, transparent);
}

.sf-product__description {
    margin: 0;
    max-width: 54ch;
    color: var(--store-muted);
}

.sf-hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}

.sf-button,
.sf-link-button,
.sf-size-chip,
.sf-swatches button {
    transition: transform .2s ease, opacity .2s ease, border-color .2s ease, background .2s ease;
}

.sf-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: var(--store-button-height);
    padding: 0 var(--store-button-padding-x);
    border-radius: var(--store-button-radius);
    background: var(--store-button-gradient);
    color: #fff;
    border: 1px solid transparent;
    box-shadow: var(--store-button-shadow);
    cursor: pointer;
    font-family: var(--store-font-menu);
    font-size: var(--store-button-font-size);
    font-weight: var(--store-button-font-weight);
    letter-spacing: var(--store-button-letter-spacing);
}

.sf-button--block {
    width: 100%;
}

.sf-button--light {
    background: transparent;
    border-color: rgba(255, 255, 255, .4);
    box-shadow: none;
}

.sf-link-button {
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: .76rem;
    font-weight: 500;
    color: #fff;
}

.sf-hero__dots {
    position: absolute;
    right: 28px;
    bottom: 24px;
    z-index: 2;
    display: flex;
    gap: 8px;
}

.sf-hero__dots button {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, .38);
}

.sf-hero__dots button.is-active {
    width: 30px;
    background: #fff;
}

.sf-section {
    padding: 72px 0;
}

.sf-section__intro {
    display: grid;
    gap: 14px;
    margin-bottom: 28px;
}

.sf-section__intro h2 {
    max-width: 16ch;
    font-size: clamp(2rem, 4vw, 3.9rem);
    color: var(--store-text);
}

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

.sf-collection-card {
    overflow: hidden;
    border-radius: var(--store-radius);
    background: var(--store-surface);
    border: 1px solid color-mix(in srgb, var(--store-border) 84%, transparent);
    box-shadow: var(--store-shadow-soft);
}

.sf-collection-card img {
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.sf-collection-card__body {
    padding: 20px;
}

.sf-collection-card__body h3 {
    margin: 0 0 10px;
    font-family: var(--store-font-heading);
    font-size: 1.7rem;
}

.sf-collection-card__body p,
.sf-editorial-banner p {
    margin: 0;
    color: var(--store-muted);
}

.sf-editorial-banner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: end;
    padding: 30px 34px;
    border-radius: calc(var(--store-radius) + 6px);
    background: var(--store-surface);
    border: 1px solid color-mix(in srgb, var(--store-border) 88%, transparent);
}

.sf-editorial-banner h2 {
    font-size: clamp(1.9rem, 4vw, 3.5rem);
    color: var(--store-text);
}

.sf-catalog-page {
    padding-top: 42px;
    padding-bottom: 72px;
}

.sf-catalog-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
    gap: 24px;
    align-items: end;
    margin-bottom: 28px;
}

.sf-catalog-search {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding: 18px;
    border-radius: calc(var(--store-radius) + 4px);
    border: 1px solid color-mix(in srgb, var(--store-border) 88%, transparent);
    background: var(--store-surface);
    box-shadow: var(--store-shadow-soft);
}

.sf-catalog-search input {
    min-width: 0;
    height: 54px;
    border: 1px solid var(--store-border);
    border-radius: 999px;
    padding: 0 18px;
    background: #fff;
    color: var(--store-text);
}

.sf-catalog-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.sf-filter-chip {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid var(--store-border);
    background: rgba(255, 253, 249, .88);
    color: var(--store-text);
    font-family: var(--store-font-menu);
    font-size: .82rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.sf-filter-chip.is-active {
    background: var(--store-accent);
    border-color: var(--store-accent);
    color: #fff;
}

.sf-catalog-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 22px;
    color: var(--store-muted);
}

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

.sf-product-card {
    position: relative;
    display: grid;
    grid-template-rows: auto 1fr;
    gap: 0;
    overflow: hidden;
    border: 1px solid #e7e0d8;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 10px 22px rgba(15, 23, 42, .04);
}

.sf-product-card__media {
    position: relative;
    display: block;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    padding: 0;
    border-radius: 16px 16px 0 0;
    background: #f6f2ec;
    border-bottom: 1px solid #efe7dd;
}

.sf-product-card__image,
.sf-product-card__hover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: opacity .28s ease, transform .28s ease;
}

.sf-product-card__hover {
    position: absolute;
    inset: 0;
    opacity: 0;
}

.sf-product-card__media:hover .sf-product-card__hover {
    opacity: 1;
}

.sf-product-card__media:hover .sf-product-card__image {
    transform: scale(1.035);
}

.sf-product-card__placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    color: var(--store-muted);
    letter-spacing: .16em;
    text-transform: uppercase;
    background: #f3eee7;
}

.sf-product-card__body {
    display: grid;
    align-content: start;
    grid-template-rows: auto minmax(42px, auto) auto auto;
    gap: 5px;
    padding: 10px 12px 12px;
}

.sf-product-card__category {
    margin: 0;
    color: var(--store-muted);
    font-size: .62rem;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.sf-product-card__title {
    font-family: var(--store-font-body);
    font-size: clamp(.82rem, .82vw, .92rem);
    font-weight: 400;
    line-height: 1.28;
    color: #1a1715;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.56em;
}

.sf-product-card__title,
.sf-product-card--related .sf-product-card__title {
    text-align: center;
}

.sf-product-card__price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 0;
    min-height: 46px;
    text-align: center;
}

.sf-product-card__price-copy {
    display: grid;
    gap: 2px;
    min-width: 0;
    justify-items: center;
    text-align: center;
}

.sf-product-card__price strong {
    font-family: var(--store-font-price);
    font-size: 1.12rem;
    font-weight: 700;
    line-height: 1;
    color: #111111;
}

.sf-product-card__price.is-discounted strong {
    color: #111827;
}

.sf-product-card__compare {
    color: #a29a92;
    font-size: .72rem;
    font-weight: 500;
    text-decoration: line-through;
    order: -1;
    min-height: 1em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.sf-product-card__compare.is-placeholder {
    visibility: hidden;
}

.sf-product-card__discount {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    min-height: 28px;
    padding: 0 7px;
    border-radius: 8px;
    background: #ea2f34;
    color: #fff;
    font-size: .72rem;
    font-weight: 800;
    line-height: 1;
    box-shadow: 0 6px 12px rgba(234, 47, 52, .16);
    margin: 0;
}

.sf-product-card__meta {
    margin: 0;
    color: #7d746b;
    font-size: .7rem;
}

.sf-product-card__actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
}

.sf-product-card__actions form {
    margin: 0;
}

.sf-product-card__actions--stack,
.sf-product-card__actions--stack form {
    width: 100%;
}

.sf-product-card__purchase {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 0;
    min-height: 44px;
    padding: 3px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid #e2dbd2;
}

.sf-product-card__qty {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 8px 0 6px;
}

.sf-product-card__qty-button {
    width: 24px;
    height: 24px;
    border: 0;
    background: transparent;
    color: #211c18;
    font-size: 1rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.sf-product-card__qty-input {
    width: 18px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #171411;
    text-align: center;
    font-size: .88rem;
    font-weight: 500;
    box-shadow: none;
    appearance: textfield;
    -moz-appearance: textfield;
}

.sf-product-card__qty-input::-webkit-outer-spin-button,
.sf-product-card__qty-input::-webkit-inner-spin-button {
    margin: 0;
    -webkit-appearance: none;
}

.sf-product-card__cta {
    width: 100%;
    min-height: 40px;
    justify-content: center;
    border-radius: 14px;
    font-size: .84rem;
    font-weight: 500;
}

.sf-product-card__cta--inline {
    width: auto;
    min-height: 38px;
    padding: 0 14px 0 16px;
    margin-left: 2px;
    justify-content: center;
    gap: 7px;
    border: 0;
    border-left: 1px solid #ddd4ca;
    border-radius: 0 999px 999px 0;
    background: transparent;
    color: #00ab47;
    box-shadow: none;
    font-size: .84rem;
    font-weight: 600;
}

.sf-product-card__cta-icon {
    width: 15px;
    height: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.sf-product-card__cta-icon svg {
    width: 15px;
    height: 15px;
    display: block;
}

.sf-product-card__overlay {
    position: absolute;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 8px;
    pointer-events: none;
}

.sf-product-card__overlay--left {
    top: 10px;
    left: 10px;
    align-items: flex-start;
}

.sf-product-card__overlay--right {
    top: 10px;
    right: 10px;
    align-items: flex-end;
}

.sf-product-card__band,
.sf-product-card__sticker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--badge-text, #111827);
    background: var(--badge-bg, #fff7ed);
    border: 1px solid var(--badge-border, #e5e7eb);
    box-shadow: 0 10px 24px rgba(15, 23, 42, .08);
}

.sf-product-card__band {
    min-height: 26px;
    padding: 0 9px;
    border-radius: 8px;
    font-size: .64rem;
    font-weight: 700;
}

.sf-product-card__sticker {
    min-width: 58px;
    min-height: 58px;
    padding: 8px;
    border-radius: 16px;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.sf-product-card__sticker.is-image-only,
.sf-product-card__band.is-image-only {
    min-width: 0;
    min-height: 0;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    border-radius: 0;
}

.sf-product-card__band img,
.sf-product-card__sticker img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    flex: 0 0 auto;
}

.sf-product-card__sticker img {
    width: 28px;
    height: 28px;
}

.sf-product-card__sticker.is-image-only img,
.sf-product-card__band.is-image-only img {
    width: 56px;
    height: 56px;
}

.sf-product-card__sticker em {
    font-style: normal;
    font-size: .7rem;
    font-weight: 700;
    line-height: 1.15;
}

.sf-empty-state {
    grid-column: 1 / -1;
    padding: 42px 24px;
    border-radius: calc(var(--store-radius) + 4px);
    border: 1px solid color-mix(in srgb, var(--store-border) 88%, transparent);
    background: var(--store-surface);
    text-align: center;
    box-shadow: var(--store-shadow-soft);
}

.sf-whatsapp {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 30;
}

.sf-whatsapp__trigger {
    min-height: 58px;
    padding: 0 22px;
    border: 0;
    border-radius: 999px;
    background: color-mix(in srgb, var(--store-accent) 92%, white);
    color: #fff;
    box-shadow: 0 24px 55px rgba(20, 17, 15, .25);
}

.sf-whatsapp__panel {
    width: min(320px, calc(100vw - 32px));
    margin-top: 12px;
    padding: 18px;
    border-radius: calc(var(--store-radius) + 4px);
    background: rgba(255, 253, 249, .96);
    border: 1px solid color-mix(in srgb, var(--store-border) 82%, transparent);
    box-shadow: var(--store-shadow-soft);
}

.sf-whatsapp__panel p {
    margin: 10px 0 16px;
    color: var(--store-muted);
}

.sf-auth-page {
    min-height: 100svh;
}

.sf-auth {
    position: relative;
    overflow: hidden;
    min-height: calc(100svh - 82px);
    padding: 48px 0 72px;
}

.sf-auth__backdrop {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, .65), transparent 42%),
        linear-gradient(135deg, color-mix(in srgb, var(--store-accent) 10%, transparent), transparent 42%),
        linear-gradient(180deg, color-mix(in srgb, var(--store-surface) 65%, transparent), transparent 70%);
    pointer-events: none;
}

.sf-auth__shell {
    position: relative;
    z-index: 1;
    width: min(calc(100% - 48px), var(--store-content-width));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(320px, .9fr) minmax(380px, .8fr);
    gap: 32px;
    align-items: stretch;
}

.sf-auth__intro,
.sf-auth__card {
    border-radius: calc(var(--store-radius) + 8px);
    border: 1px solid color-mix(in srgb, var(--store-border) 88%, transparent);
    background: color-mix(in srgb, var(--store-surface) 92%, transparent);
    box-shadow: var(--store-shadow-soft);
}

.sf-auth__intro {
    padding: 42px;
    display: grid;
    align-content: center;
    gap: 18px;
}

.sf-auth__intro h1,
.sf-auth__card h2 {
    margin: 0;
    font-family: var(--store-font-heading);
    font-weight: 400;
    letter-spacing: -.03em;
    color: var(--store-text);
}

.sf-auth__intro h1 {
    font-size: clamp(2.3rem, 4vw, 4.4rem);
    line-height: .96;
}

.sf-auth__intro p:last-child,
.sf-auth__card-top p:last-child {
    margin: 0;
    color: var(--store-muted);
}

.sf-auth__card {
    padding: 34px;
    display: grid;
    gap: 22px;
}

.sf-auth__card-top {
    display: grid;
    gap: 10px;
}

.sf-auth__card h2 {
    font-size: clamp(1.8rem, 2.5vw, 2.6rem);
}

.sf-auth__form {
    display: grid;
    gap: 16px;
}

.sf-auth__field {
    display: grid;
    gap: 8px;
    color: var(--store-text);
    font-family: var(--store-font-menu);
    font-size: .92rem;
}

.sf-auth__field span {
    font-weight: 500;
}

.sf-auth__field input {
    width: 100%;
    min-height: 54px;
    padding: 0 18px;
    border-radius: 18px;
    border: 1px solid color-mix(in srgb, var(--store-border) 92%, transparent);
    background: color-mix(in srgb, var(--store-surface) 98%, transparent);
    color: var(--store-text);
    outline: none;
}

.sf-auth__field input:focus {
    border-color: color-mix(in srgb, var(--store-accent) 42%, var(--store-border));
    box-shadow: 0 0 0 4px rgba(47, 33, 22, .08);
}

.sf-auth__links {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
    color: var(--store-muted);
    font-size: .92rem;
}

.sf-auth__links a {
    color: var(--store-text);
    font-weight: 500;
}

.sf-auth__alert {
    padding: 14px 16px;
    border-radius: 16px;
    font-size: .92rem;
}

.sf-auth__alert--error {
    background: rgba(197, 36, 36, .08);
    color: #8d1f1f;
    border: 1px solid rgba(197, 36, 36, .18);
}

.sf-auth__alert--success {
    background: rgba(34, 124, 74, .08);
    color: #236b45;
    border: 1px solid rgba(34, 124, 74, .18);
}

.sf-mobile-bottom-nav {
    display: none;
}

.sf-icon-link.is-active {
    border-color: color-mix(in srgb, var(--store-accent) 46%, var(--store-border));
    background: color-mix(in srgb, var(--store-accent) 10%, var(--store-surface));
}

.sf-product {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px;
    align-items: start;
    padding: 34px 0 72px;
}

.sf-product__gallery {
    display: grid;
    gap: 18px;
}

.sf-product__media {
    border-radius: 28px;
    overflow: hidden;
    background: #fff;
}

.sf-product__stage {
    border: 1px solid #ece6df;
    box-shadow: 0 22px 46px rgba(20, 17, 15, .06);
}

.sf-product__stage.is-zoomable {
    cursor: zoom-in;
}

.sf-product__media > img,
.sf-product__media > [data-product-image] {
    width: 100%;
    min-height: 72svh;
    object-fit: cover;
    display: block;
}

.sf-product__placeholder {
    min-height: 72svh;
    display: grid;
    place-items: center;
    padding: 32px;
    color: var(--store-muted);
    font-family: var(--store-font-menu);
    letter-spacing: .08em;
    text-transform: uppercase;
}

.sf-product__details {
    display: grid;
    align-content: start;
    gap: 18px;
    padding-top: 10px;
}

.sf-product-tabs,
.sf-product-related {
    grid-column: 1 / -1;
}

.sf-product__eyebrow {
    margin-bottom: 0;
}

.sf-product__details h1 {
    max-width: none;
    width: 100%;
    margin: 0;
    font-family: var(--store-font-body);
    font-size: clamp(1.5rem, 1.7vw, 1.95rem);
    font-weight: 500;
    line-height: 1.12;
    letter-spacing: -.02em;
    color: var(--store-text);
}

.sf-product-rating-trigger {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: max-content;
    max-width: 100%;
    margin: 10px 0 2px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #64748b;
    cursor: pointer;
    font: inherit;
    font-size: .84rem;
    text-align: left;
}

.sf-product-rating-trigger:hover {
    color: var(--store-text);
}

.sf-product-rating-trigger__stars {
    color: #f59e0b;
    letter-spacing: .08em;
    font-size: 1rem;
    line-height: 1;
    white-space: nowrap;
}

.sf-product-rating-trigger__stars > span {
    color: #cbd5e1;
}

.sf-product-rating-trigger:focus-visible {
    outline: 2px solid #2563eb;
    outline-offset: 4px;
    border-radius: 4px;
}

.sf-product__thumb-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 0;
}

.sf-product__thumb-grid::-webkit-scrollbar {
    display: none;
}

.sf-product__thumb {
    width: 74px;
    height: 74px;
    padding: 0;
    border: 1px solid #ddd6cf;
    border-radius: 22px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 12px 24px rgba(27, 21, 18, .04);
}

.sf-product__thumb img {
    width: 100%;
    height: 74px;
    min-height: 0;
    object-fit: cover;
    display: block;
}

.sf-product__thumb.is-active {
    border-color: #111111;
    transform: translateY(-1px);
}

.sf-product-lightbox[hidden] {
    display: none;
}

.sf-product-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: grid;
    place-items: center;
    padding: 24px;
}

.sf-product-lightbox__backdrop {
    position: absolute;
    inset: 0;
    width: 100%;
    border: 0;
    background: rgba(15, 13, 12, .82);
    cursor: zoom-out;
}

.sf-product-lightbox__dialog {
    position: relative;
    z-index: 1;
    width: min(1080px, 100%);
    max-height: min(92vh, 900px);
    padding: 18px 20px 22px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 32px 90px rgba(0, 0, 0, .28);
}

.sf-product-lightbox__topbar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto 40px;
    align-items: center;
    gap: 16px;
    min-height: 40px;
}

.sf-product-lightbox__topbar p,
.sf-product-lightbox__topbar span {
    margin: 0;
    color: var(--store-text);
    font-family: var(--store-font-menu);
}

.sf-product-lightbox__topbar p {
    overflow: hidden;
    font-size: .9rem;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sf-product-lightbox__topbar span {
    color: var(--store-muted);
    font-size: .78rem;
    letter-spacing: .08em;
}

.sf-product-lightbox__close {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    padding: 0;
    border: 1px solid #ded8d0;
    border-radius: 50%;
    background: #fff;
    color: var(--store-text);
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
}

.sf-product-lightbox__viewer {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr) 52px;
    align-items: center;
    gap: 12px;
    min-height: min(72vh, 720px);
}

.sf-product-lightbox__figure {
    display: grid;
    place-items: center;
    gap: 10px;
    min-width: 0;
    margin: 0;
}

.sf-product-lightbox__figure img {
    display: block;
    width: 100%;
    max-height: min(70vh, 680px);
    object-fit: contain;
}

.sf-product-lightbox__figure figcaption {
    min-height: 1.2em;
    color: var(--store-muted);
    font-family: var(--store-font-menu);
    font-size: .82rem;
    text-align: center;
}

.sf-product-lightbox__arrow {
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    padding: 0 0 5px;
    border: 1px solid #ded8d0;
    border-radius: 50%;
    background: #fff;
    color: var(--store-text);
    font-size: 2.3rem;
    line-height: 1;
    cursor: pointer;
    transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.sf-product-lightbox__arrow:hover:not(:disabled) {
    border-color: var(--store-accent);
    background: color-mix(in srgb, var(--store-accent) 10%, #fff);
    transform: scale(1.04);
}

.sf-product-lightbox__arrow:disabled {
    opacity: .35;
    cursor: not-allowed;
}

body.sf-product-lightbox-open {
    overflow: hidden;
}

.sf-product__price-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: stretch;
    gap: 10px;
}

.sf-product__price-card {
    min-height: 56px;
    padding: 10px 16px;
    border: 1px solid #ddd6cf;
    border-radius: 18px;
    background: #fff;
    display: grid;
    align-content: center;
    gap: 2px;
}

.sf-product__price-card:not(.sf-product__price-card--primary) {
    display: inline-flex;
    align-items: center;
    align-content: center;
    gap: 8px;
    justify-self: end;
    white-space: nowrap;
}

.sf-product__price-card strong {
    font-family: var(--store-font-price);
    font-size: clamp(1.35rem, 1.9vw, 1.75rem);
    font-weight: 800;
    color: #111111;
}

.sf-product__price-card .sf-price-decimals {
    display: inline-block;
    margin-left: .02em;
    font-size: .62em;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1;
    vertical-align: baseline;
}

.sf-variant-group {
    display: grid;
    gap: 8px;
}

.sf-variant-group--card {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 8px;
    padding: 10px 12px;
    border: 1px solid #ddd6cf;
    border-radius: 18px;
    background: #fff;
}

.sf-product__price-card span {
    font-size: .64rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--store-muted);
}

.sf-product__price-card em {
    color: #8d8174;
    font-size: .95rem;
    font-style: normal;
    font-weight: 600;
}

.sf-product__price-card.is-empty {
    display: none;
}

.sf-product-tabs {
    display: grid;
    gap: 20px;
    margin-top: 8px;
}

.sf-product-tabs__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e7e0d8;
}

.sf-product-tabs__trigger {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 46px;
    padding: 0 14px;
    border: 0;
    border-bottom: 2px solid transparent;
    background: transparent;
    color: #6b7280;
    font-family: var(--store-font-menu);
    font-size: .94rem;
    font-weight: 500;
    cursor: pointer;
}

.sf-product-tabs__trigger svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.sf-product-tabs__trigger.is-active {
    color: #111827;
    border-bottom-color: #111827;
}

.sf-product-tabs__panel {
    display: none;
}

.sf-product-tabs__panel.is-active {
    display: block;
}

.sf-product-info-card,
.sf-product-empty-card,
.sf-product-reviews-card,
.sf-product-shipping-card {
    border: 1px solid #e7e0d8;
    border-radius: 20px;
    background: #fff;
}

.sf-product-info-card {
    display: grid;
    gap: 22px;
    padding: 28px 30px;
}

.sf-product-info-card h3,
.sf-product-shipping-card h3 {
    margin: 0;
    font-size: 1.12rem;
    font-weight: 600;
    color: #0f172a;
}

.sf-product-info-copy {
    display: grid;
    gap: 14px;
}

.sf-product-info-copy p,
.sf-product-empty-card p,
.sf-product-shipping-card p {
    margin: 0;
    color: #4b5563;
    line-height: 1.7;
}

.sf-product-info-copy h2,
.sf-product-info-copy h3,
.sf-product-info-copy h4 {
    margin: 0 0 8px;
    color: #111827;
    line-height: 1.3;
}

.sf-product-info-copy ul,
.sf-product-info-copy ol {
    margin: 0;
    padding-left: 24px;
    color: #4b5563;
    line-height: 1.7;
}

.sf-product-info-copy img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 12px 0;
}

.sf-product-info-copy a {
    color: #2563eb;
    text-decoration: underline;
}

/* Product descriptions use the same typography as the admin rich editor. */
.sf-product-info-copy {
    display: block;
    color: var(--store-text);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
    text-align: left;
    white-space: pre-wrap;
}

.sf-product-info-copy p {
    margin: 0 0 12px;
    color: inherit;
    line-height: inherit;
}

.sf-product-info-copy b,
.sf-product-info-copy strong {
    color: var(--store-text);
    font-weight: 700 !important;
}

.sf-product-info-copy h2,
.sf-product-info-copy h3,
.sf-product-info-copy h4 {
    margin: 0 0 10px;
    line-height: 1.25;
}

.sf-product-info-copy ul,
.sf-product-info-copy ol {
    margin: 0 0 12px;
    color: inherit;
    line-height: inherit;
}

.sf-product-info-grid,
.sf-product-shipping-grid {
    display: grid;
    gap: 14px;
}

.sf-product-info-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.sf-product-info-grid article {
    display: grid;
    gap: 6px;
    padding: 16px 18px;
    border-radius: 16px;
    background: #faf7f2;
    border: 1px solid #eee6dc;
}

.sf-product-info-grid span {
    font-size: .72rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #8a8178;
}

.sf-product-info-grid strong {
    font-size: .98rem;
    font-weight: 600;
    color: #111827;
}

.sf-product-empty-card {
    display: grid;
    justify-items: center;
    gap: 14px;
    padding: 40px 20px;
    text-align: center;
}

.sf-product-empty-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: #f6f3ee;
    color: #9ca3af;
}

.sf-product-empty-card__icon svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.sf-product-reviews-card {
    display: grid;
    grid-template-columns: minmax(220px, .8fr) minmax(0, 1.2fr);
    gap: 28px;
    padding: 28px 30px;
}

.sf-product-reviews-card__summary {
    display: grid;
    align-content: start;
    gap: 10px;
}

.sf-product-reviews-card__summary strong {
    font-size: 3rem;
    line-height: 1;
    color: #0f172a;
}

.sf-product-reviews-card__summary span {
    color: #4b5563;
}

.sf-product-reviews-card__stars {
    color: #fbbf24;
    letter-spacing: .16em;
    font-size: 1.15rem;
}

.sf-product-reviews-card__bars {
    display: grid;
    gap: 12px;
}

.sf-product-reviews-card__bar-row {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) 44px 20px;
    gap: 14px;
    align-items: center;
    color: #334155;
}

.sf-product-reviews-card__bar {
    height: 10px;
    border-radius: 999px;
    background: #ece8e1;
    overflow: hidden;
}

.sf-product-reviews-card__bar i {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: #111827;
}

.sf-product-reviews-card__bar-row strong,
.sf-product-reviews-card__bar-row em {
    font-style: normal;
    font-weight: 500;
    color: #64748b;
}

.sf-product-reviews-content {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
    gap: 18px;
    margin-top: 18px;
}

#reviews {
    scroll-margin-top: 20px;
}

.sf-product-review-list,
.sf-product-review-form-card {
    min-width: 0;
    border: 1px solid #e7e0d8;
    border-radius: 16px;
    background: #fff;
}

.sf-product-review-list {
    display: grid;
    align-content: start;
}

.sf-product-review-empty {
    padding: 18px 20px;
    color: #64748b;
    font-size: .9rem;
}

.sf-product-review-item {
    padding: 16px 20px;
    border-bottom: 1px solid #eee8e0;
}

.sf-product-review-item:last-child {
    border-bottom: 0;
}

.sf-product-review-item__head {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 12px;
}

.sf-product-review-item__head strong {
    color: #111827;
    font-size: .92rem;
    font-weight: 600;
}

.sf-product-review-item__stars,
.sf-review-rating label {
    color: #f59e0b;
    letter-spacing: .08em;
}

.sf-product-review-item__head time {
    margin-left: auto;
    color: #94a3b8;
    font-size: .76rem;
}

.sf-product-review-item p {
    margin: 8px 0 0;
    color: #475569;
    font-size: .9rem;
    line-height: 1.55;
    white-space: pre-wrap;
}

.sf-product-review-form-card {
    padding: 18px 20px;
}

.sf-product-review-form-card__head {
    display: grid;
    gap: 4px;
    margin-bottom: 14px;
}

.sf-product-review-form-card__head h3 {
    margin: 0;
    color: #111827;
    font-size: 1rem;
}

.sf-product-review-form-card__head p,
.sf-product-review-form__note {
    margin: 0;
    color: #64748b;
    font-size: .78rem;
    line-height: 1.45;
}

.sf-product-review-form {
    display: grid;
    gap: 12px;
}

.sf-review-rating-field {
    margin: 0;
    padding: 0;
    border: 0;
}

.sf-review-rating-field legend {
    margin-bottom: 5px;
    color: #475569;
    font-size: .78rem;
}

.sf-review-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    width: max-content;
}

.sf-review-rating input {
    position: absolute;
    inline-size: 1px;
    block-size: 1px;
    opacity: 0;
    pointer-events: none;
}

.sf-review-rating label {
    padding: 0 2px;
    color: #cbd5e1;
    cursor: pointer;
    font-size: 1.4rem;
    line-height: 1;
    transition: color .15s ease;
}

.sf-review-rating label:hover,
.sf-review-rating label:hover ~ label,
.sf-review-rating input:checked + label,
.sf-review-rating input:checked ~ label {
    color: #f59e0b;
}

.sf-review-rating input:focus-visible + label {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

.sf-product-review-form__fields {
    display: grid;
    gap: 10px;
}

.sf-product-review-form__fields label {
    display: grid;
    gap: 5px;
    color: #475569;
    font-size: .78rem;
}

.sf-product-review-form__fields label span {
    color: #94a3b8;
}

.sf-product-review-form__fields input,
.sf-product-review-form__fields textarea {
    width: 100%;
    min-height: 38px;
    padding: 9px 11px;
    border: 1px solid #e2e8f0;
    border-radius: 9px;
    background: #fff;
    color: #1e293b;
    font: inherit;
    font-size: .84rem;
}

.sf-product-review-form__fields textarea {
    min-height: 78px;
    resize: vertical;
}

.sf-product-review-form__fields input:focus,
.sf-product-review-form__fields textarea:focus {
    border-color: #94a3b8;
    outline: 0;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, .1);
}

.sf-product-review-submit {
    min-height: 42px;
    margin-top: 2px;
    border-radius: 12px;
    font-size: .86rem;
}

.sf-product-flashes {
    display: grid;
    gap: 8px;
    margin-bottom: 18px;
}

.sf-product-flash {
    padding: 12px 16px;
    border: 1px solid transparent;
    border-radius: 12px;
    font-size: .86rem;
}

.sf-product-flash--success {
    border-color: rgba(34, 124, 74, .18);
    background: rgba(34, 124, 74, .08);
    color: #236b45;
}

.sf-product-flash--error {
    border-color: rgba(198, 40, 40, .18);
    background: rgba(198, 40, 40, .08);
    color: #8e1e1e;
}

.sf-product-shipping-grid {
    grid-template-columns: 1fr;
}

.sf-product-shipping-card {
    display: grid;
    gap: 12px;
    padding: 24px;
}

.sf-product-related {
    display: grid;
    gap: 20px;
    margin-top: 8px;
}

.sf-product-related__intro h2 {
    margin: 0;
    font-size: 1.55rem;
    font-weight: 700;
    color: #0f172a;
}

.sf-product-related__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}

.sf-product-card--related {
    overflow: hidden;
    border: 1px solid #e7ecf2;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(15, 23, 42, .04);
}

.sf-product-card--related .sf-product-card__media {
    aspect-ratio: 1 / 1;
    background: #ffffff;
    border-bottom: 1px solid #eef2f6;
}

.sf-product-card--related .sf-product-card__image,
.sf-product-card--related .sf-product-card__hover {
    object-fit: contain;
    padding: 22px;
}

.sf-product-card--related .sf-product-card__body {
    grid-template-rows: auto auto auto auto;
    gap: 8px;
    padding: 14px 14px 14px;
}

.sf-product-card--related .sf-product-card__category {
    font-size: .68rem;
    letter-spacing: .14em;
}

.sf-product-card--related .sf-product-card__title {
    min-height: 2.9em;
    font-size: 1rem;
    line-height: 1.42;
    font-weight: 400;
}

.sf-product-card--related .sf-product-card__price {
    justify-content: flex-start;
    min-height: 0;
    text-align: left;
    gap: 12px;
}

.sf-product-card--related .sf-product-card__price-copy {
    gap: 4px;
    justify-items: start;
    text-align: left;
}

.sf-product-card--related .sf-product-card__price strong {
    font-size: 1.12rem;
}

.sf-product-card--related .sf-product-card__compare {
    font-size: .78rem;
}

.sf-product-card--related .sf-product-card__discount {
    min-width: 40px;
    min-height: 30px;
    padding: 0 8px;
    border-radius: 10px;
    box-shadow: none;
}

.sf-product-card--related .sf-product-card__actions {
    margin-top: 2px;
}

.sf-product-card--related .sf-product-card__cta--related {
    width: 100%;
    min-height: 46px;
    border-radius: 999px;
    background: #1aa39c;
    color: #fff;
    box-shadow: none;
    font-size: .91rem;
    font-weight: 600;
}

.sf-product-card--related .sf-product-card__cta--related:hover {
    background: #148780;
}

.sf-product-card--related .sf-product-card__cta-icon,
.sf-product-card--related .sf-product-card__cta-icon svg {
    width: 16px;
    height: 16px;
}

.sf-product__facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 18px;
    align-items: start;
}

.sf-product__fact {
    display: grid;
    gap: 3px;
    padding: 0;
    min-width: 0;
}

.sf-product__facts--boxed {
    gap: 0;
    padding: 12px 18px;
    border: 1px solid #ddd6cf;
    border-radius: 18px;
    background: #fff;
}

.sf-product__fact span {
    font-size: .64rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--store-muted);
}

.sf-product__fact strong {
    font-size: .84rem;
    line-height: 1.35;
    font-weight: 500;
    color: var(--store-text);
    word-break: break-word;
}

.sf-product__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    align-items: center;
}

.sf-product__meta-item {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    min-width: 0;
    color: var(--store-muted);
    font-size: .76rem;
    line-height: 1.3;
}

.sf-product__meta-item span {
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: .62rem;
}

.sf-product__meta-item strong {
    color: var(--store-text);
    font-size: .76rem;
    font-weight: 500;
}

.sf-product__purchase,
.sf-product__cart-form {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    width: 100%;
}

.sf-button--product {
    width: 100%;
    min-height: 58px;
    background: #0f8a62;
    border-color: #0f8a62;
    box-shadow: 0 16px 28px rgba(15, 138, 98, .16);
    font-size: .95rem;
    font-weight: 600;
    letter-spacing: .04em;
}

.sf-button--product-detail {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 0 28px;
    border-radius: 20px;
    margin-top: 8px;
    font-size: 1rem;
}

.sf-button--product-detail > * {
    pointer-events: none;
}

.sf-button--product-copy {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.sf-button--product-cart {
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.sf-button--product-cart svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.sf-button--product:disabled {
    opacity: .56;
    cursor: not-allowed;
    box-shadow: none;
}

.sf-product-benefits {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
}

.sf-product-benefit {
    display: grid;
    justify-items: center;
    gap: 6px;
    padding: 16px 14px 14px;
    text-align: center;
    border: 1px solid #dbeee7;
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff, #fbfefd);
}

.sf-product-benefit__icon {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #0f8a62;
}

.sf-product-benefit__icon svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.sf-product-benefit strong {
    font-size: .9rem;
    font-weight: 600;
    color: #111827;
}

.sf-product-benefit span:last-child {
    color: #64748b;
    font-size: .74rem;
    line-height: 1.35;
}

.sf-variant-head {
    display: block;
}

.sf-variant-meta {
    display: grid;
    gap: 2px;
}

.sf-variant-label,
.sf-footer__title {
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: .66rem;
    color: var(--store-muted);
}

.sf-variant-value {
    font-size: .86rem;
    font-family: var(--store-font-menu);
    color: var(--store-text);
    font-weight: 600;
}

.sf-swatches {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}

.sf-swatch {
    width: 32px;
    height: 32px;
    display: inline-flex;
    border-radius: 999px;
    border: 1px solid #d8d2cb;
    background: var(--swatch);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .35);
}

.sf-swatch.is-active {
    box-shadow: 0 0 0 3px rgba(17, 17, 17, .07);
}

.sf-size-grid {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.sf-stock-note {
    display: inline-flex;
    width: fit-content;
    max-width: 100%;
    margin: 0;
    padding: 6px 10px;
    border-radius: 999px;
    background: #faf7f2;
    border: 1px solid #ddd6cf;
    line-height: 1.2;
    font-size: .68rem;
    color: var(--store-muted);
}

.sf-stock-note[hidden] {
    display: none !important;
}

.sf-cart-toast {
    position: fixed;
    top: 22px;
    right: 22px;
    z-index: 90;
    width: min(calc(100vw - 24px), 360px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .22s ease, transform .22s ease;
}

.sf-cart-toast.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.sf-cart-toast__card {
    display: grid;
    gap: 14px;
    padding: 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .99);
    border: 1px solid rgba(15, 23, 42, .08);
    box-shadow: 0 20px 48px rgba(15, 23, 42, .16);
    text-align: left;
    position: relative;
}

.sf-cart-toast__close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 28px;
    height: 28px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: #64748b;
    font-size: 1.25rem;
    line-height: 1;
}

.sf-cart-toast__head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-right: 28px;
}

.sf-cart-toast__status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 999px;
    background: #e8f7ee;
    flex: 0 0 auto;
}

.sf-cart-toast__status img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(39%) sepia(19%) saturate(1147%) hue-rotate(92deg) brightness(92%) contrast(84%);
}

.sf-cart-toast__head strong {
    color: #17120f;
    font-size: 1.02rem;
    font-weight: 700;
}

.sf-cart-toast__product {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
}

.sf-cart-toast__thumb {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid #eef2f7;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.sf-cart-toast__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sf-cart-toast__thumb span {
    color: #94a3b8;
    font-size: .72rem;
}

.sf-cart-toast__meta {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.sf-cart-toast__meta > span {
    color: #334155;
    font-size: .92rem;
    line-height: 1.35;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sf-cart-toast__meta strong {
    color: #111827;
    font-size: 1rem;
    font-weight: 700;
}

.sf-cart-toast__action {
    min-height: 44px;
    padding: 0 18px;
    border-radius: 12px;
    background: #182338;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .94rem;
    font-weight: 600;
    text-decoration: none;
}

body.has-modal-open {
    overflow: hidden;
}

.sf-marketing-popup {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: grid;
    place-items: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .24s ease;
}

.sf-marketing-popup.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.sf-marketing-popup__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, .5);
    backdrop-filter: blur(4px);
}

.sf-marketing-popup__dialog {
    position: relative;
    z-index: 1;
    width: min(900px, calc(100vw - 32px));
    display: grid;
    grid-template-columns: minmax(280px, 1fr) minmax(320px, 380px);
    border-radius: 22px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 26px 80px rgba(15, 23, 42, .24);
}

.sf-marketing-popup__close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, .92);
    color: #475569;
    font-size: 1.5rem;
    line-height: 1;
    box-shadow: 0 10px 24px rgba(15, 23, 42, .12);
}

.sf-marketing-popup__promo {
    display: grid;
    align-content: center;
    gap: 10px;
    min-height: 100%;
    padding: 42px 38px;
    color: #fff;
    background:
        radial-gradient(circle at 16% 20%, rgba(255,255,255,.1), transparent 34%),
        radial-gradient(circle at 88% 82%, rgba(255,255,255,.08), transparent 28%),
        linear-gradient(135deg, #1d2ea6 0%, #1b1f8c 100%);
}

.sf-marketing-popup__promo-image {
    width: 112px;
    height: 112px;
    object-fit: cover;
    border-radius: 18px;
    margin-bottom: 6px;
}

.sf-marketing-popup__eyebrow {
    font-size: .82rem;
    letter-spacing: .28em;
    text-transform: uppercase;
    opacity: .85;
}

.sf-marketing-popup__discount {
    font-size: clamp(2.6rem, 6vw, 4.6rem);
    line-height: .96;
    letter-spacing: -.05em;
    font-weight: 700;
}

.sf-marketing-popup__headline {
    font-size: 1.45rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.sf-marketing-popup__promo p {
    max-width: 34ch;
    margin: 0;
    color: rgba(255,255,255,.86);
    font-size: .95rem;
    line-height: 1.7;
}

.sf-marketing-popup__form {
    display: grid;
    align-content: center;
    gap: 14px;
    padding: 40px 32px;
    background: #fff;
}

.sf-marketing-popup__form label {
    display: grid;
    gap: 6px;
}

.sf-marketing-popup__form span {
    color: #334155;
    font-size: .88rem;
    font-weight: 500;
}

.sf-marketing-popup__form input[type="email"],
.sf-marketing-popup__form input[type="tel"] {
    width: 100%;
    min-height: 52px;
    padding: 0 16px;
    border-radius: 14px;
    border: 1px solid #cad5e2;
    background: #fff;
    color: #0f172a;
    font-size: .96rem;
}

.sf-marketing-popup__check {
    grid-template-columns: 18px minmax(0, 1fr);
    align-items: flex-start;
    gap: 10px !important;
}

.sf-marketing-popup__check input {
    margin-top: 2px;
}

.sf-marketing-popup__check span {
    font-size: .88rem;
    line-height: 1.45;
    font-weight: 400;
}

.sf-marketing-popup__dismiss {
    display: flex !important;
    grid-template-columns: none !important;
    align-items: center;
    gap: 8px !important;
    margin: -4px 0 0;
    cursor: pointer;
}

.sf-marketing-popup__dismiss input {
    width: 14px;
    height: 14px;
    margin: 0;
    accent-color: #1d2ea6;
    cursor: pointer;
}

.sf-marketing-popup__dismiss span {
    color: #64748b;
    font-size: .78rem;
    line-height: 1.35;
    font-weight: 400;
}

.sf-marketing-popup__feedback {
    margin: 0;
    font-size: .85rem;
    line-height: 1.45;
}

.sf-marketing-popup__feedback.is-success {
    color: #15803d;
}

.sf-marketing-popup__feedback.is-error {
    color: #dc2626;
}

.sf-assistant {
    position: fixed;
    right: 24px;
    bottom: 14px;
    z-index: 95;
}

.sf-assistant__fab {
    width: 64px;
    height: 64px;
    min-width: 64px;
    min-height: 64px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 18px 44px rgba(18, 140, 126, .34);
}

.sf-assistant__fab svg {
    width: 34px;
    height: 34px;
    fill: #fff;
    display: block;
}

.sf-assistant__panel {
    position: absolute;
    right: 0;
    bottom: calc(100% + 10px);
    width: min(360px, calc(100vw - 24px));
    border-radius: 22px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, .08);
    box-shadow: 0 28px 64px rgba(15, 23, 42, .22);
}

.sf-assistant__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 18px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #fff;
}

.sf-assistant__header strong {
    font-size: .98rem;
    font-weight: 600;
}

.sf-assistant__header button {
    width: 30px;
    height: 30px;
    border: 0;
    border-radius: 999px;
    background: rgba(255,255,255,.14);
    color: #fff;
    font-size: 1.25rem;
    line-height: 1;
}

.sf-assistant__body {
    display: grid;
    gap: 14px;
    padding: 18px;
}

.sf-assistant__bubble {
    padding: 14px 16px;
    border-radius: 16px;
    background: #f6f7fb;
    color: #334155;
    font-size: .92rem;
    line-height: 1.55;
}

.sf-assistant__options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.sf-assistant__option {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 999px;
    background: #f2f4f8;
    color: #1f2937;
    font-size: .88rem;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    transition: background-color .2s ease, color .2s ease, transform .2s ease;
}

.sf-assistant__option:hover {
    background: #e8f8ef;
    color: #128c7e;
    transform: translateY(-1px);
}

@media (max-width: 760px) {
    .sf-assistant {
        right: 16px;
        bottom: 96px;
    }

    .sf-assistant__fab {
        width: 60px;
        height: 60px;
        min-width: 60px;
        min-height: 60px;
    }

    .sf-assistant__fab svg {
        width: 30px;
        height: 30px;
    }
}

.sf-size-chip {
    min-width: 56px;
    min-height: 42px;
    border-radius: 999px;
    border: 1px solid color-mix(in srgb, var(--store-border) 90%, transparent);
    background: transparent;
}

.sf-size-chip.is-active {
    background: var(--store-accent);
    border-color: var(--store-accent);
    color: #fff;
    box-shadow: 0 18px 30px rgba(47, 33, 22, .14);
}

.storefront-preview--product .sf-link-button {
    color: var(--store-text);
}

.sf-footer {
    margin-top: 24px;
    border-top: 1px solid color-mix(in srgb, var(--store-border) 90%, transparent);
    background: color-mix(in srgb, var(--store-surface) 84%, transparent);
}

.sf-footer__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(180px, .4fr));
    gap: 28px;
    padding: 30px 0 40px;
}

.sf-footer__inner.sf-footer__inner--columns {
    grid-template-columns: minmax(220px, 300px) minmax(0, 1fr) !important;
    gap: 36px;
    padding: 24px 0 18px;
}

.sf-footer__brand,
.sf-footer__group {
    display: grid;
    align-content: start;
    gap: 12px;
}

.sf-footer__inner.sf-footer__inner--columns .sf-footer__brand {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.sf-footer__inner.sf-footer__inner--columns .sf-footer__links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    width: 100%;
}

.sf-footer__inner.sf-footer__inner--columns .sf-footer__group {
    gap: 6px;
    padding-left: 0;
    border-left: 0;
}

.sf-footer__brand p,
.sf-footer__group a {
    margin: 0;
    color: var(--store-muted);
}

.sf-footer__group a {
    padding-left: 0;
    font-size: .78rem;
    line-height: 1.35;
}

.sf-footer__group a::before {
    content: none;
}

.sf-footer__group a:hover,
.storefront-preview--product .sf-link-button:hover {
    color: var(--store-text);
}

.sf-mobile-menu.is-open,
.sf-button:hover,
.sf-link-button:hover,
.sf-size-chip:hover,
.sf-swatch:hover,
.sf-whatsapp__trigger:hover {
    transform: translateY(-1px);
}

@media (max-width: 920px) {
    .sf-catalog-hero {
        grid-template-columns: 1fr;
    }

    .sf-catalog-search {
        grid-template-columns: 1fr;
    }

    .sf-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

    .sf-product-tabs__nav {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 4px;
        scrollbar-width: none;
    }

    .sf-product-tabs__nav::-webkit-scrollbar {
        display: none;
    }

    .sf-product-tabs__trigger {
        flex: 0 0 auto;
    }

    .sf-product-reviews-card {
        grid-template-columns: 1fr;
    }

    .sf-product-reviews-content {
        grid-template-columns: 1fr;
    }

    .sf-product-review-item__head time {
        margin-left: 0;
    }

    .sf-product-shipping-grid,
    .sf-product-related__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sf-product-benefits {
        grid-template-columns: 1fr;
    }

    .sf-has-bottom-nav {
        padding-bottom: calc(var(--sf-mobile-bottom-nav-clearance) + env(safe-area-inset-bottom, 0px));
    }

    .sf-header__inner {
        grid-template-columns: auto 1fr auto;
        gap: 6px;
        width: min(calc(100% - 18px), var(--store-content-width));
        min-height: 70px;
    }

    .sf-nav {
        display: none;
    }

    .sf-mobile-menu-toggle {
        display: inline-flex;
        justify-self: start;
    }

    .sf-tools .sf-icon-link:nth-child(2) {
        display: none;
    }

    .sf-mobile-menu {
        position: absolute;
        top: calc(100% - 1px);
        left: 8px;
        right: auto;
        width: min(320px, calc(100vw - 16px));
        z-index: 45;
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        margin: 0;
        padding: 14px;
        border-radius: var(--store-radius);
        background: rgba(255, 253, 249, .98);
        box-shadow: 0 24px 48px rgba(23, 18, 15, .14);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-10px) scale(.98);
        transform-origin: top left;
        transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
    }

    .sf-mobile-menu.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0) scale(1);
    }

    .sf-mobile-bottom-nav {
        position: fixed;
        left: max(8px, env(safe-area-inset-left, 0px));
        right: max(8px, env(safe-area-inset-right, 0px));
        bottom: calc(var(--sf-mobile-bottom-nav-offset) + env(safe-area-inset-bottom, 0px));
        margin-inline: auto;
        z-index: 40;
        width: min(calc(100vw - 16px - env(safe-area-inset-left, 0px) - env(safe-area-inset-right, 0px)), var(--sf-mobile-bottom-nav-max-width));
        max-width: var(--sf-mobile-bottom-nav-max-width);
        padding: 7px 7px 8px;
        border-radius: 24px;
        background: color-mix(in srgb, var(--store-mobile-bottom-nav-bg) 96%, white 4%);
        border: 1px solid rgba(72, 48, 30, .12);
        box-shadow: 0 22px 50px rgba(35, 26, 20, .12);
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 4px;
        backdrop-filter: blur(20px);
    }

    .sf-mobile-bottom-nav__item {
        display: grid;
        justify-items: center;
        gap: 3px;
        padding: 6px 3px 4px;
        border-radius: 16px;
        color: var(--store-mobile-bottom-nav-text);
        transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
    }

    .sf-mobile-bottom-nav__item.is-active {
        background: var(--store-mobile-bottom-nav-active-bg);
        color: var(--store-mobile-bottom-nav-active-text);
        box-shadow: inset 0 0 0 1px rgba(72, 48, 30, .08);
    }

    .sf-mobile-bottom-nav__icon {
        position: relative;
        width: 34px;
        height: 34px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 12px;
    }

    .sf-mobile-bottom-nav__icon img {
        width: 28px;
        height: 28px;
        object-fit: contain;
        opacity: .82;
        filter: brightness(0) saturate(100%) invert(33%) sepia(11%) saturate(832%) hue-rotate(343deg) brightness(92%) contrast(87%);
    }

    .sf-mobile-bottom-nav__item.is-active .sf-mobile-bottom-nav__icon {
        background: transparent;
        box-shadow: none;
    }

    .sf-mobile-bottom-nav__item.is-active .sf-mobile-bottom-nav__icon img {
        opacity: 1;
        filter: brightness(0) saturate(100%) invert(10%) sepia(16%) saturate(936%) hue-rotate(343deg) brightness(95%) contrast(92%);
    }

    .sf-mobile-bottom-nav__label {
        font-family: var(--store-font-menu);
        font-size: .68rem;
        line-height: 1.15;
        font-weight: 500;
        text-align: center;
    }

    .sf-mobile-bottom-nav__badge {
        position: absolute;
        top: -6px;
        right: -2px;
        min-width: 24px;
        height: 24px;
        padding: 0 7px;
        border-radius: 999px;
        background: #ef4444;
        color: #ffffff;
        font-size: .76rem;
        font-weight: 700;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        line-height: 1;
        white-space: nowrap;
        box-shadow: 0 8px 14px rgba(239, 68, 68, .24);
    }

    .sf-mobile-menu__links,
    .sf-mobile-menu__actions {
        display: grid;
        gap: 10px;
    }

    .sf-mobile-menu__links a {
        font-family: var(--store-font-menu);
        text-transform: uppercase;
        letter-spacing: .14em;
        font-size: .72rem;
        line-height: 1.15;
    }

    .sf-mobile-action {
        display: inline-flex;
        align-items: center;
        gap: 9px;
        min-height: 46px;
        padding: 0 14px;
        border-radius: 16px;
        border: 1px solid color-mix(in srgb, var(--store-border) 82%, transparent);
        background: color-mix(in srgb, var(--store-surface) 98%, transparent);
        font-family: var(--store-font-menu);
        font-size: .86rem;
        font-weight: 400;
    }

    .sf-mobile-action img {
        flex: 0 0 36px;
        filter: brightness(0) saturate(100%) invert(10%) sepia(16%) saturate(936%) hue-rotate(343deg) brightness(95%) contrast(92%);
    }

    .sf-brand--lockup {
        justify-self: center;
        gap: 7px;
        min-width: 0;
    }

    .sf-brand__logo {
        width: clamp(190px, 54vw, 230px);
        height: 48px;
        object-position: center;
    }

    .sf-brand__mark {
        width: 32px;
        height: 32px;
        border-radius: 10px;
        font-size: .68rem;
        letter-spacing: .14em;
    }

    .sf-brand__wordmark {
        max-width: 122px;
        font-size: .72rem;
        letter-spacing: .035em;
        line-height: 1.1;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .sf-tools {
        gap: 1px;
        justify-self: end;
        flex-wrap: nowrap;
    }

    .sf-icon-link {
        width: 36px;
        height: 36px;
        flex: 0 0 36px;
    }

    .sf-icon-link img,
    .sf-mobile-menu-toggle svg {
        width: 22px;
        height: 22px;
    }

    .sf-icon-link--bag {
        width: 38px;
        flex-basis: 38px;
    }

    .sf-icon-link--bag img,
    .sf-icon-link[aria-label*="hesap"] img,
    .sf-icon-link[aria-label*="giri"] img {
        width: 26px;
        height: 26px;
        transform: none;
    }

    .sf-icon-badge {
        top: 1px;
        right: 0;
        min-width: 16px;
        height: 16px;
        padding: 0 4px;
        font-size: .44rem;
        font-weight: 500;
    }

    .sf-mobile-menu-toggle {
        width: 36px;
        height: 36px;
    }

    .sf-mobile-menu-toggle svg {
        stroke-width: 1.25;
    }

    .sf-hero {
        height: min(var(--store-slider-mobile-height), 48svh);
        min-height: 0;
    }

    .sf-hero__slide,
    .sf-hero__shell {
        height: min(var(--store-slider-mobile-height), 48svh);
        min-height: 0;
    }

    .sf-hero__shell {
        align-items: center;
        padding: 14px 0;
    }

    .sf-auth {
        min-height: auto;
        padding: 28px 0 40px;
    }

    .sf-auth__shell {
        width: min(calc(100% - 28px), var(--store-content-width));
        grid-template-columns: 1fr;
    }

    .sf-auth__card {
        order: -1;
    }

    .sf-auth__intro,
    .sf-auth__card {
        padding: 24px;
    }

    .sf-auth__intro h1 {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .sf-hero__content {
        gap: 12px;
        justify-items: flex-start;
        text-align: left;
        width: calc(100% - 20px);
        margin: 0 10px;
        padding-inline: 0;
    }

    .sf-hero__content h1 {
        font-size: clamp(1.68rem, 7.4vw, 2.5rem);
        line-height: 1.08;
    }

    .sf-hero__slide--video .sf-hero__media video {
        object-position: 74% center;
    }

    .sf-hero__dots {
        left: 50%;
        right: auto;
        bottom: 14px;
        transform: translateX(-50%);
        justify-content: center;
    }

    .sf-collection-grid,
    .sf-editorial-banner,
    .sf-product,
    .sf-footer__inner {
        grid-template-columns: 1fr;
    }

    .sf-footer__inner.sf-footer__inner--columns,
    .sf-footer__inner.sf-footer__inner--columns .sf-footer__links {
        grid-template-columns: 1fr !important;
        gap: 12px;
    }

    .sf-footer__inner.sf-footer__inner--columns .sf-footer__group {
        padding-left: 0;
        border-left: 0;
        padding-top: 0;
        border-top: 0;
    }

    .sf-product__media > img,
    .sf-product__media > [data-product-image] {
        min-height: 58svh;
    }

    .sf-product-lightbox {
        padding: 12px;
    }

    .sf-product-lightbox__dialog {
        padding: 12px;
        border-radius: 20px;
    }

    .sf-product-lightbox__viewer {
        grid-template-columns: 44px minmax(0, 1fr) 44px;
        gap: 6px;
        min-height: min(70vh, 620px);
    }

    .sf-product-lightbox__arrow {
        width: 44px;
        height: 44px;
    }

    .sf-product__thumb-grid {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 4px;
        scrollbar-width: none;
    }

    .sf-product__thumb {
        flex: 0 0 74px;
        width: 74px;
        height: 74px;
        aspect-ratio: 1 / 1;
    }

    .sf-product__thumb img {
        height: 74px;
    }

    .sf-product__purchase,
    .sf-product__cart-form,
    .sf-hero__actions {
        width: 100%;
    }

    .sf-hero__actions {
        justify-content: center;
        align-items: center;
    }

    .sf-product__facts {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px 12px;
    }

    .sf-product__price-row {
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
    }

    .sf-variant-group--card {
        grid-template-columns: minmax(74px, auto) minmax(0, 1fr);
        align-items: center;
        padding: 8px 10px;
    }

    .sf-product__fact strong {
        font-size: .8rem;
    }

    .sf-shell {
        width: min(calc(100% - 28px), var(--store-content-width));
    }
}

@media (max-width: 560px) {
    .sf-product {
        gap: 16px;
        padding-top: 18px;
    }

    .sf-product__media > img,
    .sf-product__media > [data-product-image] {
        min-height: 42svh;
    }

    .sf-product__thumb-grid {
        gap: 10px;
    }

    .sf-product__thumb {
        flex-basis: 68px;
        width: 68px;
        height: 68px;
        border-radius: 18px;
    }

    .sf-product__thumb img {
        height: 68px;
    }

    .sf-product__facts {
        grid-template-columns: 1fr;
    }

    .sf-product__price-row {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 8px;
        align-items: center;
    }

    .sf-product__price-card {
        min-height: 52px;
        padding: 9px 14px;
        border-radius: 16px;
    }

    .sf-product__price-card strong {
        font-size: 1.18rem;
    }

    .sf-product__price-card em {
        font-size: .9rem;
    }

    .sf-variant-group {
        gap: 6px;
    }

    .sf-variant-group--card {
        grid-template-columns: minmax(68px, auto) minmax(0, 1fr);
        align-items: center;
        gap: 6px;
        padding: 8px 10px;
        border-radius: 16px;
    }

    .sf-variant-head,
    .sf-variant-meta {
        display: grid;
        gap: 1px;
    }

    .sf-variant-label {
        font-size: 12px;
        letter-spacing: .1em;
    }

    .sf-variant-value {
        font-size: 14px;
    }

    .sf-swatches,
    .sf-size-grid {
        gap: 6px;
        justify-content: flex-start;
        align-items: center;
    }

    .sf-swatch {
        width: 30px;
        height: 30px;
    }

    .sf-size-chip {
        min-width: 46px;
        min-height: 36px;
        font-size: .86rem;
    }

    .sf-product__details h1 {
        font-size: 14px;
        line-height: 1.4;
    }

    .sf-product__description,
    .sf-product-info-copy p,
    .sf-product-empty-card p,
    .sf-product-shipping-card p,
    .sf-product-benefit span:last-child,
    .sf-product__meta-item,
    .sf-product__meta-item strong,
    .sf-product__meta-item span,
    .sf-product-info-grid span {
        font-size: 12px;
        line-height: 1.6;
    }

    .sf-product-tabs__trigger,
    .sf-product-info-card h3,
    .sf-product-shipping-card h3,
    .sf-product-info-grid strong,
    .sf-product-benefit strong,
    .sf-variant-value {
        font-size: 14px;
    }

    .sf-product-tabs__trigger {
        gap: 6px;
        min-height: 38px;
        padding: 0 8px;
    }

    .sf-product-tabs__trigger svg {
        width: 14px;
        height: 14px;
    }

    .sf-product-tabs {
        gap: 14px;
    }

    .sf-cart-toast {
        top: 12px;
        right: 12px;
        left: 12px;
        width: auto;
    }

    .sf-product-tabs__panel {
        padding: 18px;
        border-radius: 20px;
    }

    .sf-product-info-grid,
    .sf-product-shipping-grid,
    .sf-product-related__grid {
        grid-template-columns: 1fr;
    }

    .sf-product-card--related .sf-product-card__body {
        gap: 8px;
        padding: 14px 14px 16px;
    }

    .sf-product-card--related .sf-product-card__title {
        font-size: .98rem;
    }

    .sf-product-benefit {
        grid-template-columns: 38px minmax(0, 1fr);
        justify-items: start;
        align-items: center;
        text-align: left;
    }

    .sf-product-benefit__icon {
        grid-row: span 2;
    }

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

    .sf-product-card__media {
        padding: 0;
    }

    .sf-product-card__hover {
        inset: 0;
    }
}

@media (max-width: 520px) {
    .sf-product-related {
        gap: 12px;
        margin-top: 0;
    }

    .sf-product-related__intro h2 {
        font-size: 1rem;
        line-height: 1.2;
        font-weight: 600;
    }

    .sf-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .sf-product-card {
        border-radius: 18px;
    }

    .sf-product-card--related {
        border-radius: 16px;
        box-shadow: none;
    }

    .sf-product-card--related .sf-product-card__body {
        gap: 6px;
        padding: 10px 10px 12px;
    }

    .sf-product-card__body {
        grid-template-rows: auto minmax(30px, auto) auto auto;
        gap: 4px;
        padding: 6px 6px 8px;
    }

    .sf-product-card__category {
        display: none;
    }

    .sf-product-card__title {
        font-size: .62rem;
        line-height: 1.2;
        min-height: 2.4em;
    }

    .sf-product-card__price {
        gap: 4px;
        min-height: 0;
    }

    .sf-product-card__price strong {
        font-size: .72rem;
    }

    .sf-product-card__compare {
        font-size: .48rem;
    }

    .sf-product-card__discount {
        min-width: 22px;
        min-height: 16px;
        padding: 0 4px;
        border-radius: 6px;
        font-size: .48rem;
    }

    .sf-product-card__price-current {
        font-size: .78rem;
    }

    .sf-product-card__meta {
        font-size: .58rem;
    }

    .sf-product-card__actions {
        gap: 5px;
    }

    .sf-product-card__purchase {
        grid-template-columns: 52px minmax(0, 1fr);
        min-height: 26px;
        padding: 1px;
        border: 1px solid #ddd4ca;
        background: #fff;
        border-radius: 999px;
    }

    .sf-product-card__qty {
        justify-content: center;
        gap: 2px;
        min-height: 24px;
        padding: 0 2px;
        border: 0;
        border-radius: 999px;
        background: transparent;
    }

    .sf-product-card__qty-button {
        width: 10px;
        height: 10px;
        font-size: .5rem;
    }

    .sf-product-card__qty-input {
        width: 10px;
        font-size: .5rem;
    }

    .sf-product-card__cta {
        min-height: 24px;
        font-size: .5rem;
    }

    .sf-product-card__cta--inline {
        width: auto;
        min-width: 0;
        min-height: 24px;
        margin-left: 0;
        padding: 0 3px 0 4px;
        gap: 0;
        border: 0;
        border-left: 1px solid #ddd4ca;
        border-radius: 0 999px 999px 0;
        color: #00ab47;
        justify-content: center;
        text-align: center;
        font-size: .5rem;
        line-height: 1;
        letter-spacing: 0;
    }

    .sf-product-card__cta-icon {
        display: none;
    }

    .sf-product-card__cta--inline span:last-child {
        display: block;
        width: 100%;
        white-space: nowrap;
        text-align: center;
    }

    .sf-header__inner {
        grid-template-columns: 36px minmax(0, 1fr) auto;
        gap: 4px;
        width: calc(100% - 14px);
        min-height: 56px;
        overflow: visible;
    }

    .sf-mobile-menu-toggle {
        width: 36px;
        height: 36px;
    }

    .sf-brand--lockup {
        justify-self: center;
        min-width: 0;
        gap: 6px;
    }

    .sf-brand__logo {
        width: clamp(176px, 52vw, 212px);
        height: 44px;
        object-position: center;
    }

    .sf-brand__mark {
        width: 30px;
        height: 30px;
        border-radius: 10px;
        font-size: .64rem;
    }

    .sf-brand__wordmark {
        max-width: 104px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        font-size: .68rem;
        letter-spacing: .025em;
    }

    .sf-tools {
        gap: 2px;
        flex-wrap: nowrap;
    }

    .sf-icon-link {
        width: 36px;
        height: 36px;
        flex: 0 0 36px;
    }

    .sf-icon-link img,
    .sf-mobile-menu-toggle svg {
        width: 24px;
        height: 24px;
    }

    .sf-icon-link--bag {
        width: 38px;
        flex-basis: 38px;
    }

    .sf-icon-link--bag img,
    .sf-icon-link[aria-label*="hesap"] img,
    .sf-icon-link[aria-label*="giri"] img {
        width: 26px;
        height: 26px;
        transform: none;
    }

    .sf-icon-badge {
        top: 1px;
        right: 0;
        min-width: 16px;
        height: 16px;
        padding: 0 4px;
        font-size: .44rem;
        font-weight: 500;
    }

    .sf-shell {
        width: calc(100% - 16px);
    }

    .sf-header-search__inner {
        width: calc(100% - 12px);
        padding: 10px 0 14px;
    }

    .sf-header-search__form {
        grid-template-columns: 1fr;
        padding: 12px;
    }

    .sf-header-search__field {
        height: 48px;
        font-size: .92rem;
    }

    .sf-header-search__results .live-search-item {
        grid-template-columns: 1fr;
    }

    .sf-header-search__results .live-search-item__link {
        grid-template-columns: 62px minmax(0, 1fr);
        gap: 10px;
    }

    .sf-header-search__results .live-search-image {
        width: 62px;
        height: 62px;
        border-radius: 18px;
    }

    .sf-header-search__results .live-search-cart {
        grid-template-columns: 46px minmax(0, 1fr);
    }

    .sf-header-search__results .live-search-cart input,
    .sf-header-search__results .live-search-cart button {
        height: 40px;
    }

    .sf-product {
        gap: 18px;
    }

    .sf-product__media {
        border-radius: 20px;
    }

    .sf-product__media > img,
    .sf-product__media > [data-product-image] {
        min-height: 48svh;
    }

    .sf-product-lightbox__topbar {
        grid-template-columns: minmax(0, 1fr) 36px;
    }

    .sf-product-lightbox__topbar span {
        display: none;
    }

    .sf-product-lightbox__viewer {
        grid-template-columns: 38px minmax(0, 1fr) 38px;
    }

    .sf-product-lightbox__arrow {
        width: 38px;
        height: 38px;
        font-size: 1.9rem;
    }

    .sf-product__thumb-grid {
        gap: 10px;
    }

    .sf-mobile-bottom-nav__item {
        padding: 6px 2px 4px;
    }

    .sf-mobile-bottom-nav__icon {
        width: 34px;
        height: 34px;
    }

    .sf-mobile-bottom-nav__icon img {
        width: 28px;
        height: 28px;
    }

    .sf-mobile-bottom-nav__label {
        font-size: .66rem;
    }
}

@media (max-width: 520px) {
    .sf-product-card,
    .sf-product-card--related {
        border-radius: 18px;
    }

    .sf-product-card__media,
    .sf-product-card--related .sf-product-card__media {
        aspect-ratio: 1 / 1;
        border-radius: 18px 18px 0 0;
        background: #fff;
    }

    .sf-product-card__image,
    .sf-product-card__hover {
        object-fit: cover;
    }

    .sf-product-card__body,
    .sf-product-card--related .sf-product-card__body {
        grid-template-rows: auto auto auto auto;
        gap: 5px;
        padding: 6px 8px 8px;
    }

    .sf-product-card__title,
    .sf-product-card--related .sf-product-card__title {
        min-height: 28px;
        font-size: 11px;
        line-height: 1.25;
        font-weight: 400;
    }

    .sf-product-card__price,
    .sf-product-card--related .sf-product-card__price {
        gap: 5px;
        min-height: 0;
        align-items: end;
    }

    .sf-product-card__price strong,
    .sf-product-card--related .sf-product-card__price strong {
        font-size: 14px;
        line-height: 1;
    }

    .sf-product-card__compare,
    .sf-product-card--related .sf-product-card__compare {
        font-size: 9px;
        line-height: 1;
    }

    .sf-product-card__discount,
    .sf-product-card--related .sf-product-card__discount {
        min-width: 24px;
        min-height: 18px;
        padding: 0 5px;
        border-radius: 7px;
        font-size: 9px;
    }

    .sf-product-card__actions,
    .sf-product-card--related .sf-product-card__actions {
        gap: 6px;
    }

    .sf-product-card__purchase,
    .sf-product-card--related .sf-product-card__purchase {
        grid-template-columns: 64px minmax(0, 1fr);
        min-height: 32px;
        padding: 1px;
        border: 1px solid #ddd4ca;
        border-radius: 999px;
        background: #fff;
        align-items: stretch;
    }

    .sf-product-card__qty,
    .sf-product-card--related .sf-product-card__qty {
        gap: 5px;
        min-height: 30px;
        padding: 0 7px;
        border: 0;
        background: transparent;
    }

    .sf-product-card__qty-button,
    .sf-product-card--related .sf-product-card__qty-button {
        width: 12px;
        height: 12px;
        font-size: 10px;
    }

    .sf-product-card__qty-input,
    .sf-product-card--related .sf-product-card__qty-input {
        width: 12px;
        font-size: 10px;
        font-weight: 500;
    }

    .sf-product-card__cta,
    .sf-product-card--related .sf-product-card__cta {
        min-height: 28px;
    }

    .sf-product-card__cta--inline,
    .sf-product-card--related .sf-product-card__cta--inline {
        min-width: 0;
        min-height: 30px;
        padding: 0 6px;
        border: 0;
        border-left: 1px solid #ddd4ca;
        border-radius: 0 999px 999px 0;
        color: #00ab47;
        background: transparent;
        box-shadow: none;
        justify-content: center;
        align-items: center;
        text-align: center;
        font-size: 10px;
        font-weight: 600;
        line-height: 1;
        letter-spacing: 0;
        overflow: visible;
        white-space: nowrap;
    }

    .sf-product-card__cta-icon,
    .sf-product-card--related .sf-product-card__cta-icon {
        display: none;
    }

    .sf-product-card__cta-label,
    .sf-product-card--related .sf-product-card__cta-label {
        display: block;
        white-space: nowrap;
        text-align: center;
    }
}

/* Final icon normalization: keep header and bottom navigation consistent on every storefront page. */
.sf-header .sf-icon-link {
    width: 44px;
    height: 44px;
}

.sf-header .sf-icon-link img {
    width: 26px;
    height: 26px;
}

.sf-header .sf-icon-link--bag img,
.sf-header .sf-icon-link[aria-label*="hesap"] img,
.sf-header .sf-icon-link[aria-label*="giri"] img {
    width: 29px;
    height: 29px;
}

.sf-header .sf-icon-badge,
.sf-mobile-bottom-nav__badge {
    min-width: 17px;
    height: 17px;
    padding: 0 5px;
    font-size: .52rem;
    font-weight: 500;
    line-height: 1;
}

.sf-header .sf-icon-badge {
    top: 2px;
    right: 0;
}

.sf-mobile-bottom-nav__icon {
    width: 32px;
    height: 32px;
}

.sf-mobile-bottom-nav__icon img {
    width: 25px;
    height: 25px;
}

.sf-mobile-bottom-nav__item[data-bottom-nav-icon="store"] .sf-mobile-bottom-nav__icon img {
    width: 22px;
    height: 22px;
}

.sf-mobile-bottom-nav__badge {
    top: -4px;
    right: -3px;
}

@media (max-width: 760px) {
    .sf-header .sf-icon-link {
        width: 38px;
        height: 38px;
        flex: 0 0 38px;
    }

    .sf-header .sf-icon-link img {
        width: 24px;
        height: 24px;
    }

    .sf-header .sf-icon-link--bag img,
    .sf-header .sf-icon-link[aria-label*="hesap"] img,
    .sf-header .sf-icon-link[aria-label*="giri"] img {
        width: 28px;
        height: 28px;
    }

    .sf-header .sf-icon-badge {
        top: 1px;
        right: 0;
        min-width: 16px;
        height: 16px;
        padding: 0 4px;
        font-size: .48rem;
    }
}

/* Final mobile header and footer polish. Keep these overrides at the end. */
button.sf-footer__title {
    border: 0;
    background: transparent;
    padding: 0;
    font: inherit;
    text-align: left;
    color: inherit;
    cursor: default;
}

.sf-footer__panel {
    display: grid;
    gap: 5px;
}

.sf-footer__toggle-icon {
    display: none;
}

@media (max-width: 760px) {
    .sf-header__inner {
        position: relative;
        width: 100%;
        min-height: 56px;
        padding: 0 14px;
        grid-template-columns: 40px 1fr auto !important;
        gap: 6px;
    }

    .sf-header__inner > .sf-mobile-menu-toggle {
        position: relative;
        z-index: 3;
        grid-column: 1;
        width: 38px;
        height: 38px;
    }

    .sf-header__inner > .sf-brand--lockup {
        position: absolute;
        left: 50%;
        z-index: 1;
        justify-content: center;
        max-width: 174px;
        margin: 0;
        transform: translateX(-50%);
    }

    .sf-header .sf-brand__logo {
        width: auto;
        max-width: 162px;
        height: 48px;
        object-fit: contain;
        object-position: center;
    }

    .sf-header__inner > .sf-tools {
        position: relative;
        z-index: 3;
        grid-column: 3;
        gap: 0;
        justify-self: end;
    }

    .sf-footer__inner.sf-footer__inner--columns {
        grid-template-columns: 1fr !important;
        justify-items: center;
        gap: 14px;
        padding: 24px 20px 16px;
        text-align: center;
    }

    .sf-footer__inner.sf-footer__inner--columns .sf-footer__brand {
        width: 100%;
        justify-content: center;
    }

    .sf-footer__inner.sf-footer__inner--columns .sf-footer__brand .sf-brand--lockup {
        justify-content: center;
        margin: 0 auto;
    }

    .sf-footer__inner.sf-footer__inner--columns .sf-footer__links {
        display: grid;
        grid-template-columns: 1fr !important;
        width: min(100%, 320px);
        gap: 0;
        justify-content: center;
    }

    .sf-footer__inner.sf-footer__inner--columns .sf-footer__group {
        width: 100%;
        gap: 0;
        padding: 0;
        border-bottom: 1px solid color-mix(in srgb, var(--store-border) 72%, transparent);
    }

    .sf-footer__inner.sf-footer__inner--columns .sf-footer__group:last-child {
        border-bottom: 0;
    }

    .sf-footer__title {
        width: 100%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 7px;
        margin: 0;
        padding: 5px 0;
        color: var(--store-text);
        font-family: var(--store-font-body);
        font-size: .52rem;
        font-weight: 700;
        letter-spacing: .035em;
        line-height: 1.1;
        text-transform: uppercase;
        cursor: pointer;
    }

    .sf-footer__toggle-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 16px;
        height: 16px;
        color: var(--store-text);
        font-size: .62rem;
        font-weight: 700;
        letter-spacing: 0;
    }

    .sf-footer__panel {
        display: none;
        gap: 4px;
        padding: 0 0 10px;
    }

    .sf-footer__group.is-open .sf-footer__panel {
        display: grid;
    }

    .sf-footer__group a {
        padding: 2px 0;
        font-size: .74rem;
        line-height: 1.25;
        text-align: center;
    }

    .sf-footer__bottom-inner {
        grid-template-columns: 1fr;
        justify-items: center;
        align-items: center;
        justify-content: center;
        gap: 8px;
        text-align: center;
    }

    .sf-footer__credit,
    .sf-footer__brand-note,
    .sf-footer__trust {
        justify-self: center;
        justify-content: center;
        margin-inline: auto;
        text-align: center;
    }

    .sf-footer__credit img {
        max-width: 112px;
        margin-inline: auto;
    }

    .sf-footer__brand-note {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 5px;
        font-size: .66rem;
        line-height: 1.25;
    }

    .sf-footer__brand-note img {
        max-width: 66px;
        margin-inline: auto;
    }

    .sf-footer__trust img {
        max-width: 168px;
        margin-inline: auto;
    }
}

/* Mobile hero copy refinement: smaller description, tighter rhythm, safer side padding. */
@media (max-width: 760px) {
    .sf-hero__content {
        width: calc(100% - 20px);
        gap: 8px;
        padding-inline: 0;
        margin-inline: 10px;
        text-align: left;
        justify-items: flex-start;
    }

    .sf-hero__content h1 {
        max-width: 13.5em;
        margin-inline: 0;
    }

    .sf-hero__content p:last-of-type {
        max-width: 30ch;
        margin-inline: 0;
        font-size: .82rem;
        line-height: 1.45;
        letter-spacing: -.01em;
    }

    .sf-hero__actions {
        justify-content: flex-start;
    }
}

/* Compact footer spacing */
button.sf-footer__title {
    font-size: .64rem;
    font-weight: 800;
    letter-spacing: .12em;
}

.sf-footer--rich {
    margin-top: 28px;
}

.sf-footer__inner.sf-footer__inner--columns {
    gap: 22px;
    padding-top: 24px;
    padding-bottom: 18px;
}

.sf-footer__inner.sf-footer__inner--columns .sf-footer__group {
    gap: 2px;
}

.sf-footer__group a {
    padding: 1px 0;
    line-height: 1.2;
}

.sf-footer__bottom-inner {
    gap: 14px;
    padding-top: 3px;
    padding-bottom: 5px;
}

.sf-footer__credit img {
    max-width: 104px;
}

.sf-footer__brand-note img {
    max-width: 76px;
}

.sf-footer__trust img {
    max-width: 160px;
}

@media (max-width: 720px) {
    .sf-footer__inner.sf-footer__inner--columns {
        gap: 10px;
        padding-top: 18px;
        padding-bottom: 12px;
    }

    .sf-footer__bottom-inner {
        gap: 6px;
        padding-top: 4px;
        padding-bottom: 6px;
    }

    .sf-footer__credit img {
        max-width: 96px;
    }

    .sf-footer__trust img {
        max-width: 145px;
    }

    .sf-footer__brand-note img {
        max-width: 64px;
    }
}

@media (max-width: 420px) {
    .sf-hero__content {
        width: calc(100% - 20px);
    }

    .sf-hero__content p:last-of-type {
        font-size: .78rem;
        line-height: 1.42;
    }
}

/* Storefront header icon reset: custom PNG icons, no search button. */
.sf-header .sf-icon-link[aria-label="Ürün ara"] {
    display: none !important;
}

.sf-header .sf-tools {
    gap: 6px;
}

.sf-header .sf-icon-link {
    width: 42px !important;
    height: 42px !important;
    flex: 0 0 42px !important;
}

.sf-header .sf-icon-link img {
    width: 30px !important;
    height: 30px !important;
    object-fit: contain;
    filter: none !important;
    opacity: 1 !important;
}

.sf-header .sf-icon-link--bag img,
.sf-header .sf-icon-link[aria-label*="hesap"] img,
.sf-header .sf-icon-link[aria-label*="giri"] img,
.sf-header .sf-icon-link[aria-label*="Sipariş"] img {
    width: 30px !important;
    height: 30px !important;
}

.sf-header .sf-icon-link:hover img,
.sf-header .sf-icon-link.is-active img {
    filter: none !important;
    opacity: 1 !important;
}

.sf-icon-link.is-active,
.sf-header .sf-icon-link.is-active {
    border-color: transparent !important;
    background: transparent !important;
    box-shadow: none !important;
}

.sf-header .sf-icon-badge {
    top: 1px !important;
    right: -1px !important;
    min-width: 16px !important;
    height: 16px !important;
    padding: 0 4px !important;
    font-size: 9px !important;
    font-weight: 500 !important;
    line-height: 16px !important;
}

/* Desktop header navigation: stronger type and a more considered premium rhythm. */
@media (min-width: 921px) {
    .sf-header .sf-nav {
        gap: 32px;
        font-size: .84rem;
        font-weight: 600;
        letter-spacing: .12em;
    }

    .sf-header .sf-nav a {
        transition: color .2s ease, opacity .2s ease;
    }

    .sf-header .sf-nav a:hover,
    .sf-header .sf-nav a:focus-visible {
        color: var(--store-accent);
        opacity: .9;
    }
}

@media (max-width: 760px) {
    .sf-header .sf-tools {
        gap: 0;
    }

    .sf-header .sf-icon-link {
        width: 34px !important;
        height: 38px !important;
        flex: 0 0 34px !important;
    }

    .sf-header .sf-icon-link img,
    .sf-header .sf-icon-link--bag img,
    .sf-header .sf-icon-link[aria-label*="hesap"] img,
    .sf-header .sf-icon-link[aria-label*="giri"] img,
    .sf-header .sf-icon-link[aria-label*="Sipariş"] img {
        width: 25px !important;
        height: 25px !important;
    }

    .sf-header .sf-icon-badge {
        top: 2px !important;
        right: -2px !important;
        min-width: 15px !important;
        height: 15px !important;
        padding: 0 4px !important;
        font-size: 8px !important;
        line-height: 15px !important;
    }
}

/* Product gallery: fullscreen viewing without a surrounding card. */
.sf-product-lightbox__dialog {
    width: 100vw;
    height: 100vh;
    max-height: none;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    pointer-events: none;
}

.sf-product-lightbox__topbar {
    position: fixed;
    z-index: 2;
    top: 20px;
    right: 24px;
    left: 24px;
    grid-template-columns: minmax(0, 1fr) auto 46px;
    color: #fff;
    pointer-events: none;
}

.sf-product-lightbox__topbar p,
.sf-product-lightbox__topbar span {
    color: #fff;
    text-shadow: 0 1px 12px rgba(0, 0, 0, .45);
}

.sf-product-lightbox__close {
    border-color: rgba(255, 255, 255, .55);
    background: rgba(15, 13, 12, .35);
    color: #fff;
    pointer-events: auto;
}

.sf-product-lightbox__viewer {
    position: fixed;
    inset: 0;
    z-index: 1;
    grid-template-columns: 76px minmax(0, 1fr) 76px;
    gap: 18px;
    min-height: 0;
    padding: 76px 28px 30px;
    pointer-events: none;
}

.sf-product-lightbox__figure {
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.sf-product-lightbox__figure img {
    width: auto;
    max-width: min(92vw, calc(100vw - 180px));
    height: auto;
    max-height: calc(100vh - 128px);
    object-fit: contain;
}

.sf-product-lightbox__figure figcaption {
    color: rgba(255, 255, 255, .82);
    text-shadow: 0 1px 10px rgba(0, 0, 0, .55);
}

.sf-product-lightbox__arrow {
    border-color: rgba(255, 255, 255, .62);
    background: rgba(15, 13, 12, .32);
    color: #fff;
    pointer-events: auto;
}

.sf-product-lightbox__arrow:hover:not(:disabled) {
    border-color: #fff;
    background: rgba(15, 13, 12, .58);
}

@media (max-width: 560px) {
    .sf-product-lightbox__topbar {
        top: 12px;
        right: 14px;
        left: 14px;
        grid-template-columns: minmax(0, 1fr) 40px;
    }

    .sf-product-lightbox__viewer {
        grid-template-columns: 42px minmax(0, 1fr) 42px;
        gap: 4px;
        padding: 64px 8px 24px;
    }

    .sf-product-lightbox__figure img {
        max-width: calc(100vw - 92px);
        max-height: calc(100vh - 112px);
    }
}

/* Product media standard: 3:4 across storefront product surfaces. */
.sf-product-card__media {
    aspect-ratio: 3 / 4;
}

.sf-product__stage {
    aspect-ratio: 3 / 4;
}

.sf-product__media > img,
.sf-product__media > [data-product-image] {
    height: 100%;
    min-height: 0;
    object-fit: contain;
}

.sf-product__placeholder {
    min-height: 0;
    height: 100%;
}

.sf-product__thumb {
    width: 68px;
    height: 91px;
    aspect-ratio: 3 / 4;
    border-radius: 7px;
}

.sf-product__thumb img {
    height: 100%;
    object-fit: cover;
}

.sf-cart-toast__product {
    grid-template-columns: 56px minmax(0, 1fr);
}

.sf-cart-toast__thumb {
    width: 56px;
    height: 75px;
    aspect-ratio: 3 / 4;
}

/* Product pricing: clean inline layout with a diagonal strike on the old price. */
.sf-product__price-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
}

.sf-product__price-card {
    min-height: 0;
    padding: 0;
    border: 0 !important;
    border-radius: 0;
    background: transparent !important;
}

.sf-product__price-card:not(.sf-product__price-card--primary) {
    display: inline-flex;
    align-items: baseline;
    justify-self: auto;
    gap: 8px;
    padding: 4px 2px;
    overflow: visible;
}

.sf-product__price-card em.sf-product__old-price {
    position: relative;
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
}

.sf-product__price-card .sf-product__old-price-value {
    position: relative;
    display: inline-block;
}

.sf-product__price-card .sf-product__old-price-value::after {
    position: absolute;
    top: 50%;
    right: 1px;
    left: 1px;
    height: 1.5px;
    border-radius: 999px;
    background: #9a8d82;
    content: '';
    transform: rotate(8deg);
    transform-origin: center;
    pointer-events: none;
}

.sf-product__price-card span {
    font-size: .6rem;
    letter-spacing: .12em;
}

.sf-product__price-card em {
    font-size: .94rem;
}

.sf-product__price-card em.sf-product__old-price .sf-product__old-price-value,
.sf-product__price-card em.sf-product__old-price .sf-product__old-price-currency {
    color: #8d8174;
    font-size: .94rem;
    font-weight: 600;
    letter-spacing: normal;
    text-transform: none;
}

.sf-product__price-card em.sf-product__old-price .sf-price-decimals {
    font-size: .7em;
}

.sf-product__price-card--primary strong {
    font-size: clamp(1.5rem, 2.1vw, 2rem);
}

.sf-product__price-card .sf-price-currency {
    display: inline-block;
    margin-left: .12em;
    font-size: .68em;
    font-weight: 400;
    letter-spacing: 0;
    vertical-align: baseline;
}

.sf-product__price-card em.sf-product__old-price .sf-product__old-price-currency {
    font-size: .78rem;
    font-weight: 400;
}

.sf-product__price-row {
    align-items: flex-end;
    gap: 20px;
}

.sf-product__price-card--primary {
    display: inline-flex;
    align-items: flex-end;
    gap: 12px;
}

.sf-product__price-card--primary strong {
    font-size: clamp(1.8rem, 2.8vw, 2.45rem);
    line-height: 1;
}

.sf-product__price-card .sf-product__discount {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    min-height: 36px;
    padding: 0 10px;
    border-radius: 0;
    background: var(--store-accent);
    color: #fff;
    font-size: .88rem;
    font-weight: 700;
    letter-spacing: 0;
}

.sf-product__price-card--primary .sf-price-currency {
    font-size: .58em;
}

.sf-product__share {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 14px;
    color: var(--store-muted);
    font-size: .86rem;
}

.sf-product__share > span {
    margin-right: 2px;
    font-weight: 500;
}

.sf-product__share-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 1px solid var(--store-border);
    border-radius: 50%;
    background: var(--store-surface);
    color: var(--store-text);
    transition: transform .2s ease, border-color .2s ease, color .2s ease;
}

.sf-product__share-link:hover {
    border-color: currentColor;
    transform: translateY(-1px);
}

.sf-product__share-link--whatsapp:hover { color: #16a34a; }
.sf-product__share-link--telegram:hover { color: #229ed9; }

.sf-product__share-link svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.sf-product__share-link--telegram svg path {
    fill: currentColor;
    stroke: none;
}

.sf-product__purchase-row {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: stretch;
    gap: 12px;
    width: 100%;
}

.sf-product__purchase-row .sf-product__cart-form {
    min-width: 0;
}

.sf-product__quantity {
    display: grid;
    grid-template-columns: 38px 42px 38px;
    min-height: 52px;
    border: 1px solid var(--store-border);
    background: var(--store-surface);
}

.sf-product__quantity button,
.sf-product__quantity strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.sf-product__quantity button {
    border: 0;
    background: transparent;
    color: var(--store-text);
    cursor: pointer;
    font-size: 1.1rem;
}

.sf-product__quantity button:hover {
    background: color-mix(in srgb, var(--store-accent) 8%, transparent);
}

.sf-product__quantity strong {
    border-right: 1px solid var(--store-border);
    border-left: 1px solid var(--store-border);
    color: var(--store-text);
    font-size: 1rem;
    font-weight: 600;
}

.sf-product__purchase-row .sf-product__cart-form,
.sf-product__purchase-row .sf-button--product-detail {
    width: 100%;
    height: 100%;
}

@media (max-width: 560px) {
    .sf-product__price-row {
        gap: 14px;
    }

    .sf-product__price-card--primary strong {
        font-size: 1.95rem;
    }

    .sf-product__purchase-row {
        grid-template-columns: 1fr;
    }

    .sf-product__quantity {
        width: max-content;
    }
}

/* Keep the product quantity control compact and aligned with the add-to-cart button. */
.sf-product__purchase-row {
    align-items: center;
}

.sf-product__quantity {
    min-height: 58px;
    height: 58px;
    border-radius: 20px;
    overflow: hidden;
}

.sf-product__purchase-row .sf-button--product-detail {
    min-height: 58px;
    margin-top: 0;
}

/* Automatic installment table. */
.sf-installment-card {
    overflow: hidden;
    border: 1px solid #e7e0d8;
    border-radius: 20px;
    background: #fff;
}

.sf-installment-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 26px;
    border-bottom: 1px solid #ece6df;
}

.sf-installment-card__head h3 {
    margin: 0 0 5px;
    color: #111827;
    font-size: 1.12rem;
    font-weight: 650;
}

.sf-installment-card__head p {
    margin: 0;
    color: #6b7280;
    font-size: .88rem;
}

.sf-installment-card__head > strong {
    flex: 0 0 auto;
    color: #111827;
    font-size: 1.08rem;
    white-space: nowrap;
}

.sf-installment-table-wrap {
    overflow-x: auto;
    scrollbar-width: thin;
}

.sf-installment-table {
    width: 100%;
    min-width: 980px;
    border-collapse: separate;
    border-spacing: 0;
    table-layout: fixed;
}

.sf-installment-table th,
.sf-installment-table td {
    width: 11.111%;
    padding: 12px 8px;
    border-right: 1px solid #e6e2dd;
    border-bottom: 1px solid #e6e2dd;
    text-align: center;
    vertical-align: middle;
}

.sf-installment-table tr > :last-child {
    border-right: 0;
}

.sf-installment-table tbody tr:last-child td {
    border-bottom: 0;
}

.sf-installment-table thead th {
    height: 62px;
    padding: 12px 8px;
    background: #fcfaf7;
}

.sf-installment-bank {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 34px;
    padding: 4px 8px;
    overflow: hidden;
    box-sizing: border-box;
}

.sf-installment-bank img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 112px;
    max-height: 28px;
    object-fit: contain;
    object-position: center;
}

.sf-installment-bank--axess img { transform: scale(2.65); }
.sf-installment-bank--bonus img { transform: scale(1.65); }
.sf-installment-bank--qnb img { transform: scale(2.65); }
.sf-installment-bank--paraf img { transform: scale(1.55); }
.sf-installment-bank--advantage img { transform: scale(2.35); }
.sf-installment-bank--maximum img { transform: scale(1.55); }
.sf-installment-bank--saglam img { transform: scale(2.5); }
.sf-installment-bank--world img { transform: scale(3.1); }
.sf-installment-bank--bankkart img { transform: scale(.68); }

.sf-installment-table td {
    background: #fff;
}

.sf-installment-table tbody tr:nth-child(even) td {
    background: #f5f6f7;
}

.sf-installment-table td > span,
.sf-installment-table td > strong,
.sf-installment-table td > small {
    display: block;
}

.sf-installment-table td > span {
    color: #4b5563;
    font-size: .82rem;
    line-height: 1.2;
}

.sf-installment-table td > strong {
    margin-top: 3px;
    color: #1f2937;
    font-size: .88rem;
    line-height: 1.2;
}

.sf-installment-table td > small {
    margin-top: 5px;
    color: #7b8490;
    font-size: .7rem;
    line-height: 1.2;
    white-space: nowrap;
}

.sf-installment-table td > small.sf-installment-total {
    color: #4b5563;
    font-size: .68rem;
    font-weight: 700;
}

html,
body {
    overflow-x: hidden;
}

.sf-product-tabs,
.sf-product-tabs__panels,
.sf-product-tabs__panel,
.sf-installment-card,
.sf-installment-table-wrap {
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
}

.sf-product-tabs__panels,
.sf-product-tabs__panel {
    width: 100%;
    overflow: hidden;
}

.sf-installment-table-wrap {
    width: 100%;
    overscroll-behavior-x: contain;
    touch-action: pan-x;
}

@media (max-width: 760px) {
    .sf-installment-card__head {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
        padding: 20px;
    }

    .sf-installment-table {
        min-width: 900px;
    }
}

/* Mobile header: keep account and cart actions; hide order tracking icon. */
@media (max-width: 920px) {
    .sf-header .sf-tools .sf-icon-link:first-child {
        display: none;
    }

    .sf-header .sf-tools .sf-icon-link:nth-child(2) {
        display: inline-flex;
    }
}

/* Mobile footer titles: compact and clearly readable. */
@media (max-width: 760px) {
    .sf-footer .sf-footer__title > span:first-child {
        font-size: 11px !important;
        font-weight: 600 !important;
        line-height: 1.2 !important;
    }

    .sf-footer .sf-footer__title {
        gap: 9px !important;
        padding: 8px 0 !important;
    }

    .sf-footer .sf-footer__title .sf-footer__toggle-icon {
        width: 14px !important;
        height: 14px !important;
        font-size: 11px !important;
        font-weight: 600 !important;
        line-height: 1 !important;
    }
}

/* Final mobile navigation polish */
@media (max-width: 920px) {
    body:has(.sf-mobile-menu.is-open) {
        overflow: hidden;
    }

    .sf-mobile-menu-toggle {
        position: relative;
        z-index: 220;
        border-radius: 12px;
        transition: background .2s ease, transform .2s ease;
    }

    body:has(.sf-mobile-menu.is-open) .sf-mobile-menu-toggle {
        background: rgba(255, 255, 255, .86);
        box-shadow: 0 8px 20px rgba(23, 18, 15, .08);
    }

    .sf-mobile-menu {
        position: fixed !important;
        inset: 0 !important;
        z-index: 200 !important;
        display: flex !important;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        width: 100vw !important;
        height: 100dvh;
        max-height: 100dvh;
        gap: 0 !important;
        margin: 0 !important;
        padding: 86px 16px 24px !important;
        overflow-y: auto;
        background: rgba(20, 31, 29, .46) !important;
        backdrop-filter: blur(9px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: none !important;
        transition: opacity .24s ease, visibility .24s ease;
    }

    .sf-mobile-menu.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .sf-mobile-menu__links,
    .sf-mobile-menu__actions {
        position: relative;
        z-index: 1;
        width: min(100%, 380px);
        box-sizing: border-box;
        background: rgba(255, 253, 249, .98);
        box-shadow: 0 22px 48px rgba(23, 18, 15, .16);
    }

    .sf-mobile-menu__links {
        counter-reset: mobile-menu-item;
        display: grid;
        gap: 0 !important;
        padding: 23px 22px 10px;
        border-radius: 24px 24px 0 0;
    }

    .sf-mobile-menu__links::before {
        display: block;
        margin-bottom: 14px;
        content: 'MENÜ';
        color: #8d8174;
        font-family: var(--store-font-menu);
        font-size: .64rem;
        font-weight: 800;
        letter-spacing: .18em;
    }

    .sf-mobile-menu__links a {
        counter-increment: mobile-menu-item;
        display: flex;
        align-items: center;
        min-height: 46px;
        padding: 0;
        border-bottom: 1px solid rgba(72, 48, 30, .1);
        color: #2c2925;
        font-size: .78rem;
        font-weight: 600;
        letter-spacing: .09em;
        line-height: 1.2;
        text-decoration: none;
        transition: color .18s ease, padding-left .18s ease;
    }

    .sf-mobile-menu__links a::before {
        width: 28px;
        margin-right: 8px;
        content: counter(mobile-menu-item, decimal-leading-zero);
        color: #b1a69b;
        font-size: .62rem;
        font-weight: 700;
        letter-spacing: .04em;
    }

    .sf-mobile-menu__links a:last-child {
        border-bottom: 0;
    }

    .sf-mobile-menu__links a:hover,
    .sf-mobile-menu__links a:focus-visible {
        padding-left: 5px;
        color: #11884d;
    }

    .sf-mobile-menu__actions {
        display: grid;
        gap: 9px;
        padding: 12px 22px 22px;
        border-radius: 0 0 24px 24px;
    }

    .sf-mobile-menu__actions::before {
        margin: 0 0 2px;
        content: 'HIZLI ERİŞİM';
        color: #8d8174;
        font-family: var(--store-font-menu);
        font-size: .62rem;
        font-weight: 800;
        letter-spacing: .15em;
    }

    .sf-mobile-action {
        min-height: 48px;
        padding: 0 13px;
        border: 1px solid rgba(72, 48, 30, .1);
        border-radius: 14px;
        background: #f7faf8;
        color: #2c2925;
        font-size: .82rem;
        font-weight: 700;
        transition: border-color .18s ease, background .18s ease, transform .18s ease;
    }

    .sf-mobile-action:hover,
    .sf-mobile-action:focus-visible {
        border-color: rgba(17, 150, 111, .3);
        background: #edf8f1;
        transform: translateY(-1px);
    }

    .sf-mobile-action img {
        flex: 0 0 28px;
        width: 28px;
        height: 28px;
    }
}

/* Keep the storefront header visible while the page scrolls on every viewport. */
.sf-header {
    position: sticky !important;
    top: 0 !important;
    z-index: 1000 !important;
    isolation: isolate;
    background: rgba(255, 253, 249, .96) !important;
    box-shadow: 0 8px 24px rgba(35, 26, 20, .06);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
}

@media (max-width: 920px) {
    .sf-header {
        z-index: 1000 !important;
        background: #fffdf9 !important;
        -webkit-backdrop-filter: none !important;
        backdrop-filter: none !important;
    }
}

/* Mobile menu: slide in from the left with a dedicated close control. */
@media (max-width: 920px) {
    .sf-mobile-menu {
        --sf-mobile-drawer-width: min(60vw, 360px);
        align-items: flex-start !important;
        justify-content: flex-start !important;
        width: 100vw !important;
        height: 100dvh !important;
        max-height: 100dvh !important;
        padding: 0 !important;
        overflow-x: hidden;
        overflow-y: auto;
        background: transparent !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        opacity: 1 !important;
        visibility: hidden;
        pointer-events: none;
        transition: background-color .28s ease, visibility .28s ease;
    }

    .sf-mobile-menu.is-open {
        visibility: visible;
        pointer-events: auto;
        background: rgba(20, 31, 29, .48) !important;
    }

    .sf-mobile-menu__links,
    .sf-mobile-menu__actions {
        width: var(--sf-mobile-drawer-width) !important;
        min-width: 0;
        box-sizing: border-box;
        transform: translateX(-105%);
        transition: transform .34s cubic-bezier(.22, .8, .24, 1);
    }

    .sf-mobile-menu.is-open .sf-mobile-menu__links,
    .sf-mobile-menu.is-open .sf-mobile-menu__actions {
        transform: translateX(0);
    }

    .sf-mobile-menu__links {
        padding: 76px 24px 10px !important;
        border-radius: 0 24px 0 0 !important;
    }

    .sf-mobile-menu__actions {
        padding: 12px 24px 24px !important;
        border-radius: 0 0 24px 0 !important;
    }

    .sf-mobile-menu__close {
        position: absolute;
        top: 10px;
        right: auto;
        left: calc(var(--sf-mobile-drawer-width) - 45px);
        z-index: 3;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        padding: 0;
        border: 1px solid rgba(72, 48, 30, .12);
        border-radius: 50%;
        background: rgba(255, 253, 249, .94);
        color: #332b25;
        font-family: Arial, sans-serif;
        font-size: 28px;
        font-weight: 300;
        line-height: 1;
        cursor: pointer;
        opacity: 0;
        pointer-events: none;
        transform: translateX(-16px) rotate(-45deg);
        transition: opacity .22s ease .08s, transform .3s cubic-bezier(.22, .8, .24, 1) .08s, background .18s ease;
    }

    .sf-mobile-menu.is-open .sf-mobile-menu__close {
        opacity: 1;
        pointer-events: auto;
        transform: translateX(0) rotate(0);
    }

    .sf-mobile-menu__close:hover,
    .sf-mobile-menu__close:focus-visible {
        background: #ffffff;
        outline: 2px solid rgba(17, 136, 77, .25);
        outline-offset: 2px;
    }
}

/* Allow sticky positioning to use the document scroll instead of a body scroll box. */
html,
body.storefront-preview,
body.shop-body {
    overflow-x: clip !important;
    overflow-y: visible !important;
}

body.storefront-preview:has(.sf-mobile-menu.is-open),
body.shop-body:has(.sf-mobile-menu.is-open) {
    overflow: hidden !important;
}

/* Product gallery navigation stays visible on the main image. */
.sf-product__stage {
    position: relative;
}

.sf-product__gallery-arrow {
    position: absolute;
    top: 50%;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid rgba(72, 48, 30, .16);
    border-radius: 50%;
    background: rgba(255, 253, 249, .92);
    color: #2f2924;
    font-family: Arial, sans-serif;
    font-size: 32px;
    font-weight: 300;
    line-height: 1;
    cursor: pointer;
    opacity: .9;
    transform: translateY(-50%);
    box-shadow: 0 8px 20px rgba(35, 26, 20, .12);
    transition: background .18s ease, border-color .18s ease, opacity .18s ease, transform .18s ease;
}

.sf-product__gallery-arrow--prev {
    left: 18px;
}

.sf-product__gallery-arrow--next {
    right: 18px;
}

.sf-product__gallery-arrow:hover,
.sf-product__gallery-arrow:focus-visible {
    border-color: rgba(17, 136, 77, .38);
    background: #ffffff;
    opacity: 1;
    outline: none;
    transform: translateY(-50%) scale(1.04);
}

@media (max-width: 760px) {
    .sf-product__gallery-arrow {
        width: 40px;
        height: 40px;
        font-size: 28px;
    }

    .sf-product__gallery-arrow--prev {
        left: 12px;
    }

    .sf-product__gallery-arrow--next {
        right: 12px;
    }
}

/* Keep quantity and add-to-cart controls on one compact mobile row. */
@media (max-width: 560px) {
    .sf-product__purchase-row {
        grid-template-columns: 96px minmax(0, 1fr) !important;
        gap: 8px;
        align-items: stretch;
    }

    .sf-product__quantity {
        width: 96px !important;
        min-height: 48px;
        height: 48px;
        grid-template-columns: 30px 36px 30px;
        border-radius: 18px;
    }

    .sf-product__quantity button {
        font-size: .9rem;
    }

    .sf-product__quantity strong {
        font-size: .9rem;
    }

    .sf-product__purchase-row .sf-button--product-detail,
    .sf-product__purchase-row .sf-product__cart-form {
        min-width: 0;
        min-height: 48px;
        height: 48px;
    }

    .sf-product__purchase-row .sf-button--product-detail {
        padding-inline: 10px;
        font-size: .84rem;
    }
}

/* Compact launch-products heading on the home page. */
.sf-section#yeni-urunler .sf-section__intro {
    gap: 6px;
    margin-bottom: 20px;
}

.sf-section#yeni-urunler {
    padding-top: 28px;
}

@media (max-width: 760px) {
    .sf-section#yeni-urunler {
        padding-top: 20px;
    }
}

.sf-section#yeni-urunler .sf-section__intro h2 {
    max-width: none;
    font-size: clamp(1.35rem, 1.7vw, 1.8rem);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -.02em;
}

.sf-section#yeni-urunler .sf-section__intro .sf-eyebrow {
    font-size: .64rem;
    font-weight: 700;
    letter-spacing: .16em;
}

/* Contact map: full viewport width and flush with the sticky header. */
.sf-static-page:has(> .sf-contact-page) {
    width: 100%;
    max-width: none;
    margin: 0;
    padding-top: 0;
}

.sf-static-page:has(> .sf-contact-page) .sf-contact-map {
    width: 100%;
    margin: 0;
    border-radius: 0;
}

.sf-static-page:has(> .sf-contact-page) .sf-contact-status,
.sf-static-page:has(> .sf-contact-page) .sf-contact-layout {
    width: min(calc(100% - 48px), var(--store-content-width));
    margin-right: auto;
    margin-left: auto;
}

@media (max-width: 760px) {
    .sf-static-page:has(> .sf-contact-page) .sf-contact-status,
    .sf-static-page:has(> .sf-contact-page) .sf-contact-layout {
        width: min(calc(100% - 28px), var(--store-content-width));
    }
}

/* Mobile contact page and campaign popup layout. */
@media (max-width: 760px) {
    .sf-contact-page {
        gap: 22px;
    }

    .sf-contact-map,
    .sf-contact-map iframe {
        min-height: 260px;
        height: 260px;
    }

    .sf-contact-layout {
        grid-template-columns: minmax(0, 1fr);
        gap: 28px;
    }

    .sf-contact-form,
    .sf-contact-info,
    .sf-contact-form__grid {
        width: 100%;
        min-width: 0;
    }

    .sf-contact-form h1 {
        margin-bottom: 10px;
        font-size: 2rem;
    }

    .sf-contact-form__grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 12px;
    }

    .sf-contact-field--full,
    .sf-contact-form__actions {
        grid-column: auto;
    }

    .sf-contact-field input,
    .sf-contact-field textarea {
        box-sizing: border-box;
        min-width: 0;
        border-radius: 14px;
    }

    .sf-contact-field textarea {
        min-height: 132px;
    }

    .sf-contact-submit {
        width: 100%;
        min-height: 48px;
    }

    .sf-contact-info {
        gap: 22px;
    }

    .sf-contact-info__block {
        gap: 12px;
    }

    .sf-contact-info__row {
        grid-template-columns: 34px minmax(0, 1fr);
        gap: 10px;
        font-size: .88rem;
        line-height: 1.5;
    }

    .sf-contact-info__row span {
        min-width: 0;
        overflow-wrap: anywhere;
    }

    .sf-marketing-popup {
        align-items: center;
        padding: 12px;
        overflow-y: auto;
    }

    .sf-marketing-popup__dialog {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        width: min(100%, 420px);
        max-height: calc(100dvh - 24px);
        overflow-y: auto;
        border-radius: 20px;
    }

    .sf-marketing-popup__promo {
        min-height: 0;
        gap: 8px;
        padding: 28px 24px 24px;
    }

    .sf-marketing-popup__discount {
        font-size: 3.2rem;
    }

    .sf-marketing-popup__headline {
        font-size: 1.2rem;
    }

    .sf-marketing-popup__promo p {
        font-size: .88rem;
        line-height: 1.55;
    }

    .sf-marketing-popup__form {
        gap: 12px;
        padding: 24px 20px 26px;
    }

    .sf-marketing-popup__close {
        top: 10px;
        right: 10px;
        width: 34px;
        height: 34px;
    }
}
