:root {
    --fp-navy: #0b2545;
    --fp-accent: #1d4ed8;
    --fp-accent-dark: #1e3a8a;
    --fp-accent-soft: #eff6ff;
    --fp-accent-border: #bfdbfe;
    --fp-text: #0f172a;
    --fp-muted: #64748b;
    --fp-border: #e5e7eb;
    --fp-bg: #f8fafc;
    --fp-card: #ffffff;
    --fp-card-soft: #f1f5f9;
    --fp-gold: #fbbf24;
    --fp-sidebar-top: 90px;
    --fp-shadow-hover: 0 12px 30px rgba(29,78,216,.12);
}
body.dark-mode {
    --fp-navy: #1e293b;
    --fp-accent: #60a5fa;
    --fp-accent-dark: #3b82f6;
    --fp-accent-soft: rgba(29,78,216,.15);
    --fp-accent-border: rgba(96,165,250,.35);
    --fp-text: #e2e8f0;
    --fp-muted: #94a3b8;
    --fp-border: #334155;
    --fp-bg: #0a0f1e;
    --fp-card: #111827;
    --fp-card-soft: #1e293b;
    --fp-shadow-hover: 0 12px 30px rgba(0,0,0,.4);
}
.fp-wrap * { box-sizing: border-box; }
.fp-wrap {
    max-width: 1360px;
    margin: 0 auto;
    padding: 20px 20px 60px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--fp-text);
    background: var(--fp-bg);
    min-height: 100vh;
    overflow-x: hidden;
    transition: background-color .25s, color .25s;
}
@keyframes fpFadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
@keyframes crownGlow { 0%,100% { opacity: .5; transform: scale(1); } 50% { opacity: 1; transform: scale(1.15); } }
@keyframes starTwinkle { 0%,100% { opacity: .85; transform: translateY(-50%) scale(1); } 50% { opacity: 1; transform: translateY(-50%) scale(1.15); } }

.fp-crumb { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; font-size: 12.5px; color: var(--fp-muted); margin-bottom: 14px; }
.fp-crumb a { color: var(--fp-muted); text-decoration: none; transition: color .2s; }
.fp-crumb a:hover { color: var(--fp-accent); }
.fp-crumb .sep { opacity: .5; font-size: 10px; }
.fp-crumb .current { color: var(--fp-text); font-weight: 600; }

/* =============================================
   ★★★ ANA LAYOUT - FLEXBOX KESİN HİZALAMA ★★★
   ============================================= */
.fp-layout {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
}

/* =============================================
   SIDEBAR
   ============================================= */
