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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #f5f7fa;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    color: #333;
}

/* Loading overlay */
.loading-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15,23,42,0.25);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1300;
    backdrop-filter: blur(2px);
}
.loading-overlay.visible { display: flex; }
.loading-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 18px 50px rgba(2,6,23,0.15);
    border: 1px solid rgba(15,23,42,0.08);
}
.spinner {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 3px solid #e2e8f0;
    border-top-color: #2563eb;
    animation: spin 0.9s linear infinite;
}
.loading-text { font-size: 0.95rem; font-weight: 600; color: #0f172a; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Header */
.header {
    background: white;
    padding: 1rem 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 1200;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
}

.logo i { font-size: 2rem; color: #2563eb; }

.new-chat-btn {
    background: #2563eb;
    color: white;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.2s;
    font-size: 0.95rem;
}

.new-chat-btn:hover { background: #1d4ed8; transform: translateY(-2px); }

/* Main Content */
.main-content {
    flex: 1;
    overflow-y: auto;
    padding: 2.5rem 2.5rem 10rem 2.5rem;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

/* Welcome Screen */
.welcome-screen { text-align: center; padding: 3rem 1rem; color: #1f2937; }
.welcome-screen h1 { font-size: 3rem; margin-bottom: 0.5rem; font-weight: 700; }
.welcome-screen p { font-size: 1.05rem; opacity: 0.9; margin-bottom: 0.75rem; }
.welcome-title { font-size: 1.35rem; font-weight: 700; color: #0f172a; margin-bottom: 0.5rem; }
.welcome-subtitle { max-width: 760px; margin: 0 auto 1rem auto; color: #475569; }
.welcome-examples { max-width: 520px; margin: 0.5rem auto 1rem auto; text-align: left; background: #ffffff; border: 1px solid #e5e7eb; border-radius: 14px; padding: 0.85rem 1rem; box-shadow: 0 8px 20px rgba(2,6,23,0.06); }
.welcome-examples-title { font-weight: 700; color: #0f172a; margin-bottom: 0.5rem; }
.welcome-examples p { margin: 0.35rem 0; font-size: 0.98rem; color: #334155; }
.welcome-hint { color: #64748b; font-size: 0.98rem; margin: 0.75rem 0 1.25rem 0; }

.suggestions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.suggestion-card {
    background: white;
    border: 1px solid #e5e7eb;
    padding: 1.5rem;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: left;
}

.suggestion-card:hover { border-color: #2563eb; transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.suggestion-card i { font-size: 1.5rem; margin-bottom: 0.75rem; display: block; color: #2563eb; }
.suggestion-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; color: #1f2937; }
.suggestion-card p { font-size: 0.9rem; color: #6b7280; }

/* Chat container */
.chat-container { max-width: 1200px; margin: 2rem auto; }
.chat-message { display: flex; margin-bottom: 2rem; animation: slideIn 0.3s ease-out; position: relative; }

@keyframes slideIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.chat-message.user { justify-content: flex-end; }
.chat-message.assistant { justify-content: flex-start; }
.message-bubble {
    max-width: 80%; padding: 1.25rem 1.5rem; border-radius: 20px; font-size: 0.95rem; line-height: 1.6; box-shadow: 0 4px 15px rgba(0,0,0,0.05); position: relative;
}
.user .message-bubble { background: linear-gradient(135deg,#2563eb,#1d4ed8); color:white; border-bottom-right-radius:4px; }
.assistant .message-bubble { background: white; color:#1f2937; border:1px solid #f3f4f6; border-bottom-left-radius:4px; }
.message-avatar { width:36px; height:36px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.1rem; flex-shrink:0; }
.user .message-avatar { background:#dbeafe; color:#2563eb; margin-left:0.75rem; order:2; }
.assistant .message-avatar { background:#f3f4f6; color:#6b7280; margin-right:0.75rem; }

/* Product Grid */
.products-grid { display:grid; grid-template-columns: repeat(auto-fill, minmax(320px,1fr)); gap:1.6rem; margin-bottom:2.5rem; }
.products-section { max-width: 1200px; margin: 0 auto; }
.product-card { background:white; border-radius:16px; overflow:hidden; box-shadow:0 4px 20px rgba(0,0,0,0.1); transition: all 0.3s cubic-bezier(0.175,0.885,0.32,1.275); display:flex; flex-direction:column; cursor:pointer; border:1px solid #f3f4f6; }
.product-card:hover { transform: translateY(-6px) scale(1.01); box-shadow:0 10px 26px rgba(2,6,23,0.12); border-color:#2563eb; }
.product-image { height:220px; display:flex; align-items:center; justify-content:center; overflow:hidden; border-bottom:1px solid #f3f4f6; }
.product-image img { width:100%; height:100%; object-fit:cover; }
.product-body { padding:1rem; flex:1; display:flex; flex-direction:column; gap:0.5rem; }
.product-title { font-size:0.85rem; font-weight:600; color:#1f2937; display:-webkit-box; -webkit-line-clamp:2; line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; }
.product-price { font-size:1.1rem; font-weight:700; color:#2563eb; margin-bottom:0.5rem; }
.product-store { font-size:0.72rem; color:#6b7280; margin-bottom:6px; display:inline-flex; align-items:center; padding:3px 6px; border-radius:6px; font-weight:700; letter-spacing:0.2px; }
.products-grid .product-store.site-orange { background:#fff1e8; color:#b45309; border:1px solid #fed7aa; }
.products-grid .product-store.site-hb { background:#eaf2ff; color:#1d4ed8; border:1px solid #bfdbfe; }
.products-grid .product-store.site-amazon { background:#fff7ed; color:#b45309; border:1px solid #fed7aa; }
.products-grid .product-store.site-n11 { background:#f3e8ff; color:#6d28d9; border:1px solid #d8b4fe; }
.products-grid .product-store.site-boyner { background:#ecfeff; color:#155e75; border:1px solid #67e8f9; }
.products-grid .product-store.site-warning { background:#f8fafc; color:#0f172a; border:1px solid #e2e8f0; }
.product-actions { display:grid; grid-template-columns:1fr 1fr; gap:0.4rem; margin-top:auto; }
.btn { padding:0.5rem; border-radius:8px; font-weight:600; font-size:0.75rem; cursor:pointer; transition: all 0.2s; border:none; display:flex; align-items:center; justify-content:center; gap:0.3rem; text-decoration:none; }
.btn-primary { background:#2563eb; color:white; }
.btn-primary:hover { background:#1d4ed8; transform: scale(1.05); }
.btn-outline { background:white; border:2px solid #e5e7eb; color:#6b7280; }
.btn-outline:hover { border-color:#2563eb; color:#2563eb; }

/* Flight results */
.result-block { margin-top: 16px; }
.result-block .flight-form-box { border: 1px solid #e5e7eb; }
#flight-results { border: 1px solid #e5e7eb; border-radius: 10px; box-shadow: 0 8px 22px rgba(2,6,23,0.06); }
#flight-results h3 { font-size: 15px; color: #0f172a; }
.flight-row { gap: 8px; border: 1px solid #e5e7eb; border-radius: 10px; background: linear-gradient(135deg,#ffffff,#f8fafc); }
.flight-row:hover { border-color:#2563eb; box-shadow:0 10px 26px rgba(37,99,235,0.12); }
.flight-price { letter-spacing: 0.2px; }
.flight-meta span { background: #f8fafc; border: 1px solid #e2e8f0; color:#0f172a; }
.airline-badge { display:inline-flex; align-items:center; padding:4px 8px; border-radius:8px; background:var(--badge-bg, #eef2ff); color:var(--badge-text, #4338ca); border:1px solid var(--badge-border, #c7d2fe); font-weight:700; font-size:12px; }
.airline-logo { display:inline-flex; align-items:center; justify-content:center; width:22px; height:22px; border-radius:6px; background:rgba(255,255,255,0.7); font-size:11px; font-weight:800; margin-right:6px; }
.airline-name { font-size:12px; font-weight:700; }
.price-badge { display:inline-flex; align-items:center; padding:6px 10px; border-radius:10px; background:#ecfeff; color:#0e7490; border:1px solid #a5f3fc; font-weight:800; font-size:14px; }

/* Sabit prompt (input) stili */
.prompt-container { position: fixed; left:50%; transform: translateX(-50%); bottom:24px; width: calc(100% - 32px); max-width:900px; z-index:1100; display:flex; justify-content:center; pointer-events:none; }
.prompt-container form { pointer-events:auto; width:100%; display:flex; gap:0.5rem; align-items:center; background: rgba(255,255,255,0.98); padding:10px; border-radius:14px; box-shadow:0 10px 30px rgba(16,24,40,0.12); border:1px solid rgba(15,23,42,0.06); backdrop-filter: blur(6px); }
#product-search-input, #search-input { flex:1; padding:12px 16px; font-size:1rem; border-radius:10px; border:1px solid #e5e7eb; outline:none; box-shadow:none; background:white; line-height:1.2; }
.prompt-container button { background:#2563eb; color:#fff; border:none; padding:10px 14px; border-radius:10px; cursor:pointer; font-weight:700; display:inline-flex; align-items:center; justify-content:center; box-shadow:0 6px 18px rgba(37,99,235,0.25); }
.prompt-container button:hover { background:#1d4ed8; transform: translateY(-1px); }

/* Footer */
.site-footer { text-align:center; padding: 1.25rem 1rem 2.5rem 1rem; margin-top: 1rem; margin-bottom: 6rem; color:#6b7280; font-size:0.85rem; }
.site-footer .footer-brand { font-weight:700; color:#0f172a; letter-spacing:0.2px; margin-bottom:4px; }
.site-footer small { display:block; }

/* Quick actions (+) */
.quick-actions { position: relative; display: inline-flex; align-items: center; }
.quick-actions-btn { width:38px; height:38px; border-radius:10px; background:#f1f5f9; color:#0f172a; border:1px solid #e2e8f0; font-size:20px; font-weight:800; display:inline-flex; align-items:center; justify-content:center; box-shadow:none; }
.quick-actions-btn:hover { background:#e2e8f0; }
.quick-actions-menu { position: absolute; left:0; bottom:46px; min-width:160px; background:white; border:1px solid #e5e7eb; border-radius:10px; box-shadow:0 12px 28px rgba(2,6,23,0.12); padding:6px; display:none; }
.quick-actions:hover .quick-actions-menu { display:block; }
.quick-actions-menu button { width:100%; background:transparent; color:#0f172a; border:none; padding:8px 10px; border-radius:8px; text-align:left; font-weight:600; }
.quick-actions-menu button:hover { background:#f1f5f9; }

@media (max-width:520px) {
    .prompt-container { bottom:16px; width: calc(100% - 20px); }
    .prompt-container form { padding:8px; border-radius:12px; }
    #search-input { padding:10px; font-size:0.95rem; }
}

@media (max-width:900px) {
    .main-content { padding: 1.5rem 1.5rem 9rem 1.5rem; }
    .chat-container { margin: 1.5rem auto; }
    .products-section { max-width: 100%; }
    .products-grid { grid-template-columns: repeat(auto-fill, minmax(190px,1fr)); gap:1rem; }
}

@media (max-width:600px) {
    .main-content { padding: 1.25rem 1rem 8.5rem 1rem; }
    .header { padding: 0.75rem 1rem; }
    .logo { font-size: 1.2rem; }
    .new-chat-btn { padding: 0.5rem 0.9rem; font-size: 0.85rem; }
    .products-grid { grid-template-columns: repeat(auto-fill, minmax(160px,1fr)); gap:0.9rem; }
    .product-image { height: 180px; }
    .product-body { padding: 0.8rem; }
    .product-title { font-size: 0.8rem; }
    .product-price { font-size: 1rem; }
    .btn { font-size: 0.7rem; padding: 0.45rem; }
    .message-bubble { max-width: 90%; }
    .prompt-container { width: calc(100% - 16px); }
    .prompt-container form { padding:10px; }
    #product-search-input, #search-input { font-size:1rem; }
}

@media (max-width:420px) {
    .products-grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap:0.8rem; }
    .product-image { height: 160px; }
    .product-actions { grid-template-columns: 1fr; gap:0.35rem; }
    .compare-large { padding: 16px; }
    .compare-large .product-image { height: 240px; }
    .thumb-strip img, .thumb-fallback { width:60px; height:60px; }
    .compare-meta { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

/* Modal (ürün detay) stili - modern kart görünümü */
.modal { position:fixed; inset:0; display:none; align-items:center; justify-content:center; background:rgba(2,6,23,0.5); z-index:1200; padding:24px; backdrop-filter: blur(4px); }
.modal-content { width:100%; max-width:840px; background:linear-gradient(180deg,#ffffff,#fbfdff); border-radius:16px; box-shadow:0 30px 80px rgba(2,6,23,0.2); padding:20px; display:grid; grid-template-columns:1fr 1fr; gap:16px; align-items:start; border:1px solid rgba(15,23,42,0.06); }
.modal .close-btn { position:absolute; right:28px; top:20px; background:transparent; border:none; font-size:1.6rem; cursor:pointer; color:#374151; }
.modal img#modalImage { width:100%; height:auto; border-radius:12px; object-fit:cover; max-height:420px; box-shadow:0 12px 30px rgba(37,99,235,0.06); }
.modal .modal-body { padding:6px 4px; }
.modal h2#modalTitle { margin:0 0 8px 0; font-size:1.25rem; color:#0f172a; }
.modal p { color:#475569; margin:6px 0; }
.modal-thumbs { display:flex; gap:8px; margin:10px 0; flex-wrap:wrap; }
.modal-thumbs img { width:64px; height:64px; object-fit:cover; border-radius:8px; border:1px solid #e5e7eb; cursor:pointer; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.modal-thumbs img:hover { transform: scale(1.05); box-shadow:0 6px 14px rgba(2,6,23,0.12); }
.modal input, .modal textarea, .modal select { width:100%; padding:10px 12px; border-radius:10px; border:1px solid #e5e7eb; background:#fff; font-size:1rem; outline:none; }
.modal .btn { width:100%; padding:12px 14px; border-radius:10px; font-weight:700; box-shadow:0 10px 28px rgba(37,99,235,0.14); }
.modal .btn-outline { width:auto; padding:10px 12px; }

@media (max-width:880px) { .modal-content { grid-template-columns:1fr; max-width:720px; } .modal .close-btn { right:20px; top:14px; } }

/* AI özet kartı */
.ai-summary { background:white; border-radius:12px; padding:12px 14px; box-shadow:0 10px 30px rgba(2,6,23,0.06); border:1px solid rgba(15,23,42,0.04); max-width:840px; margin:12px auto 18px auto; color:#0f172a; font-size:0.97rem; opacity:0; transition: opacity 0.5s ease-out; }
.ai-summary.visible { opacity:1; }
.ai-summary .ai-title { font-weight:700; margin-bottom:6px; color:#0f172a; }
.ai-summary .ai-text { color:#475569; line-height:1.45; }
.chat-message.ai-inline { margin-top: 0.75rem; }
.chat-message.ai-inline .message-bubble { background: #f8fafc; border:1px solid #e2e8f0; }

/* Compare layout styles - YENI TASARIM */
.products-compare { max-width:1200px; margin:12px auto 18px auto; display:flex; flex-direction:column; gap:14px; }
.compare-main { display:flex; flex-direction:column; gap:12px; }
.compare-large { display:grid; grid-template-columns:420px 1fr; gap:26px; background:linear-gradient(135deg,#ffffff 0%,#fbfdff 100%); border-radius:18px; padding:26px; border:1px solid rgba(37,99,235,0.08); box-shadow:0 22px 56px rgba(37,99,235,0.12); align-items:start; }
.compare-media { display:flex; flex-direction:column; gap:10px; }
.compare-large .product-image { height:560px; border-radius:14px; overflow:hidden; box-shadow:0 12px 30px rgba(0,0,0,0.12); }
.compare-large .product-image img { width:100%; height:100%; object-fit:cover; transition: transform 0.25s ease, opacity 0.25s ease; }
.compare-large .product-image img.is-swapping { opacity:0.8; transform: scale(1.02); }
.thumb-strip { display:flex; gap:10px; flex-wrap:wrap; }
.thumb-strip img { width:70px; height:70px; object-fit:cover; border-radius:8px; border:1px solid rgba(15,23,42,0.08); cursor:pointer; }
.thumb-strip img.active { border:2px solid #2563eb; box-shadow:0 6px 14px rgba(37,99,235,0.2); }
.thumb-strip img.thumb-dup { opacity:0.9; }
.thumb-fallback { width:70px; height:70px; border-radius:8px; border:1px solid rgba(15,23,42,0.08); display:flex; align-items:center; justify-content:center; background:#f1f5f9; color:#0f172a; font-weight:800; letter-spacing:0.5px; text-transform:uppercase; }
.site-orange { background:#ffede5; color:#b45309; border:1px solid #fdba74; }
.site-warning { background:#f8fafc; color:#0f172a; border:1px solid #e2e8f0; }
.site-hb { background:#e6f0ff; color:#1d4ed8; border:1px solid #93c5fd; }
.site-amazon { background:#fff7ed; color:#b45309; border:1px solid #fed7aa; }
.site-n11 { background:#ede9fe; color:#6d28d9; border:1px solid #c4b5fd; }
.site-boyner { background:#ecfeff; color:#155e75; border:1px solid #67e8f9; }
.compare-large .product-body { display:flex; flex-direction:column; gap:12px; }
.compare-large .product-header { display:flex; gap:8px; align-items:center; flex-wrap:wrap; }
.compare-large .site-badge { background:#e2e8f0; color:#0f172a; padding:6px 10px; border-radius:10px; font-size:0.8rem; font-weight:800; }
.compare-large .product-title { font-size:1.55rem; font-weight:700; color:#0f172a; line-height:1.35; }
.compare-large .product-price { font-size:1.95rem; font-weight:800; color:#2563eb; display:flex; align-items:baseline; gap:8px; }
.compare-desc { font-size:1.05rem; color:#334155; line-height:1.65; }
.compare-meta { display:grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap:10px; padding:10px; background:#f8fafc; border:1px solid #e2e8f0; border-radius:10px; }
.compare-meta .meta-item { display:flex; align-items:center; gap:8px; flex-wrap:wrap; }
.compare-meta .meta-label { font-size:0.75rem; color:#64748b; font-weight:700; text-transform:uppercase; letter-spacing:0.4px; }
.compare-meta .meta-value { font-size:0.9rem; font-weight:700; color:#0f172a; padding:3px 6px; border-radius:8px; background:#fff; border:1px solid #e5e7eb; }
.compare-review { font-size:0.95rem; color:#0f172a; background:#f1f5f9; border:1px solid #e2e8f0; padding:8px 10px; border-radius:10px; }
.compare-meta .meta-value.site-orange,
.compare-meta .meta-value.site-hb,
.compare-meta .meta-value.site-amazon,
.compare-meta .meta-value.site-n11,
.compare-meta .meta-value.site-boyner,
.compare-meta .meta-value.site-warning { border:1px solid transparent; }
.compare-large .product-stats { display:grid; grid-template-columns:1fr 1fr; gap:10px; padding:10px; background:rgba(37,99,235,0.04); border-radius:10px; }
.stat-item { display:flex; flex-direction:column; gap:4px; }
.stat-label { font-size:0.75rem; color:#64748b; font-weight:600; }
.stat-value { font-size:0.95rem; color:#0f172a; font-weight:700; }
.price-graph { height:100px; border-radius:10px; background:linear-gradient(135deg,#eef2ff,#f0f9ff); display:flex; align-items:center; justify-content:center; color:#64748b; font-weight:600; border:1px solid rgba(37,99,235,0.1); }

/* ALTALTA THUMBNAIL CARDS */
.compare-thumbs { display:flex; flex-direction:column; gap:12px; padding:0; }
.thumb-card { width:100%; background:white; border-radius:12px; padding:12px 14px; box-shadow:0 8px 22px rgba(2,6,23,0.06); border:1px solid rgba(15,23,42,0.04); cursor:pointer; transition: all 0.2s ease; }
.thumb-card:hover { box-shadow:0 12px 32px rgba(37,99,235,0.12); border-color:#2563eb; transform: translateY(-1px); }
.thumb-row { display:grid; grid-template-columns:110px 2.4fr 1.2fr 1.2fr 1.2fr 1.4fr 2.8fr 140px; gap:14px; align-items:center; }
.thumb-image img { width:110px; height:110px; object-fit:cover; border-radius:10px; }
.thumb-title { font-size:0.98rem; color:#1f2937; font-weight:700; line-height:1.2; }
.thumb-price { font-size:1.08rem; font-weight:800; color:#2563eb; white-space:nowrap; }
.thumb-site, .thumb-rating, .thumb-delivery { font-size:0.88rem; color:#64748b; }
.thumb-site { font-weight:800; display:inline-flex; align-items:center; padding:4px 8px; border-radius:8px; }
.thumb-desc { font-size:0.9rem; color:#475569; line-height:1.4; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
.thumb-action { display:flex; justify-content:flex-end; }
.thumb-button { padding:8px 14px; border-radius:8px; border:none; background:#2563eb; color:white; font-weight:700; cursor:pointer; font-size:0.85rem; transition: all 0.2s; white-space:nowrap; text-decoration:none; display:inline-flex; align-items:center; justify-content:center; }
.thumb-button:hover { background:#1d4ed8; transform: scale(1.03); }

/* TAG STYLES */
.product-tags { display:flex; gap:6px; flex-wrap:wrap; justify-content:flex-start; margin-top:6px; }
.ai-tag { display:inline-block; padding:4px 8px; border-radius:6px; font-size:0.7rem; font-weight:700; white-space:nowrap; text-align:center; }
.tag-price { background:#fef3c7; color:#92400e; border:1px solid #fcd34d; }
.tag-rating { background:#dbeafe; color:#0c4a6e; border:1px solid #7dd3fc; }
.tag-reviews { background:#dcfce7; color:#166534; border:1px solid #86efac; }

@media (max-width:880px) {
    .compare-large { grid-template-columns:1fr; padding:18px; }
    .compare-large .product-image { height:300px; }
    .compare-large .product-body { flex-direction:column; }
    .compare-thumbs { flex-direction:column; }
    .compare-meta { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .thumb-row { grid-template-columns:90px 1fr; gap:10px; align-items:start; }
    .thumb-price, .thumb-site, .thumb-rating, .thumb-delivery, .thumb-desc, .thumb-action { grid-column:2 / -1; }
    .thumb-desc { white-space:normal; }
}

.compare-large .product-image { height:260px; }
.product-rating { display:flex; align-items:center; gap:6px; font-size:0.8rem; color:#0f172a; }
.star-rating { --rating:0; --star-size:14px; --star-color:#e5e7eb; --star-bg:#fbbf24; display:inline-block; font-size:var(--star-size); font-family:Times; line-height:1; position:relative; }
.star-rating::before { content:"★★★★★"; letter-spacing:1px; background: linear-gradient(90deg, var(--star-bg) calc(var(--rating) / 5 * 100%), var(--star-color) calc(var(--rating) / 5 * 100%)); -webkit-background-clip:text; -webkit-text-fill-color: transparent; }
.star-rating.small { --star-size:12px; }
.star-rating.star-orange { --star-bg:#f97316; }
.star-rating.star-hb { --star-bg:#3b82f6; }
.star-rating.star-amazon { --star-bg:#f59e0b; }
.star-rating.star-n11 { --star-bg:#8b5cf6; }
.star-rating.star-boyner { --star-bg:#06b6d4; }
.star-rating.star-warning { --star-bg:#fbbf24; }
.rating-text { font-weight:700; color:#0f172a; }
.rating-count { color:#64748b; }
.product-review { font-size:0.78rem; color:#475569; line-height:1.35; }
.product-review.fallback-review { color:#0f172a; background:#f8fafc; border:1px dashed #e2e8f0; padding:4px 6px; border-radius:6px; display:inline-flex; align-items:center; gap:6px; }
.product-review.fallback-review::before { content:"Kargo"; font-weight:700; font-size:0.72rem; color:#2563eb; }
