:root {
    --teal-deep: #0E4F5C;
    --teal: #1B7B8B;
    --amber: #D97A3C;
    --cream: #F5E9D3;
    --sand: #E8D9B8;
    --stone: #C9B89A;
    --ink: #1A2E33;
    --ink-soft: #3D5860;
    --muted: #8B9A9F;
    --white: #FAF6EE;
    --line: rgba(26, 46, 51, 0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', sans-serif;
    color: var(--ink);
    background: var(--white);
    font-weight: 380;
    line-height: 1.55;
    min-height: 100vh;
    overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }

/* ===== HEADER (logo banner) — kompakt ===== */
.m-header {
    position: relative;
    background: var(--teal-deep);
    color: var(--cream);
    padding: 0.7rem 1rem 0.6rem;
    text-align: center;
}
.m-back {
    position: absolute;
    left: 1rem; top: 50%;
    transform: translateY(-50%);
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(245, 233, 211, 0.12);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; line-height: 1;
    font-family: 'Playfair Display', serif;
    transition: background 0.2s;
}
.m-back:hover { background: rgba(245, 233, 211, 0.22); }
.m-logo-img {
    display: block;
    width: 240px;
    max-width: 75vw;
    height: auto;
    margin: 0 auto;
    filter: brightness(0) invert(1) sepia(0.35) saturate(2.2) hue-rotate(355deg) brightness(1.05);
}

/* ===== STICKY KATEGORİ TABS ===== */
.m-tabs {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.m-tabs::-webkit-scrollbar { display: none; }
.m-tabs button {
    flex: 0 0 auto;
    background: transparent;
    border: none;
    padding: 1rem 1.2rem 0.85rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    font-weight: 480;
    color: var(--ink-soft);
    cursor: pointer;
    position: relative;
    transition: color 0.2s;
    white-space: nowrap;
    letter-spacing: 0.3px;
}
.m-tabs button:hover { color: var(--ink); }
.m-tabs button.active { color: var(--teal-deep); font-weight: 580; }
.m-tabs button.active::after {
    content: '';
    position: absolute;
    left: 1.2rem; right: 1.2rem;
    bottom: 0; height: 2px;
    background: var(--amber);
    border-radius: 2px;
}

/* ===== KATEGORİ + ÜRÜN LİSTESİ ===== */
.m-main {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 1.2rem 4rem;
}
.m-loading {
    text-align: center;
    padding: 4rem 1rem;
    color: var(--muted);
    font-style: italic;
}
.m-category {
    padding-top: 2rem;
    scroll-margin-top: 60px; /* sticky tab yüksekliği için */
}
.m-category-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--teal-deep);
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 0.5rem;
    position: relative;
}
.m-category-title::before,
.m-category-title::after {
    content: '';
    display: inline-block;
    width: 28px; height: 1px;
    background: var(--amber);
    vertical-align: middle;
    margin: 0 0.8rem 0.35rem;
    opacity: 0.6;
}

/* Ürün kartı — finedine tarzı sade tipografi (tek font ailesi, sabit hiyerarşi) */
.m-product {
    padding: 1.1rem 0;
    border-bottom: 1px solid var(--line);
}
.m-product:last-child { border-bottom: none; }
.m-prow {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
}
.m-prow .name {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;            /* 16px — finedine ürün adı boyutu */
    font-weight: 580;
    color: var(--ink);
    letter-spacing: 0.2px;
    line-height: 1.35;
    flex: 1;
    text-transform: none;
}
.m-prow .price {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;         /* 15px — ürün adından biraz daha küçük */
    font-weight: 470;
    color: var(--ink);
    letter-spacing: 0.2px;
    white-space: nowrap;
}
.m-pdesc {
    font-family: 'Inter', sans-serif;
    font-style: italic;          /* italik — kullanıcı isteği */
    font-size: 0.8125rem;
    color: var(--muted);
    margin-top: 0.4rem;
    font-weight: 380;
    line-height: 1.55;
    letter-spacing: 0.1px;
}

/* ===== FOOTER ===== */
.m-footer {
    text-align: center;
    padding: 2rem 1.2rem 2.5rem;
    border-top: 1px solid var(--line);
    margin-top: 2rem;
}
.m-updated {
    font-size: 0.72rem;
    color: var(--muted);
    margin-bottom: 0.4rem;
}
.m-tag {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: var(--ink-soft);
    font-size: 0.95rem;
}

/* === Powered by Soft# === */
.m-powered {
    margin-top: 0.9rem;
}
.m-powered a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--muted);
    transition: color 0.3s;
}
.m-powered a:hover { color: #1a2b4a; }
.m-powered svg { display: block; height: 0.7rem; width: auto; }

/* ===== MOBİL ÖZEL ===== */
@media (max-width: 480px) {
    .m-category-title { font-size: 1.2rem; }
    .m-prow .name { font-size: 0.95rem; }       /* ~15px */
    .m-prow .price { font-size: 0.9rem; }        /* ~14.4px */
    .m-pdesc { font-size: 0.78rem; }             /* ~12.5px */
    .m-main { padding: 0 1rem 3rem; }
    .m-tabs button { font-size: 0.85rem; padding: 0.85rem 1rem 0.7rem; }
}