.fp-side {
    flex: 0 0 240px;
    width: 240px;
    max-width: 240px;
    background: var(--fp-card);
    border: 1px solid var(--fp-border);
    border-radius: 12px;
    padding: 0;
    position: sticky;
    top: 5px;
    align-self: flex-start;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 5;
    scrollbar-width: thin;
    scrollbar-color: rgba(100,116,139,.35) transparent;
    transition: background-color .25s, border-color .25s;
}
.fp-side:hover { border-color: rgba(29,78,216,.4); }
.fp-side::-webkit-scrollbar { width: 6px; }
.fp-side::-webkit-scrollbar-track { background: transparent; margin: 8px 0; }
.fp-side::-webkit-scrollbar-thumb { background: rgba(100,116,139,.3); border-radius: 999px; }
.fp-side::-webkit-scrollbar-thumb:hover { background: var(--fp-accent); }
body.dark-mode .fp-side::-webkit-scrollbar-thumb { background: rgba(96,165,250,.4); }
body.dark-mode .fp-side::-webkit-scrollbar-thumb:hover { background: #60a5fa; }

.fp-side-group { padding: 16px 18px 12px; margin-bottom: 0; border-bottom: 1px solid var(--fp-border); }
.fp-side-group:last-of-type { border-bottom: none; }
.fp-side-group h4 {
    font-size: 11.5px; font-weight: 800; text-transform: uppercase;
    letter-spacing: .6px; color: var(--fp-muted); margin: 0 0 10px;
    display: flex; align-items: center; justify-content: space-between; gap: 6px;
}
.fp-side-group h4 > span { display: flex; align-items: center; gap: 6px; }
.fp-side-group h4 i { font-size: 11px; color: var(--fp-accent); }
.fp-side-group h4 .adet-badge {
    font-size: 10px; background: var(--fp-accent-soft); color: var(--fp-accent);
    padding: 2px 6px; border-radius: 4px; font-weight: 700; letter-spacing: 0;
}

.fp-side-list { display: flex; flex-direction: column; gap: 4px; }
.fp-side-list a {
    display: flex; align-items: center; gap: 10px;
    padding: 8px 10px; text-decoration: none;
    border-radius: 8px; transition: all .15s;
    font-size: 13px; color: var(--fp-text);
    border: 1px solid transparent;
}
.fp-side-list a:hover { background: var(--fp-accent-soft); color: var(--fp-accent); border-color: var(--fp-accent-border); transform: translateX(3px); }

.fp-side-list a .fp-side-img {
    width: 44px; height: 44px; border-radius: 8px;
    background: var(--fp-card-soft); border: 1px solid var(--fp-border);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden; flex-shrink: 0; padding: 3px;
}
.fp-side-list a:hover .fp-side-img { border-color: var(--fp-accent); background: var(--fp-card); }
.fp-side-list a .fp-side-img img { max-width: 100%; max-height: 100%; object-fit: contain; }
.fp-side-list a .fp-side-img i { font-size: 16px; color: var(--fp-muted); opacity: .5; }
.fp-side-list a .info { flex: 1; min-width: 0; }
.fp-side-list a .name { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; line-height: 1.3; font-weight: 600; margin-bottom: 3px; color: inherit; }
.fp-side-list a .price { font-size: 12px; font-weight: 800; color: var(--fp-accent); }
.fp-side-list a:hover .price { color: var(--fp-accent-dark); }
body.dark-mode .fp-side-list a:hover .price { color: #93c5fd; }

.fp-side-list a.brand-item { padding: 9px 10px; }
.fp-side-list a.brand-item .info { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.fp-side-list a.brand-item .name { margin-bottom: 0; font-size: 13px; -webkit-line-clamp: 1; }
.fp-side-list a.brand-item .adet-badge {
    font-size: 10.5px; color: var(--fp-muted); font-weight: 700;
    background: var(--fp-card-soft); padding: 2px 6px;
    border-radius: 4px; flex-shrink: 0;
}
.fp-side-list a.brand-item:hover .adet-badge { background: var(--fp-accent); color: #fff; }

.fp-side-clear { padding: 14px 18px 18px; border-top: 1px solid var(--fp-border); }
.fp-side-clear a { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 10px; background: var(--fp-accent-soft); color: var(--fp-accent); border-radius: 8px; font-weight: 700; font-size: 13px; text-decoration: none; border: 1px solid var(--fp-accent-border); transition: all .2s; }
.fp-side-clear a:hover { background: var(--fp-accent); color: #fff; border-color: var(--fp-accent); }

/* =============================================
   MAIN
   ============================================= */
.fp-main {
    flex: 1 1 auto;
    min-width: 0;
    align-self: flex-start;
}

.fp-head {
    background: var(--fp-card); border: 1px solid var(--fp-border);
    border-radius: 14px; padding: 30px; margin-bottom: 18px;
    animation: fpFadeUp .4s ease both; position: relative; overflow: hidden;
    display: grid; grid-template-columns: 300px 1fr; gap: 32px; align-items: center;
    transition: background-color .25s, border-color .25s;
}
.fp-head::before {
    content: ''; position: absolute; top: -80px; right: -80px;
    width: 220px; height: 220px;
    background: radial-gradient(circle, rgba(29,78,216,.08), transparent 70%);
    border-radius: 50%; pointer-events: none;
}
body.dark-mode .fp-head::before { background: radial-gradient(circle, rgba(96,165,250,.1), transparent 70%); }

.fp-head-img {
    width: 300px; height: 300px;
    background: var(--fp-card-soft); border: 1px solid var(--fp-border);
    border-radius: 16px; display: flex; align-items: center; justify-content: center;
    overflow: hidden; position: relative; z-index: 1; padding: 24px;
    transition: box-shadow .3s;
}
.fp-head-img:hover { box-shadow: var(--fp-shadow-hover); }
.fp-head-img img { max-width: 100%; max-height: 100%; object-fit: contain; transition: transform .35s ease; }
.fp-head-img:hover img { transform: scale(1.06); }
.fp-head-img .no-img { font-size: 90px; color: var(--fp-muted); opacity: .3; }
.fp-head-content { position: relative; z-index: 1; }
.fp-brand { display: inline-flex; align-items: center; gap: 6px; padding: 5px 14px; background: linear-gradient(135deg, #1d4ed8, #1e3a8a); color: #fff; border-radius: 6px; font-size: 11px; font-weight: 800; letter-spacing: .6px; text-transform: uppercase; margin-bottom: 14px; box-shadow: 0 2px 8px rgba(29,78,216,.25); }
.fp-head h1 { font-size: 28px; font-weight: 800; color: var(--fp-text); line-height: 1.3; letter-spacing: -.5px; margin: 0 0 18px; }
.fp-head-meta { display: flex; gap: 24px; flex-wrap: wrap; font-size: 13.5px; color: var(--fp-muted); }
.fp-head-meta span { display: inline-flex; align-items: center; gap: 6px; }
.fp-head-meta i { color: var(--fp-accent); font-size: 12px; }

.fp-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 20px; }
.fp-stat { background: var(--fp-card); border: 1px solid var(--fp-border); border-radius: 12px; padding: 18px 20px; transition: all .25s ease; animation: fpFadeUp .4s ease both; }
.fp-stat:hover { border-color: var(--fp-accent); box-shadow: var(--fp-shadow-hover); transform: translateY(-3px); }
.fp-stat-label { font-size: 11px; color: var(--fp-muted); font-weight: 700; text-transform: uppercase; letter-spacing: .8px; margin-bottom: 8px; display: flex; align-items: center; gap: 6px; }
.fp-stat-label i { font-size: 11px; color: var(--fp-accent); }
.fp-stat-value { font-size: 20px; font-weight: 800; color: var(--fp-text); letter-spacing: -.5px; line-height: 1.2; }
.fp-stat-value.best { color: var(--fp-accent-dark); }
.fp-stat-value.accent { color: var(--fp-accent); }
.fp-stat-sub { font-size: 11.5px; color: var(--fp-muted); margin-top: 6px; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.fp-list { background: var(--fp-card); border: 1px solid var(--fp-border); border-radius: 14px; overflow: hidden; animation: fpFadeUp .4s ease .2s both; transition: background-color .25s, border-color .25s; }
.fp-list-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding: 18px 26px; background: var(--fp-card-soft); border-bottom: 1px solid var(--fp-border); }
.fp-list-head h2 { font-size: 15px; font-weight: 800; color: var(--fp-text); margin: 0; display: flex; align-items: center; gap: 10px; }
.fp-list-head h2 i { color: var(--fp-accent); font-size: 14px; }
.fp-list-head .badge { padding: 5px 12px; background: var(--fp-accent-soft); color: var(--fp-accent); border-radius: 6px; font-size: 11.5px; font-weight: 800; letter-spacing: .3px; border: 1px solid var(--fp-accent-border); }

.fp-item { display: flex; align-items: center; gap: 16px; padding: 16px 26px; border-bottom: 1px solid var(--fp-border); text-decoration: none; color: inherit; transition: background .2s, padding-left .2s; position: relative; animation: fpFadeUp .35s ease both; }
.fp-item:last-child { border-bottom: none; }
.fp-item.prime { background: linear-gradient(90deg, rgba(219,234,254,.6) 0%, rgba(239,246,255,.3) 60%, transparent 100%); border-left: 4px solid var(--fp-accent); padding-left: 22px; }
body.dark-mode .fp-item.prime { background: linear-gradient(90deg, rgba(29,78,216,.18) 0%, rgba(29,78,216,.06) 60%, transparent 100%); border-left-color: #3b82f6; }
.fp-item.prime:hover { padding-left: 26px; }
.fp-item:not(.prime):hover { background: var(--fp-card-soft); padding-left: 30px; }
.fp-rank { width: 36px; height: 36px; border-radius: 50%; background: var(--fp-card-soft); color: var(--fp-muted); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 800; flex-shrink: 0; transition: all .25s; }
.fp-item.prime .fp-rank { background: linear-gradient(135deg, #1d4ed8, #1e3a8a); color: var(--fp-gold); box-shadow: 0 4px 14px rgba(29,78,216,.4); font-size: 16px; position: relative; }
.fp-item.prime .fp-rank::after { content: ''; position: absolute; inset: -2px; border-radius: 50%; background: radial-gradient(circle, rgba(251,191,36,.3), transparent 70%); pointer-events: none; animation: crownGlow 2s ease-in-out infinite; }
.fp-info { flex: 1; min-width: 0; }
.fp-name { font-size: 14.5px; font-weight: 700; color: var(--fp-text); margin: 0 0 5px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.fp-badge { display: inline-flex; align-items: center; gap: 5px; padding: 4px 12px; background: linear-gradient(135deg, #1d4ed8, #1e3a8a); color: #fff; border-radius: 6px; font-size: 10.5px; font-weight: 800; letter-spacing: .5px; text-transform: uppercase; box-shadow: 0 3px 10px rgba(29,78,216,.35); }
.fp-badge i { color: var(--fp-gold); font-size: 11px; }
.fp-meta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; font-size: 12px; color: var(--fp-muted); }
.fp-meta span { display: inline-flex; align-items: center; gap: 5px; }
.fp-meta i { font-size: 11px; }
.fp-price-wrap { display: flex; align-items: center; gap: 18px; flex-shrink: 0; position: relative; }
.fp-price { font-size: 18px; font-weight: 800; color: var(--fp-text); letter-spacing: -.4px; line-height: 1; white-space: nowrap; transition: color .2s; }
.fp-item.prime .fp-price { color: var(--fp-accent-dark); font-size: 20px; font-weight: 900; letter-spacing: -.5px; }
.fp-btn { display: inline-flex; align-items: center; gap: 6px; padding: 9px 18px; background: var(--fp-accent); color: #fff; border-radius: 8px; font-size: 12.5px; font-weight: 700; transition: all .25s; white-space: nowrap; }
.fp-item:hover .fp-btn { background: var(--fp-accent-dark); box-shadow: 0 4px 14px rgba(29,78,216,.28); }
.fp-item.prime .fp-btn { background: linear-gradient(135deg, #1d4ed8, #1e3a8a); }

.fp-note { margin-top: 20px; padding: 16px 20px; background: var(--fp-card); border: 1px solid var(--fp-border); border-left: 4px solid var(--fp-accent); border-radius: 10px; display: flex; gap: 14px; align-items: flex-start; animation: fpFadeUp .4s ease .3s both; }
.fp-note-icon { width: 34px; height: 34px; border-radius: 8px; background: var(--fp-accent-soft); display: flex; align-items: center; justify-content: center; color: var(--fp-accent); font-size: 15px; flex-shrink: 0; }
.fp-note-text { font-size: 12.5px; line-height: 1.65; color: var(--fp-muted); }
.fp-note-text strong { color: var(--fp-text); display: block; margin-bottom: 3px; font-weight: 800; font-size: 13px; }

.fp-similar { margin-top: 32px; animation: fpFadeUp .4s ease .35s both; }
.fp-similar-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 14px; }
.fp-similar-head h2 { font-size: 16px; font-weight: 800; color: var(--fp-text); margin: 0; display: flex; align-items: center; gap: 8px; }
.fp-similar-head h2 i { color: var(--fp-accent); font-size: 15px; }
.fp-similar-head .adet { font-size: 12px; background: var(--fp-accent-soft); color: var(--fp-accent); padding: 3px 10px; border-radius: 999px; font-weight: 700; }
.fp-similar-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.fp-similar-card { display: flex; flex-direction: column; background: var(--fp-card); border: 1px solid var(--fp-border); border-radius: 12px; text-decoration: none; color: inherit; transition: all .25s ease; position: relative; overflow: hidden; }
.fp-similar-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, #1d4ed8, #1e3a8a); transform: scaleX(0); transform-origin: left; transition: transform .3s; z-index: 1; }
.fp-similar-card:hover { border-color: var(--fp-accent); box-shadow: var(--fp-shadow-hover); transform: translateY(-4px); }
.fp-similar-card:hover::before { transform: scaleX(1); }
.fp-similar-img { width: 100%; height: 150px; background: var(--fp-card-soft); display: flex; align-items: center; justify-content: center; overflow: hidden; transition: background .25s; padding: 12px; }
.fp-similar-card:hover .fp-similar-img { background: var(--fp-accent-soft); }
.fp-similar-img img { max-width: 100%; max-height: 100%; object-fit: contain; transition: transform .3s; }
.fp-similar-card:hover .fp-similar-img img { transform: scale(1.06); }
.fp-similar-img .no-img { font-size: 36px; color: var(--fp-muted); opacity: .4; }
.fp-similar-info { padding: 12px 14px 14px; }
.fp-similar-name { font-size: 13px; font-weight: 700; color: var(--fp-text); line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin: 0 0 10px; min-height: 35px; }
.fp-similar-card:hover .fp-similar-name { color: var(--fp-accent); }
.fp-similar-price { display: inline-flex; align-items: center; gap: 5px; font-size: 14px; font-weight: 800; color: var(--fp-accent-dark); letter-spacing: -.3px; padding: 6px 14px; background: linear-gradient(180deg, #ffffff 0%, #eff6ff 100%); border: 1px solid #dbeafe; border-radius: 999px; box-shadow: 0 2px 6px rgba(29,78,216,.08), inset 0 1px 0 rgba(255,255,255,.8); transition: all .3s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.fp-similar-price::after { content: '\f0d6'; font-family: 'Font Awesome 6 Free'; font-weight: 900; font-size: 10px; color: var(--fp-accent); opacity: .55; margin-left: 1px; }
.fp-similar-card:hover .fp-similar-price { background: linear-gradient(180deg, #eff6ff 0%, #dbeafe 100%); border-color: #bfdbfe; color: var(--fp-accent); transform: translateY(-2px); }
body.dark-mode .fp-similar-price { background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%); border-color: #334155; color: #93c5fd; box-shadow: 0 2px 6px rgba(0,0,0,.3); }
body.dark-mode .fp-similar-price::after { color: #60a5fa; opacity: .7; }
body.dark-mode .fp-similar-card:hover .fp-similar-price { background: linear-gradient(180deg, #243347 0%, #1e293b 100%); border-color: #475569; color: #bfdbfe; }

.fp-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 40px; padding-top: 32px; border-top: 1px dashed var(--fp-border); animation: fpFadeUp .4s ease .4s both; }
.fp-action-btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 28px; border-radius: 12px; font-size: 14px; font-weight: 800; text-decoration: none; transition: all .28s cubic-bezier(0.175, 0.885, 0.32, 1.275); border: 2px solid transparent; }
.fp-action-primary { background: linear-gradient(135deg, #1d4ed8, #1e3a8a); color: #fff; box-shadow: 0 6px 20px rgba(29,78,216,.25); }
.fp-action-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(29,78,216,.35); }
.fp-action-secondary { background: var(--fp-card); color: var(--fp-text); border-color: var(--fp-border); }
.fp-action-secondary:hover { transform: translateY(-3px); border-color: var(--fp-accent); color: var(--fp-accent); }

/* =============================================
   RESPONSIVE - 5 KADEME
   ============================================= */
@media (max-width: 1024px) {
    .fp-layout { flex-direction: column; gap: 16px; }
    .fp-side { flex: 1 1 auto; width: 100%; max-width: 100%; position: static; max-height: none; margin-bottom: 4px; }
    .fp-main { width: 100%; }
    .fp-stats { grid-template-columns: repeat(2, 1fr); }
    .fp-similar-grid { grid-template-columns: repeat(2, 1fr); }
    .fp-head { grid-template-columns: 240px 1fr; gap: 24px; padding: 24px; }
    .fp-head-img { width: 240px; height: 240px; padding: 20px; }
}
@media (max-width: 768px) {
    .fp-wrap { padding: 16px 14px 50px; }
    .fp-head { grid-template-columns: 1fr; padding: 20px 18px; gap: 20px; text-align: center; }
    .fp-head-img { width: 100%; height: 240px; padding: 20px; margin: 0 auto; }
    .fp-head-img .no-img { font-size: 70px; }
    .fp-head h1 { font-size: 20px; }
    .fp-head-meta { justify-content: center; gap: 14px; }
    .fp-stats { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .fp-stat { padding: 14px; }
    .fp-stat-value { font-size: 16px; }
    .fp-similar-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .fp-similar-img { height: 130px; }
}
@media (max-width: 640px) {
    .fp-wrap { padding: 14px 12px 45px; }
    .fp-similar-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .fp-similar-img { height: 110px; }
    .fp-similar-info { padding: 10px 10px 12px; }
    .fp-similar-name { font-size: 12px; min-height: 32px; }
    .fp-similar-price { font-size: 13px; padding: 5px 10px; }
    .fp-list-head { padding: 14px 16px; }
    .fp-item { padding: 14px 16px; gap: 10px; }
    .fp-item.prime { padding-left: 14px; }
}
@media (max-width: 480px) {
    .fp-wrap { padding: 12px 10px 40px; }
    .fp-crumb { font-size: 11.5px; margin-bottom: 10px; }
    .fp-head { padding: 16px 14px; gap: 16px; }
    .fp-head-img { height: 200px; padding: 16px; border-radius: 12px; }
    .fp-head-img .no-img { font-size: 55px; }
    .fp-head h1 { font-size: 17px; line-height: 1.3; margin-bottom: 12px; }
    .fp-brand { font-size: 10px; padding: 4px 10px; margin-bottom: 10px; }
    .fp-head-meta { gap: 10px; font-size: 12px; }
    .fp-head-meta span { font-size: 12px; }
    .fp-stats { gap: 6px; }
    .fp-stat { padding: 12px 12px; border-radius: 10px; }
    .fp-stat-label { font-size: 10px; }
    .fp-stat-value { font-size: 14px; }
    .fp-stat-sub { font-size: 10.5px; }
    .fp-list-head { padding: 12px 14px; }
    .fp-list-head h2 { font-size: 13.5px; }
    .fp-list-head .badge { font-size: 10.5px; padding: 4px 10px; }
    .fp-item { padding: 12px 14px; gap: 10px; flex-wrap: wrap; }
    .fp-item.prime { padding-left: 14px; }
    .fp-item:hover { padding-left: 14px; }
    .fp-rank { width: 28px; height: 28px; font-size: 11px; }
    .fp-item.prime .fp-rank { font-size: 14px; }
    .fp-name { font-size: 13px; }
    .fp-badge { font-size: 9.5px; padding: 3px 8px; }
    .fp-meta { font-size: 11px; gap: 8px; }
    .fp-price-wrap { width: 100%; justify-content: space-between; padding-top: 10px; margin-top: 6px; border-top: 1px dashed var(--fp-border); gap: 10px; }
    .fp-price { font-size: 16px; }
    .fp-item.prime .fp-price { font-size: 17px; }
    .fp-btn { padding: 8px 14px; font-size: 11.5px; }
    .fp-note { padding: 14px 16px; gap: 10px; }
    .fp-note-icon { width: 30px; height: 30px; font-size: 13px; }
    .fp-note-text { font-size: 11.5px; }
    .fp-note-text strong { font-size: 12px; }
    .fp-similar-head h2 { font-size: 14.5px; }
    .fp-similar-head .adet { font-size: 11px; }
    .fp-similar-grid { gap: 8px; }
    .fp-similar-img { height: 100px; padding: 10px; }
    .fp-similar-info { padding: 10px 10px 12px; }
    .fp-similar-name { font-size: 12px; min-height: 30px; margin-bottom: 8px; }
    .fp-similar-price { font-size: 12.5px; padding: 4px 10px; }
    .fp-actions { margin-top: 24px; padding-top: 20px; gap: 8px; flex-direction: column; }
    .fp-action-btn { width: 100%; justify-content: center; padding: 12px 20px; font-size: 13px; }
}
@media (max-width: 360px) {
    .fp-wrap { padding: 10px 8px 40px; }
    .fp-head-img { height: 170px; padding: 12px; }
    .fp-head h1 { font-size: 15.5px; }
    .fp-head-meta span { font-size: 11px; }
    .fp-stat-value { font-size: 13px; }
    .fp-similar-img { height: 90px; }
    .fp-similar-name { font-size: 11.5px; }
    .fp-price { font-size: 15px; }
}
