/* =====================================================
   ToptanDoypack.com - Tema (fermuarliposet.com.tr düzeni)
   Beyaz üst şerit + lacivert menü, lacivert hero panosu,
   çerçeveli ürün kartları + yeşil WhatsApp şeridi.
   style.css'ten SONRA yüklenir.
   ===================================================== */

:root {
    --fp-50: #eef3fb;
    --fp-100: #d9e3f6;
    --fp-200: #b5c8ec;
    --fp-300: #86a3dc;
    --fp-500: #2f58ad;
    --fp-600: #1a4296;
    --fp-700: #133580;
    --fp-800: #0f2b69;
    --fp-900: #0c2354;
    --fp-950: #071636;
    --fp-green: #43a047;
    --fp-green-dark: #388e3c;
    --fp-wa: #25D366;
    --fp-amber: #fbbf24;
    --fp-text: #0b1220;
    --fp-slate-50: #f8fafc;
    --fp-slate-200: #e2e8f0;
    --fp-slate-500: #64748b;
    --fp-slate-600: #475569;
    --fp-slate-700: #334155;
    --fp-slate-900: #0f172a;
}

body {
    font-family: 'Quicksand', system-ui, -apple-system, sans-serif;
    color: var(--fp-text);
    background: #fff;
    font-weight: 500;
}

h1, h2, h3, h4, h5, h6 { font-family: 'Quicksand', system-ui, sans-serif; font-weight: 700; }

.fp-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}
@media (min-width: 768px) { .fp-container { padding: 0 2rem; } }

/* ---------- Butonlar ---------- */
.fp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    border-radius: .5rem;
    padding: .75rem 1.25rem;
    font-weight: 700;
    font-size: .95rem;
    line-height: 1.2;
    text-decoration: none;
    border: 1px solid transparent;
    transition: background-color .15s, color .15s, border-color .15s;
    cursor: pointer;
}
.fp-btn-primary { background: var(--fp-600); color: #fff; }
.fp-btn-primary:hover { background: var(--fp-700); color: #fff; }
.fp-btn-white { background: #fff; color: var(--fp-800); }
.fp-btn-white:hover { background: var(--fp-50); color: var(--fp-800); }
.fp-btn-ghost { border-color: rgba(255,255,255,.4); color: #fff; }
.fp-btn-ghost:hover { background: rgba(255,255,255,.1); color: #fff; }
.fp-btn-wa { background: var(--fp-wa); color: #fff; }
.fp-btn-wa:hover { background: #1ebe57; color: #fff; }
.fp-btn-outline { border-color: var(--fp-600); color: var(--fp-700); }
.fp-btn-outline:hover { background: var(--fp-50); color: var(--fp-700); }

/* ---------- Header ---------- */
.fp-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: #fff;
    box-shadow: 0 1px 2px rgba(15, 23, 42, .08);
}
.fp-header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    padding-top: .75rem;
    padding-bottom: .75rem;
}
@media (min-width: 992px) { .fp-header-top { padding-top: 1rem; padding-bottom: 1rem; } }

.fp-logo { display: inline-flex; align-items: center; gap: .6rem; text-decoration: none; min-width: 0; }
.fp-logo svg { width: 42px; height: 42px; flex-shrink: 0; }
.fp-logo-text { display: flex; flex-direction: column; line-height: 1; }
.fp-logo-title { font-family: 'Montserrat', 'Quicksand', sans-serif; font-size: 1.4rem; font-weight: 500; letter-spacing: -.02em; color: var(--fp-800); white-space: nowrap; }
.fp-logo-title strong { color: var(--fp-800); font-weight: 800; }
.fp-logo-sub { margin-top: .35rem; font-size: .62rem; font-weight: 700; letter-spacing: .3em; text-transform: uppercase; color: var(--fp-slate-500); }
.fp-logo.is-light .fp-logo-title, .fp-logo.is-light .fp-logo-title strong { color: #fff; }
.fp-logo.is-light .fp-logo-sub { color: #94a3b8; }
@media (min-width: 576px) { .fp-logo svg { width: 48px; height: 48px; } .fp-logo-title { font-size: 1.65rem; } }

.fp-hotline { text-align: right; line-height: 1.15; }
.fp-hotline small { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: var(--fp-slate-500); font-weight: 600; }
.fp-hotline a { font-size: 1.15rem; font-weight: 700; color: var(--fp-800); text-decoration: none; }
.fp-hotline a:hover { color: var(--fp-600); }
.fp-header-right { display: flex; align-items: center; gap: 1.5rem; }
.fp-header-mail { display: flex; align-items: center; gap: .5rem; color: var(--fp-slate-600); font-size: .9rem; text-decoration: none; font-weight: 600; }
.fp-header-mail i { color: var(--fp-600); font-size: 1.1rem; }
.fp-header-mail:hover { color: var(--fp-700); }

.fp-burger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: .5rem;
    border: 1px solid var(--fp-slate-200);
    background: #fff;
    color: var(--fp-800);
    font-size: 1.5rem;
}
.fp-burger:focus-visible { outline: 2px solid var(--fp-500); outline-offset: 2px; }

.fp-nav { background: var(--fp-800); color: #fff; }
.fp-nav-inner { display: flex; align-items: stretch; justify-content: space-between; }
.fp-nav-list { display: flex; align-items: stretch; list-style: none; margin: 0; padding: 0; }
.fp-nav-list > li { position: relative; }
.fp-nav-link {
    display: flex;
    height: 100%;
    align-items: center;
    gap: .35rem;
    padding: .9rem 1rem;
    font-size: .9rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
}
.fp-nav-link:hover, .fp-nav-link.active, .fp-nav-link:focus { background: var(--fp-700); color: #fff; }
.fp-nav-list .dropdown-menu {
    margin-top: 0 !important;
    border: 0;
    border-radius: 0 0 .75rem .75rem;
    box-shadow: 0 12px 28px rgba(15, 23, 42, .18);
    padding: .5rem;
    min-width: 240px;
}
.fp-nav-list .dropdown-item { border-radius: .4rem; font-weight: 600; font-size: .9rem; padding: .55rem .8rem; color: var(--fp-slate-700); }
.fp-nav-list .dropdown-item:hover { background: var(--fp-50); color: var(--fp-700); }
.fp-nav-actions { display: flex; align-items: stretch; }
.fp-nav-wa {
    display: flex;
    align-items: center;
    gap: .5rem;
    background: var(--fp-green);
    padding: 0 1.25rem;
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
}
.fp-nav-wa:hover { background: var(--fp-green-dark); color: #fff; }
.fp-nav-wa svg { width: 20px; height: 20px; }
.fp-nav-wa { white-space: nowrap; }
.fp-nav-link { padding: .9rem 1rem; font-size: .84rem; }
.fp-nav-wa { padding: 0 1rem; }
@media (max-width: 1439.98px) {
    .fp-nav-wa span { display: none; }
}
@media (max-width: 1279.98px) {
    .fp-nav-link { padding: .9rem .75rem; font-size: .8rem; }
    .fp-nav-wa { padding: 0 .85rem; }
}
@media (max-width: 1099.98px) {
    .fp-nav-link { padding: .85rem .55rem; font-size: .74rem; letter-spacing: -.01em; }
}

/* Mobil menü */
.fp-mobile-nav { background: var(--fp-800); }
.fp-mobile-nav ul { list-style: none; margin: 0; padding: .5rem 0; }
.fp-mobile-nav a {
    display: block;
    padding: .8rem 1rem;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.fp-mobile-nav a:hover, .fp-mobile-nav a.active { background: var(--fp-700); }
.fp-mobile-nav .fp-sub a { padding-left: 2rem; font-weight: 600; font-size: .92rem; color: var(--fp-100); }
.fp-mobile-nav .fp-mobile-wa { background: var(--fp-green); text-align: center; text-transform: uppercase; letter-spacing: .04em; }

/* Eski navbar kuralları (style.css) yeni header'ı etkilemesin */
.top-bar { display: none; }

/* ---------- Hero ---------- */
.fp-hero { padding-top: 1rem; }
@media (min-width: 992px) { .fp-hero { padding-top: 1.5rem; } }
.fp-hero-grid { display: grid; gap: 1rem; }
@media (min-width: 992px) { .fp-hero-grid { grid-template-columns: minmax(0, 1fr) 320px; } }
.fp-hero-main {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    background: linear-gradient(135deg, var(--fp-900), var(--fp-800) 50%, var(--fp-700));
    color: #fff;
}
.fp-hero-main-inner { display: grid; align-items: center; gap: 1.5rem; padding: 1.5rem; }
@media (min-width: 576px) { .fp-hero-main-inner { padding: 2.5rem; } }
@media (min-width: 768px) { .fp-hero-main-inner { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); } }
.fp-pill {
    display: inline-flex;
    border-radius: 999px;
    background: rgba(255,255,255,.1);
    padding: .3rem .8rem;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.fp-hero h1 {
    margin: 1rem 0 0;
    font-size: 1.9rem;
    font-weight: 700;
    line-height: 1.15;
    color: #fff;
}
@media (min-width: 576px) { .fp-hero h1 { font-size: 2.25rem; } }
@media (min-width: 1200px) { .fp-hero h1 { font-size: 2.6rem; } }
.fp-hero h1 span { display: block; color: var(--fp-200); }
.fp-hero-lead { margin: 1rem 0 0; color: rgba(255,255,255,.85); font-size: 1rem; line-height: 1.6; }
.fp-hero-actions { margin-top: 1.5rem; display: flex; flex-wrap: wrap; gap: .75rem; }
.fp-hero-visual {
    position: relative;
    margin: 0 auto;
    width: 100%;
    max-width: 28rem;
    aspect-ratio: 396 / 350;
    overflow: hidden;
    border-radius: 1rem;
    border: 4px solid rgba(255,255,255,.9);
    box-shadow: 0 25px 50px -12px rgba(0,0,0,.45);
    background: linear-gradient(160deg, #f1f5fc, #d9e3f6);
}
.fp-hero-visual svg { width: 100%; height: 100%; display: block; }

.fp-hero-side { display: grid; gap: 1rem; }
@media (min-width: 576px) and (max-width: 991.98px) { .fp-hero-side { grid-template-columns: 1fr 1fr; } }
.fp-side-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 1rem;
    background: linear-gradient(135deg, var(--fp-700), var(--fp-900));
    padding: 1.5rem;
    color: #fff;
}
.fp-side-card p { margin: 0; font-size: 1.1rem; font-weight: 700; line-height: 1.35; }
.fp-side-card-foot { margin-top: 1rem; display: flex; align-items: flex-end; justify-content: space-between; gap: .5rem; }
.fp-side-card-foot span, .fp-side-card-foot a { font-size: .85rem; color: rgba(255,255,255,.75); }
.fp-side-card-foot a { color: #fff; font-weight: 700; text-decoration: underline; }
.fp-side-card-foot .fp-side-card-emoji { font-size: 3rem; line-height: 1; color: inherit; }

/* ---------- Güven şeridi ---------- */
.fp-trust { margin-top: 1.5rem; }
.fp-trust ul { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .75rem; }
@media (min-width: 768px) { .fp-trust ul { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.fp-trust li { display: flex; align-items: center; gap: .75rem; border: 1px solid var(--fp-slate-200); border-radius: .75rem; background: #fff; padding: .75rem; }
.fp-trust-icon { font-size: 1.5rem; line-height: 1; }
.fp-trust strong { display: block; font-size: .875rem; color: var(--fp-slate-900); }
.fp-trust small { display: block; font-size: .75rem; color: var(--fp-slate-500); font-weight: 600; }

/* ---------- Bölümler ---------- */
.fp-section { margin-top: 4rem; }
.fp-section-muted { margin-top: 4rem; background: var(--fp-slate-50); padding: 3.5rem 0; }
.fp-h2 { font-size: 1.6rem; font-weight: 700; letter-spacing: -.01em; color: var(--fp-slate-900); margin: 0; }
@media (min-width: 768px) { .fp-h2 { font-size: 2.25rem; } }
.fp-center { text-align: center; }
.fp-sub { margin: .75rem auto 0; max-width: 42rem; color: var(--fp-slate-600); line-height: 1.6; }
.fp-head-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; }
.fp-link { font-size: .9rem; font-weight: 700; color: var(--fp-700); text-decoration: none; }
.fp-link:hover { text-decoration: underline; color: var(--fp-700); }

/* ---------- Ürün kartı ---------- */
.fp-grid { margin-top: 2rem; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .75rem; }
@media (min-width: 576px) { .fp-grid { gap: 1rem; } }
@media (min-width: 768px) { .fp-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 1200px) { .fp-grid.cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.fp-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: .75rem;
    border: 2px solid var(--fp-700);
    background: #fff;
    box-shadow: 0 1px 2px rgba(15, 23, 42, .06);
    transition: box-shadow .2s;
}
.fp-card:hover { box-shadow: 0 12px 28px rgba(15, 23, 42, .16); }
.fp-card-media {
    position: relative;
    display: block;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: linear-gradient(160deg, #f1f5fc, #d9e3f6);
}
.fp-card-media img, .fp-card-media svg { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .3s; }
.fp-card:hover .fp-card-media img, .fp-card:hover .fp-card-media svg { transform: scale(1.05); }
.fp-badges { position: absolute; top: .5rem; left: .5rem; display: flex; flex-wrap: wrap; gap: .25rem; }
.fp-badge { border-radius: .25rem; padding: .15rem .4rem; font-size: 10px; font-weight: 700; text-transform: uppercase; line-height: 1.4; }
.fp-badge-amber { background: var(--fp-amber); color: var(--fp-slate-900); }
.fp-badge-blue { background: var(--fp-600); color: #fff; }
.fp-card-tag {
    position: absolute;
    right: .5rem;
    bottom: .5rem;
    border-radius: .375rem;
    background: rgba(255,255,255,.95);
    padding: .25rem .5rem;
    font-size: .75rem;
    font-weight: 700;
    color: var(--fp-800);
    box-shadow: 0 2px 6px rgba(0,0,0,.12);
}
.fp-card-body { display: flex; flex: 1; flex-direction: column; align-items: center; padding: .75rem .75rem 1rem; text-align: center; }
.fp-card-body h3 { margin: 0; font-size: .95rem; font-weight: 700; line-height: 1.35; color: #1e293b; }
.fp-card-body h3 a { color: inherit; text-decoration: none; }
.fp-card-body h3 a:hover { color: var(--fp-700); }
.fp-card-desc { margin: .4rem 0 .75rem; font-size: .8rem; color: var(--fp-slate-500); line-height: 1.45; }
.fp-card-body .fp-btn { margin-top: auto; width: 100%; padding: .55rem .75rem; font-size: .875rem; }
.fp-card-wa {
    display: block;
    background: var(--fp-green);
    padding: .6rem;
    text-align: center;
    font-size: .875rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
}
.fp-card-wa:hover { background: var(--fp-green-dark); color: #fff; }

/* ---------- Hizmet / genel kart ---------- */
.fp-box {
    display: block;
    height: 100%;
    border-radius: 1rem;
    border: 1px solid var(--fp-slate-200);
    background: #fff;
    padding: 1.5rem;
    box-shadow: 0 1px 2px rgba(15, 23, 42, .05);
    transition: box-shadow .2s, border-color .2s;
    text-decoration: none;
    color: inherit;
}
.fp-box:hover { box-shadow: 0 10px 24px rgba(15, 23, 42, .1); border-color: var(--fp-200); color: inherit; }
.fp-box-icon {
    display: inline-flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    border-radius: .75rem;
    background: var(--fp-50);
    color: var(--fp-600);
    font-size: 1.4rem;
}
.fp-box h3 { margin: 1rem 0 0; font-size: 1.1rem; font-weight: 700; color: var(--fp-slate-900); }
.fp-box p { margin: .5rem 0 0; font-size: .9rem; color: var(--fp-slate-600); line-height: 1.55; }
.fp-box .fp-more { display: inline-block; margin-top: .9rem; font-size: .85rem; font-weight: 700; color: var(--fp-700); }

.fp-grid-3 { margin-top: 2rem; display: grid; gap: 1rem; }
@media (min-width: 768px) { .fp-grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 992px) { .fp-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.5rem; } }

/* ---------- Kullanım alanları ---------- */
.fp-uses { margin-top: 2rem; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
@media (min-width: 768px) { .fp-uses { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 1200px) { .fp-uses { grid-template-columns: repeat(6, minmax(0, 1fr)); } }
.fp-use { border: 1px solid var(--fp-slate-200); border-radius: 1rem; background: #fff; padding: 1.25rem 1rem; text-align: center; }
.fp-use-emoji { font-size: 2.25rem; line-height: 1; }
.fp-use strong { display: block; margin-top: .6rem; font-size: .95rem; color: var(--fp-slate-900); }
.fp-use small { display: block; margin-top: .25rem; font-size: .78rem; color: var(--fp-slate-500); font-weight: 600; line-height: 1.4; }

/* ---------- CTA ---------- */
.fp-cta {
    display: grid;
    align-items: center;
    gap: 1.5rem;
    border-radius: 1.5rem;
    background: var(--fp-800);
    padding: 2rem;
    color: #fff;
}
@media (min-width: 768px) { .fp-cta { grid-template-columns: minmax(0, 1fr) auto; padding: 3rem; } }
.fp-cta h2 { margin: 0; font-size: 1.6rem; font-weight: 700; color: #fff; }
@media (min-width: 768px) { .fp-cta h2 { font-size: 1.9rem; } }
.fp-cta p { margin: .75rem 0 0; max-width: 42rem; color: rgba(255,255,255,.85); line-height: 1.6; }
.fp-cta-actions { display: flex; flex-wrap: wrap; gap: .75rem; }

/* ---------- Tanım + SSS ---------- */
.fp-two { display: grid; gap: 2.5rem; }
@media (min-width: 992px) { .fp-two { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); } }
.fp-prose p { margin: 1rem 0 0; color: var(--fp-slate-700); line-height: 1.75; }
.fp-prose a { font-weight: 700; color: var(--fp-700); }
.fp-faq { margin-top: 1rem; display: grid; gap: .75rem; }
.fp-faq details { border: 1px solid var(--fp-slate-200); border-radius: 1rem; background: #fff; padding: 1.1rem 1.25rem; }
.fp-faq summary {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    cursor: pointer;
    list-style: none;
    font-weight: 700;
    color: var(--fp-slate-900);
}
.fp-faq summary::-webkit-details-marker { display: none; }
.fp-faq summary::after { content: '+'; color: var(--fp-600); font-size: 1.25rem; line-height: 1; transition: transform .2s; }
.fp-faq details[open] summary::after { transform: rotate(45deg); }
.fp-faq p { margin: .75rem 0 0; font-size: .9rem; color: var(--fp-slate-700); line-height: 1.65; }

/* ---------- Blog kartı ---------- */
.fp-post { display: block; height: 100%; border-radius: 1rem; border: 1px solid var(--fp-slate-200); background: #fff; padding: 1.5rem; text-decoration: none; box-shadow: 0 1px 2px rgba(15,23,42,.05); transition: box-shadow .2s; }
.fp-post:hover { box-shadow: 0 10px 24px rgba(15,23,42,.1); }
.fp-post h3 { margin: 0; font-size: 1rem; font-weight: 700; color: var(--fp-slate-900); }
.fp-post p { margin: .5rem 0 0; font-size: .875rem; color: var(--fp-slate-600); }

/* ---------- Footer ---------- */
.fp-footer { margin-top: 4rem; background: var(--fp-950); color: #cbd5e1; }
.fp-footer-grid { display: grid; gap: 2.5rem; padding-top: 3.5rem; padding-bottom: 3.5rem; }
@media (min-width: 768px) { .fp-footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 992px) { .fp-footer-grid { grid-template-columns: 1.3fr 1fr 1fr 1.1fr; } }
.fp-footer p { font-size: .875rem; line-height: 1.7; }
.fp-footer h3 { margin: 0 0 .75rem; font-size: 1rem; font-weight: 700; color: #fff; }
.fp-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .5rem; font-size: .875rem; }
.fp-footer a { color: #cbd5e1; text-decoration: none; }
.fp-footer a:hover { color: #fff; }
.fp-footer-chip { display: inline-flex; align-items: center; gap: .5rem; margin-top: 1rem; border-radius: .5rem; background: rgba(255,255,255,.1); padding: .5rem .75rem; font-size: .875rem; font-weight: 700; color: #fff; }
.fp-footer-social { display: flex; gap: .5rem; margin-top: 1rem; }
.fp-footer-social a { display: inline-flex; width: 36px; height: 36px; align-items: center; justify-content: center; border-radius: .5rem; background: rgba(255,255,255,.08); }
.fp-footer-social a:hover { background: var(--fp-600); }
.fp-footer address { font-style: normal; display: grid; gap: .5rem; font-size: .875rem; line-height: 1.6; }
.fp-footer-muted { color: #94a3b8; }
.fp-footer-bottom { border-top: 1px solid rgba(255,255,255,.1); }
.fp-footer-bottom-inner { display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: .5rem; padding-top: 1.25rem; padding-bottom: 1.25rem; font-size: .75rem; color: #94a3b8; }
@media (min-width: 768px) { .fp-footer-bottom-inner { flex-direction: row; } }
.fp-footer-bottom-inner p { margin: 0; font-size: .75rem; }
.fp-footer-bottom-inner nav { display: flex; gap: 1rem; }

/* ---------- Yüzen butonlar ---------- */
.whatsapp-float { background: var(--fp-wa) !important; }
.scroll-top { background: var(--fp-700) !important; }

/* =====================================================
   İç sayfalar — mevcut bileşenleri yeni dile uydur
   ===================================================== */
.page-banner {
    background: linear-gradient(135deg, var(--fp-900), var(--fp-800) 50%, var(--fp-700)) !important;
    padding: 3rem 0 2.75rem !important;
    margin-top: 0 !important;
}
.page-banner::before { opacity: .35; }
.page-banner h1 { font-weight: 700; letter-spacing: -.01em; }
.breadcrumb-custom a { color: var(--fp-200) !important; }

.btn-primary-custom, .btn-gold {
    background: var(--fp-600) !important;
    color: #fff !important;
    border-radius: .5rem !important;
    font-weight: 700 !important;
    box-shadow: none !important;
}
.btn-primary-custom:hover, .btn-gold:hover { background: var(--fp-700) !important; transform: none !important; }
.cta-section .btn-gold { background: #fff !important; color: var(--fp-800) !important; }
.cta-section .btn-gold:hover { background: var(--fp-50) !important; }
.btn-secondary-custom { border-radius: .5rem !important; font-weight: 700 !important; }

.section-badge { background: var(--fp-50) !important; color: var(--fp-700) !important; border-radius: 999px !important; font-weight: 700 !important; }
.section-title { font-weight: 700 !important; color: var(--fp-slate-900) !important; }
.section-title span { color: var(--fp-600) !important; -webkit-text-fill-color: currentColor !important; background: none !important; }

.product-card, .service-card, .blog-card, .blog-sidebar-widget, .adv-stat-card, .service-card-pro {
    border-radius: 1rem !important;
    border: 1px solid var(--fp-slate-200) !important;
}
.product-card { border: 2px solid var(--fp-700) !important; overflow: hidden; }
.service-icon, .service-card-pro-icon, .service-detail-icon { background: var(--fp-50) !important; color: var(--fp-600) !important; }

.cta-section { background: var(--fp-800) !important; }
.cta-section::before, .cta-section::after { display: none !important; }
.cta-content h2 span { color: var(--fp-200) !important; -webkit-text-fill-color: currentColor !important; background: none !important; }

.placeholder-img { background: linear-gradient(160deg, #f1f5fc, #d9e3f6) !important; color: var(--fp-300) !important; }

.form-control:focus, .form-select:focus { border-color: var(--fp-500); box-shadow: 0 0 0 .2rem rgba(47, 88, 173, .2); }
.page-link { color: var(--fp-700); }
.page-item.active .page-link { background: var(--fp-600); border-color: var(--fp-600); }

/* İç sayfa kapsayıcısı header ile aynı hizada (fp-container ölçüleri) */
.container {
    max-width: 1280px !important;
    padding-left: 1rem;
    padding-right: 1rem;
}
@media (min-width: 768px) { .container { padding-left: 2rem; padding-right: 2rem; } }

/* ---------- İletişim sayfası ---------- */
.contact-info-card {
    background: linear-gradient(135deg, var(--fp-700), var(--fp-900)) !important;
    border-radius: 1rem !important;
    padding: 2rem !important;
}
@media (min-width: 992px) { .contact-info-card { padding: 2.25rem !important; } }
.contact-info-card h3, .contact-info-card h4 { color: #fff; font-weight: 700; }
.contact-info-item {
    border: 0 !important;
    border-radius: 0 !important;
    margin: 0 !important;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,.12) !important;
    align-items: center !important;
}
.contact-info-item:last-of-type { border-bottom: 0 !important; }
.contact-info-icon {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    background: rgba(255,255,255,.12) !important;
    color: #fff !important;
    border-radius: .75rem !important;
    font-size: 1.1rem !important;
}
.contact-info-text h5 { margin-bottom: .15rem !important; font-size: .9rem !important; color: #fff; }
.contact-info-text p { font-size: .88rem !important; color: rgba(255,255,255,.85); opacity: 1 !important; word-break: break-word; }
.contact-info-text a { color: #fff !important; opacity: 1 !important; }

.contact-form .form-label { font-size: .9rem; color: var(--fp-slate-700); }
.contact-form .form-control,
.contact-form .form-select {
    font-family: inherit;
    font-size: .95rem !important;
    font-weight: 600;
    color: var(--fp-text);
    border: 1px solid #cbd5e1 !important;
    border-radius: .5rem !important;
    padding: .7rem .9rem !important;
    min-height: 48px;
}
.contact-form .form-select { padding-right: 2.25rem !important; }
.contact-form .form-control:focus,
.contact-form .form-select:focus { border-color: var(--fp-500) !important; box-shadow: 0 0 0 3px rgba(47, 88, 173, .15) !important; }

/* Hero: üç poşet fotoğrafı (yan yana, beyaz zemin) */
.fp-hero-photos { background: #fff; display: flex; align-items: flex-end; justify-content: center; gap: 4%; padding: 8% 6% 9%; }
.fp-hp { position: static; height: 74%; width: auto; max-width: 30%; object-fit: contain; }
.fp-hp-center { order: 2; height: 90%; max-width: 34%; }
.fp-hp-left { order: 1; }
.fp-hp-right { order: 3; }

/* Kart görselleri beyaz fonlu fotoğraf */
.fp-card-media:has(img) { background: #fff; }
.fp-card-media img { object-fit: contain; }

@media (min-width: 1200px) { .fp-grid.cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); } }

/* Alt kategori kartları */
.fp-subcats { margin-top: 1.25rem; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .75rem; }
@media (min-width: 768px) { .fp-subcats { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; } }
.fp-subcat { display: flex; flex-direction: column; align-items: center; text-align: center; gap: .25rem; border: 1px solid var(--fp-slate-200); border-radius: 1rem; background: #fff; padding: .9rem .75rem 1rem; text-decoration: none; transition: border-color .2s, box-shadow .2s; }
.fp-subcat:hover { border-color: var(--fp-600); box-shadow: 0 10px 24px rgba(15,23,42,.1); }
.fp-subcat-img { display: block; width: 100%; aspect-ratio: 1 / 1; margin-bottom: .4rem; }
.fp-subcat-img img, .fp-subcat-img svg { width: 100%; height: 100%; object-fit: contain; }
.fp-subcat strong { font-size: .95rem; color: var(--fp-slate-900); line-height: 1.3; }
.fp-subcat small { font-size: .78rem; font-weight: 700; color: var(--fp-600); }

/* Ürün detay */
.fp-pd { display: grid; gap: 2rem; }
@media (min-width: 992px) { .fp-pd { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 3rem; align-items: start; } }
.fp-pd-media { position: relative; border: 2px solid var(--fp-700); border-radius: 1rem; background: #fff; overflow: hidden; aspect-ratio: 1 / 1; }
.fp-pd-media img, .fp-pd-media svg { width: 100%; height: 100%; object-fit: contain; display: block; }
.fp-pill-light { background: var(--fp-50); color: var(--fp-700); text-decoration: none; }
.fp-pill-light:hover { background: var(--fp-100); color: var(--fp-800); }
.fp-pd-title { margin: .9rem 0 0; font-size: 1.6rem; font-weight: 700; color: var(--fp-slate-900); line-height: 1.25; }
@media (min-width: 768px) { .fp-pd-title { font-size: 2rem; } }
.fp-pd-lead { margin: .75rem 0 0; color: var(--fp-slate-600); line-height: 1.6; }
.fp-pd-block { margin-top: 1.5rem; }
.fp-pd-label { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--fp-slate-500); margin-bottom: .6rem; }
.fp-sizes { display: flex; flex-wrap: wrap; gap: .5rem; }
.fp-size { display: inline-flex; align-items: center; border: 2px solid var(--fp-slate-200); border-radius: .5rem; padding: .45rem .8rem; font-size: .88rem; font-weight: 700; color: var(--fp-slate-700); text-decoration: none; background: #fff; transition: border-color .15s, color .15s; }
.fp-size:hover { border-color: var(--fp-500); color: var(--fp-700); }
.fp-size.is-active { border-color: var(--fp-600); background: var(--fp-600); color: #fff; }
.fp-pd-features { list-style: none; margin: 1.5rem 0 0; padding: 0; display: grid; gap: .55rem; }
.fp-pd-features li { display: flex; gap: .6rem; align-items: flex-start; font-size: .93rem; color: var(--fp-slate-700); }
.fp-pd-features i { flex-shrink: 0; display: inline-flex; width: 22px; height: 22px; align-items: center; justify-content: center; border-radius: 999px; background: var(--fp-50); color: var(--fp-600); font-size: .85rem; margin-top: 1px; }
.fp-pd-actions { margin-top: 1.75rem; display: flex; flex-wrap: wrap; gap: .75rem; }
.fp-pd-phone { margin: 1rem 0 0; font-size: .9rem; color: var(--fp-slate-600); }
.fp-pd-phone a { font-weight: 700; color: var(--fp-800); text-decoration: none; }
.fp-pd-desc { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--fp-slate-200); max-width: 56rem; }

/* Adet */
.fp-card-min { margin: -.25rem 0 .7rem; font-size: 11px; font-weight: 700; color: var(--fp-slate-500); }
.fp-pd-note { margin: .6rem 0 0; font-size: .8rem; color: var(--fp-slate-500); }
button.fp-size { cursor: pointer; font-family: inherit; }

/* ---------- Sepet / ödeme ---------- */
.fp-header-right { margin-left: auto; }
.fp-header-actions { display: flex; align-items: center; gap: .5rem; }
.fp-cart-btn { position: relative; display: inline-flex; align-items: center; gap: .45rem; height: 44px; padding: 0 .9rem; border-radius: .5rem; border: 1px solid var(--fp-slate-200); color: var(--fp-800); font-weight: 700; font-size: .9rem; text-decoration: none; background: #fff; }
.fp-cart-btn i { font-size: 1.2rem; }
.fp-cart-btn:hover, .fp-cart-btn.active { border-color: var(--fp-600); color: var(--fp-700); }
.fp-cart-count { position: absolute; top: -7px; right: -7px; min-width: 20px; height: 20px; padding: 0 5px; border-radius: 999px; background: var(--fp-green); color: #fff; font-size: 11px; line-height: 20px; text-align: center; }

.fp-card-price { font-size: 1.15rem; font-weight: 700; color: var(--fp-700); margin-top: .1rem; }
.fp-card-price span { font-size: .72rem; font-weight: 600; color: var(--fp-slate-500); }

.fp-price-box { margin-top: 1.25rem; border: 1px solid var(--fp-100); background: var(--fp-50); border-radius: .75rem; padding: .9rem 1.1rem; }
.fp-price { font-size: 1.75rem; font-weight: 700; color: var(--fp-700); }
.fp-price-vat { font-size: .85rem; font-weight: 600; color: var(--fp-slate-500); }
.fp-price-total { margin-top: .2rem; font-size: .9rem; color: var(--fp-slate-700); }
.fp-price-total strong { color: var(--fp-900); }
.fp-price-total span { color: var(--fp-slate-500); font-size: .8rem; }
label.fp-size { cursor: pointer; }
label.fp-size input { position: absolute; opacity: 0; pointer-events: none; }
label.fp-size:has(input:focus-visible) { outline: 2px solid var(--fp-500); outline-offset: 2px; }

.fp-cart { display: grid; gap: 1.5rem; align-items: start; }
@media (min-width: 992px) { .fp-cart { grid-template-columns: minmax(0, 1fr) 360px; gap: 2rem; } }
.fp-cart-lines { display: grid; gap: 1rem; }
.fp-cart-line { display: grid; grid-template-columns: 80px minmax(0, 1fr); gap: 1rem; align-items: center; border: 1px solid var(--fp-slate-200); border-radius: 1rem; background: #fff; padding: 1rem; }
@media (min-width: 576px) { .fp-cart-line { grid-template-columns: 96px minmax(0, 1fr) auto; } }
.fp-cart-img { display: block; aspect-ratio: 1 / 1; border-radius: .6rem; overflow: hidden; border: 1px solid var(--fp-slate-200); background: #fff; }
.fp-cart-img img { width: 100%; height: 100%; object-fit: contain; }
.fp-cart-name { font-weight: 700; color: var(--fp-slate-900); text-decoration: none; line-height: 1.3; }
.fp-cart-name:hover { color: var(--fp-700); }
.fp-cart-meta { font-size: .82rem; color: var(--fp-slate-500); margin-top: .2rem; }
.fp-cart-controls { display: flex; flex-wrap: wrap; align-items: center; gap: .75rem; margin-top: .6rem; }
.fp-cart-qty .form-select { width: auto; min-width: 140px; font-weight: 600; }
.fp-cart-remove { border: 0; background: none; padding: 0; color: #b91c1c; font-size: .85rem; font-weight: 600; cursor: pointer; }
.fp-cart-line-total { grid-column: 2; font-size: 1.1rem; font-weight: 700; color: var(--fp-slate-900); }
@media (min-width: 576px) { .fp-cart-line-total { grid-column: auto; text-align: right; } }

.fp-summary { position: sticky; top: 140px; border: 2px solid var(--fp-700); border-radius: 1rem; background: #fff; padding: 1.5rem; }
.fp-summary h2 { margin: 0 0 1rem; font-size: 1.15rem; font-weight: 700; color: var(--fp-slate-900); }
.fp-summary dl { margin: 0 0 1rem; display: grid; gap: .5rem; }
.fp-summary dl > div { display: flex; justify-content: space-between; gap: 1rem; font-size: .92rem; color: var(--fp-slate-600); }
.fp-summary dt { font-weight: 600; }
.fp-summary dd { margin: 0; font-weight: 700; color: var(--fp-slate-900); }
.fp-summary .is-total { border-top: 1px solid var(--fp-slate-200); padding-top: .7rem; margin-top: .2rem; font-size: 1.1rem; }
.fp-summary .is-total dd { color: var(--fp-700); }
.fp-summary-note { margin: .75rem 0 0; font-size: .8rem; color: var(--fp-slate-500); text-align: center; }
.fp-summary-lines { list-style: none; margin: 0 0 1rem; padding: 0 0 1rem; border-bottom: 1px solid var(--fp-slate-200); display: grid; gap: .7rem; }
.fp-summary-lines li { display: flex; justify-content: space-between; gap: .75rem; font-size: .88rem; color: var(--fp-slate-700); }
.fp-summary-lines small { display: block; color: var(--fp-slate-500); font-size: .78rem; }
.fp-summary-lines b { white-space: nowrap; color: var(--fp-slate-900); }

.fp-panel { border: 1px solid var(--fp-slate-200); border-radius: 1rem; background: #fff; padding: 1.5rem; }
.fp-panel h2 { margin: 0 0 1rem; font-size: 1.1rem; font-weight: 700; color: var(--fp-slate-900); }
.fp-panel h2 small { font-size: .8rem; font-weight: 600; color: var(--fp-slate-500); }
.fp-pay-options { display: grid; gap: .75rem; }
@media (min-width: 576px) { .fp-pay-options { grid-template-columns: 1fr 1fr; } }
.fp-pay { position: relative; display: flex; flex-direction: column; gap: .15rem; border: 2px solid var(--fp-slate-200); border-radius: .75rem; padding: 1rem; cursor: pointer; }
.fp-pay input { position: absolute; opacity: 0; }
.fp-pay.is-active { border-color: var(--fp-600); background: var(--fp-50); }
.fp-pay.is-disabled { cursor: not-allowed; opacity: .55; }
.fp-pay-icon { font-size: 1.5rem; }
.fp-pay strong { color: var(--fp-slate-900); }
.fp-pay small { font-size: .78rem; color: var(--fp-slate-500); }
.fp-agree { display: flex; gap: .6rem; align-items: flex-start; font-size: .83rem; color: var(--fp-slate-700); margin-bottom: 1rem; cursor: pointer; }
.fp-agree input { margin-top: .2rem; width: 18px; height: 18px; flex-shrink: 0; accent-color: var(--fp-600); }
.fp-agree a { color: var(--fp-700); font-weight: 700; }

.fp-empty { text-align: center; padding: 3rem 1rem; }
.fp-empty-icon { font-size: 3rem; }
.fp-success { text-align: center; }
.fp-success-icon { display: inline-flex; width: 64px; height: 64px; align-items: center; justify-content: center; border-radius: 999px; background: var(--fp-green); color: #fff; font-size: 2rem; font-weight: 700; margin-bottom: 1rem; }
.fp-bank dl { margin: 1rem 0; display: grid; gap: .5rem; }
.fp-bank dl > div { display: grid; grid-template-columns: 115px minmax(0, 1fr); gap: .75rem; font-size: .92rem; }
.fp-bank dt { color: var(--fp-slate-500); font-weight: 600; }
.fp-bank dd { margin: 0; color: var(--fp-slate-900); word-break: break-all; }
.fp-bank code { font-size: .95rem; color: var(--fp-800); background: var(--fp-50); padding: .15rem .4rem; border-radius: .3rem; }
.fp-copy { margin-left: .4rem; border: 1px solid var(--fp-slate-200); background: #fff; border-radius: .35rem; font-size: .75rem; font-weight: 700; padding: .15rem .5rem; color: var(--fp-700); cursor: pointer; }

/* ---------- Ürün sayfası (fermuarliposet düzeni) ---------- */
.fp-crumbs { display: flex; flex-wrap: wrap; gap: .4rem; padding-top: 1.25rem; font-size: .82rem; color: var(--fp-slate-500); }
.fp-crumbs a { color: var(--fp-slate-600); text-decoration: none; font-weight: 600; }
.fp-crumbs a:hover { color: var(--fp-700); }
.fp-crumbs [aria-current] { color: var(--fp-slate-900); font-weight: 700; }
.fp-pd { padding-top: 1.5rem; }
.fp-pd-size { font-size: .9rem; padding: .35rem .7rem; }
.fp-pd-model { display: inline-block; font-size: .85rem; font-weight: 700; color: var(--fp-600); text-decoration: none; }
.fp-pd-info .fp-pd-title { margin-top: .25rem; }
.fp-h3 { margin: 0; font-size: 1.35rem; font-weight: 700; color: var(--fp-slate-900); }
@media (min-width: 768px) { .fp-h3 { font-size: 1.6rem; } }

.fp-pricebox { margin-top: 1.5rem; border: 1px solid var(--fp-slate-200); background: var(--fp-slate-50); border-radius: 1rem; padding: 1.25rem; }
.fp-pricebox-label { font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; color: var(--fp-slate-500); font-weight: 700; }
.fp-pricebox-main { margin-top: .2rem; display: flex; align-items: baseline; gap: .6rem; }
.fp-pricebox-main span { font-size: 2rem; font-weight: 700; color: var(--fp-slate-900); line-height: 1.1; }
.fp-pricebox-main small { font-size: 1rem; font-weight: 600; color: var(--fp-slate-500); }
.fp-pricebox-sub { margin-top: .3rem; font-size: .86rem; color: var(--fp-slate-600); }
.fp-pricebox-sub strong { color: var(--fp-700); }

.fp-shipband, .fp-infolink { margin-top: 1rem; display: flex; align-items: center; gap: .8rem; border-radius: 1rem; padding: .75rem 1.1rem; text-decoration: none; }
.fp-shipband { border: 1px solid var(--fp-100); background: var(--fp-50); }
.fp-shipband > span, .fp-infolink > span { display: grid; place-items: center; flex-shrink: 0; width: 40px; height: 40px; border-radius: .6rem; background: #fff; font-size: 1.25rem; }
.fp-shipband strong, .fp-infolink strong { display: block; font-size: .9rem; color: var(--fp-800); }
.fp-shipband small, .fp-infolink small { display: block; font-size: .78rem; color: var(--fp-slate-600); }
.fp-infolink { border: 1px solid var(--fp-200); background: var(--fp-50); transition: border-color .15s, box-shadow .15s; }
.fp-infolink:hover { border-color: var(--fp-300); box-shadow: 0 4px 12px rgba(15,23,42,.06); }

.fp-qtybox { margin-top: 1rem; border: 1px solid var(--fp-slate-200); border-radius: 1rem; padding: 1.25rem; background: #fff; }
.fp-qtybox-head { display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.fp-qtybox-head span { font-size: .75rem; text-transform: uppercase; letter-spacing: .06em; font-weight: 700; color: var(--fp-slate-500); }
.fp-qtybox-head small { font-size: .72rem; color: var(--fp-slate-500); }
.fp-qtygrid { margin-top: .75rem; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .5rem; }
@media (min-width: 576px) { .fp-qtygrid { grid-template-columns: repeat(5, minmax(0, 1fr)); } }
.fp-qtyopt { position: relative; display: flex; flex-direction: column; align-items: center; border: 2px solid var(--fp-slate-200); border-radius: .75rem; padding: .65rem .4rem; cursor: pointer; background: #fff; transition: border-color .15s, background .15s; }
.fp-qtyopt input { position: absolute; opacity: 0; pointer-events: none; }
.fp-qtyopt strong { font-size: 1.05rem; color: var(--fp-slate-900); }
.fp-qtyopt small { font-size: 10px; color: var(--fp-slate-500); }
.fp-qtyopt:hover { border-color: var(--fp-300); }
.fp-qtyopt.is-active { border-color: var(--fp-600); background: var(--fp-50); box-shadow: 0 1px 3px rgba(15,23,42,.08); }
.fp-qtyopt.is-active strong { color: var(--fp-700); }
.fp-qtyopt:has(input:focus-visible) { outline: 2px solid var(--fp-500); outline-offset: 2px; }
.fp-qtybox-sum { margin-top: 1.1rem; padding-top: 1rem; border-top: 1px solid var(--fp-slate-200); display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.fp-qtybox-sum small { display: block; font-size: .75rem; color: var(--fp-slate-500); }
.fp-qtybox-sum b { font-size: 1.1rem; color: var(--fp-slate-900); }
.fp-qtybox-sum em { font-style: normal; font-size: .72rem; color: var(--fp-slate-500); }
.fp-qtybox-total { font-size: 1.6rem; font-weight: 700; color: var(--fp-700); line-height: 1.2; margin-top: .1rem; }
.fp-qtybox-vat { margin-top: .2rem; font-size: .9rem; font-weight: 700; color: var(--fp-slate-700); }
.fp-qtybox-actions { margin-top: 1rem; display: grid; gap: .5rem; }
@media (min-width: 576px) { .fp-qtybox-actions { grid-template-columns: 1fr 1fr; } }
.fp-qtybox-actions .fp-btn { width: 100%; }
.fp-qtybox-note { margin: .75rem 0 0; font-size: .72rem; color: var(--fp-slate-500); text-align: center; }

.fp-twin { margin-top: .75rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; border: 1px solid var(--fp-slate-200); border-radius: 1rem; padding: .75rem 1.1rem; text-decoration: none; background: #fff; transition: border-color .15s; }
.fp-twin:hover { border-color: var(--fp-300); }
.fp-twin strong { display: block; font-size: .88rem; color: var(--fp-slate-900); }
.fp-twin small { display: block; font-size: .75rem; color: var(--fp-slate-500); }
.fp-twin b { display: block; color: var(--fp-700); white-space: nowrap; }

.fp-pd-more { margin-top: 3.5rem; display: grid; gap: 2.5rem; }
@media (min-width: 992px) { .fp-pd-more { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); } }
.fp-pd-more .fp-prose p:first-child { margin-top: .75rem; }
.fp-fits { list-style: none; margin: 1.25rem 0 0; padding: 0; display: grid; gap: .5rem; }
@media (min-width: 576px) { .fp-fits { grid-template-columns: 1fr 1fr; } }
.fp-fits li { display: flex; gap: .5rem; align-items: flex-start; border-radius: .5rem; background: var(--fp-slate-50); padding: .55rem .75rem; font-size: .86rem; color: var(--fp-slate-700); }
.fp-fits li span { color: var(--fp-600); font-weight: 700; }
.fp-specs { margin: 1rem 0 0; border: 1px solid var(--fp-slate-200); border-radius: 1rem; overflow: hidden; }
.fp-specs > div { display: flex; justify-content: space-between; gap: 1rem; padding: .75rem 1rem; font-size: .88rem; }
.fp-specs > div + div { border-top: 1px solid #f1f5f9; }
.fp-specs dt { color: var(--fp-slate-500); font-weight: 600; }
.fp-specs dd { margin: 0; text-align: right; font-weight: 700; color: var(--fp-slate-900); }

/* Son satırı ortalanan kart ızgarası (ana sayfa kategorileri) */
.fp-grid.is-centered { display: flex; flex-wrap: wrap; justify-content: center; }
.fp-grid.is-centered > * { flex: 0 0 calc((100% - .75rem) / 2); }
@media (min-width: 576px) { .fp-grid.is-centered > * { flex-basis: calc((100% - 1rem) / 2); } }
@media (min-width: 768px) { .fp-grid.is-centered > * { flex-basis: calc((100% - 2rem) / 3); } }
@media (min-width: 1200px) { .fp-grid.is-centered > * { flex-basis: calc((100% - 3rem) / 4); } }

/* Menüde yalnız kategoriler: tüm genişliğe eşit yay */
.fp-nav-list { flex: 1; justify-content: flex-start; }

/* Ana sayfa: Doypack Çeşitlerimiz — geniş alan, masaüstünde 7 kutu yan yana */
.fp-container.fp-cats-wide { max-width: 1640px; }
@media (min-width: 1200px) {
  .fp-grid.is-centered.cols-7 { flex-wrap: nowrap; gap: .9rem; }
  .fp-grid.is-centered.cols-7 > * { flex: 1 1 0; min-width: 0; }
  .fp-grid.cols-7 .fp-card-body { padding: .7rem .6rem .9rem; }
  .fp-grid.cols-7 .fp-card-body h3 { font-size: .9rem; min-height: 2.45em; display: flex; align-items: center; justify-content: center; }
  .fp-grid.cols-7 .fp-card-desc { font-size: .76rem; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
  .fp-grid.cols-7 .fp-badge-blue { display: none; }
}

/* Hizmet detay içerikleri */
.content-body a { color: var(--fp-600); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.content-body a:hover { color: var(--fp-800); }
.content-body table { display: block; overflow-x: auto; }
@media (min-width: 768px) { .content-body table { display: table; } }
.content-body table td { padding: 11px 16px; border-top: 1px solid #e2e8f0; font-size: .92rem; vertical-align: top; }
.content-body table tbody tr:nth-child(even) td { background: #f8fafc; }
.content-body table th { background: var(--fp-800); }
.content-body .svc-faq { margin-top: 2.5rem; }
.content-body .svc-faq h3 { font-size: 1.05rem; margin: 0; padding: 1rem 1.1rem .35rem; background: #f4f7fc; border: 1px solid #e2e8f0; border-bottom: 0; border-radius: 12px 12px 0 0; }
.content-body .svc-faq h3 + p { margin: 0 0 .9rem; padding: .1rem 1.1rem 1rem; background: #f4f7fc; border: 1px solid #e2e8f0; border-top: 0; border-radius: 0 0 12px 12px; font-size: .95rem; line-height: 1.7; }

/* Hero: Canva tek görsel (3 doypack) */
.fp-hero-photo { background: #fff; }
.fp-hero-photo img { width: 100%; height: 100%; display: block; box-sizing: border-box; padding: 7% 11% 15%; object-fit: contain; object-position: center; }
.fp-hero-swiper { width: 100%; height: 100%; }
.fp-hero-swiper .swiper-slide { display: block; position: relative; background: #fff; }
.fp-hero-cap { position: absolute; left: 12px; bottom: 12px; padding: .35rem .7rem; border-radius: 999px; background: rgba(15,43,105,.88); color: #fff; font-size: .75rem; font-weight: 700; letter-spacing: .01em; }
.fp-hero-swiper .swiper-pagination { bottom: 14px !important; left: auto !important; right: 12px; width: auto !important; }
.fp-hero-swiper .swiper-pagination-bullet { width: 7px; height: 7px; background: #0f2b69; opacity: .25; margin: 0 3px !important; transition: width .25s, opacity .25s; }
.fp-hero-swiper .swiper-pagination-bullet-active { width: 20px; border-radius: 4px; opacity: 1; }

/* İletişim: IBAN + harita */
.fp-iban { font-size: .9rem; color: var(--fp-800); background: var(--fp-50); padding: .15rem .4rem; border-radius: .3rem; white-space: nowrap; }
.contact-info-text .fp-copy { margin-left: .35rem; }
.fp-map { border-radius: 1rem; overflow: hidden; border: 1px solid #e2e8f0; aspect-ratio: 16 / 7; background: #eef2f8; }
.fp-map iframe { width: 100%; height: 100%; border: 0; display: block; }
@media (max-width: 767px) { .fp-map { aspect-ratio: 4 / 3; } }
.fp-map-actions { display: flex; flex-wrap: wrap; gap: .75rem 1.25rem; align-items: center; justify-content: space-between; margin-top: 1rem; color: var(--fp-slate-700, #334155); font-weight: 600; }
.fp-map-actions i { color: var(--fp-600); }

/* Üst: sipariş hattı ile Sepetim arası */
@media (min-width: 768px) { .fp-header-right { margin-right: 2.25rem; } }
@media (min-width: 1200px) { .fp-header-right { margin-right: 3rem; } }
