:root{
    --brand:#0A74DA;
    --brand-weak:#EAF3FF;
    --line:#ddd;
    --muted:#777;
    --bg:#fff;
  }
  body{margin:0;font:14px/1.45 system-ui,-apple-system,"Segoe UI",Roboto,Helvetica,Arial;background:#fafafa;padding-bottom:80px;color:#222}
  a{text-decoration:none;color:inherit}
  .wrap{max-width:1200px;margin:0 auto;padding:16px}
  header{display:flex;align-items:center;gap:16px;margin-bottom:16px}
  header .logo img{height:36px;width:auto}
  header h1{font-size:18px;margin:0;color:var(--muted);font-weight:600}

  .breadcrumb{font-size:13px;color:var(--muted);margin-bottom:16px}
  .breadcrumb a{color:var(--brand)}

  .top{display:grid;grid-template-columns:320px 1fr;gap:20px;margin-bottom:24px}
  @media(max-width:768px){.top{grid-template-columns:1fr}}

  .gallery .main img{max-height:330px;width:100%;object-fit:contain;border-radius:10px;border:1px solid var(--line);background:#fff}
  .thumbs{display:flex;gap:8px;margin-top:10px;flex-wrap:wrap;justify-content:center}
  .thumbs img{width:60px;height:60px;object-fit:cover;border:1px solid #ccc;border-radius:8px;cursor:pointer}

  .info h1{margin:0 0 10px;font-size:22px}
  .info .meta{color:var(--muted);margin-bottom:10px}
  .btn{display:inline-block;padding:6px 12px;border-radius:6px;background:var(--brand);color:#fff;font-size:13px}

  .pricebox{margin:16px 0;padding:12px;border:1px solid var(--line);border-radius:10px;background:#fff;font-size:16px;font-weight:600}

  .score{

    width:80px;height:80px;border-radius:50%;
    background:conic-gradient(var(--brand) calc(var(--p)*1%), var(--brand-weak) 0);
    display:flex;align-items:center;justify-content:center;
    font-weight:700;font-size:20px;margin-top:12px;
    position:relative
  }
  .score span{
    background:#fff;width:60px;height:60px;border-radius:50%;
    display:flex;align-items:center;justify-content:center;flex-direction:column;
  }
  .score span::after{content:"puan";font-size:11px;color:#777;font-weight:400;margin-top:2px}

  .summary{
    margin-top:16px;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap:10px;font-size:13px;
  }
  .summary div{
    padding:10px;border:1px solid #eee;border-radius:8px;
    background:#fff;box-shadow:0 1px 3px rgba(0,0,0,0.05);
  }
  .summary strong{display:block;font-size:12px;color:#555;margin-bottom:4px}
  .summary span{font-size:14px;font-weight:600;color:var(--brand)}

  .specs{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:20px}
  .specs section{background:#fff;border:1px solid #eee;border-radius:10px;box-shadow:0 1px 3px rgba(0,0,0,0.05);padding:12px}
  .specs h2{margin:0 0 10px;font-size:16px;color:#333;border-bottom:1px solid var(--brand-weak);padding-bottom:6px}
  .specs table{width:100%;border-collapse:collapse;font-size:13px}
  .specs td{padding:6px 8px;border-bottom:1px solid #f7f7f7}
  .specs td:first-child{color:#555;width:40%}
  .specs tr:nth-child(even) td{background:#fafafa}

  .compare-bar{position:fixed;bottom:0;left:0;right:0;background:var(--brand);color:#fff;display:flex;align-items:center;padding:8px 16px;z-index:1000;}
  .compare-items{display:flex;flex:1;gap:8px}
  .compare-items img{width:40px;height:60px;object-fit:contain;border:1px solid #fff;border-radius:4px;background:#fff;padding:2px}
  .compare-btn,.compare-clear{margin-left:8px;padding:6px 12px;border:none;border-radius:4px;cursor:pointer;}
  .compare-btn{background:#fff;color:var(--brand);font-weight:bold;}
  .compare-clear{background:#333;color:#fff;}
  .compare-btn .compare-icon{display:inline-flex;align-items:center;justify-content:center;width:20px;height:20px;border-radius:50%;background:var(--brand);color:#fff;font-size:16px;font-weight:bold;}
  .compare-btn.active{color:#2e7d32;font-weight:600;}
  .compare-btn.active .compare-icon{background:#2e7d32;}

  .topnav{background:#fff;border-bottom:1px solid #eee;box-shadow:0 1px 4px rgba(0,0,0,.05);position:sticky;top:0;z-index:1000;}
  .topnav .container{width:1200px;padding:8px 16px;display:flex;align-items:center;justify-content:space-between;}
  .brand{display:flex;align-items:center;gap:8px;font-weight:700;color:#222;font-size:15px;text-decoration:none;}
  .menu-toggle{display:none;font-size:22px;background:none;border:0;cursor:pointer;margin-left:auto;}
  @media(max-width:768px){
    .menu-toggle{display:block}
    .topnav nav{display:none;position:absolute;top:56px;right:12px;background:#fff;border:1px solid #eee;border-radius:8px;padding:10px;box-shadow:0 2px 6px rgba(0,0,0,.1);}
    .topnav nav ul{flex-direction:column;gap:10px}
    .topnav.open nav{display:block}
  }
  /* Dropdown container */
  .dropdown {
    position: relative;
  }

  .dropdown-toggle {
    cursor: pointer;
    font-weight: 600;
  }

  /* Menü */
  .dropdown-menu {
    display: none;
    position: absolute;
    top: 28px;
    left: 0;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    min-width: 200px;
    padding: 8px 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    z-index: 999;
  }

  .dropdown-menu li a {
    display: block;
    padding: 8px 14px;
    color: #222;
    white-space: nowrap;
  }

  .dropdown-menu li a:hover {
    background: #f5f5f5;
  }

  /* Hover mode - desktop */
  @media (min-width: 768px) {
    .dropdown:hover .dropdown-menu {
      display: block;
    }
  }

  /* Açılır menü mobilde de çalışsın */
  @media (max-width: 768px) {
    .dropdown-menu {
      position: static;
      box-shadow: none;
      border: 0;
      padding-left: 16px;
    }
  }
  .seo-content{
    margin-top:30px;
    padding:20px;
    background:#fff;
    border:1px solid #eee;
    border-radius:10px;
    font-size:14px;
  }
  .seo-content {
    margin-top: 40px;
    padding: 16px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
  }

  .seo-content h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #222;
  }

  .seo-content ul {
    margin: 0 0 16px 18px;
  }

  .seo-content li {
    margin-bottom: 6px;
    font-size: 13px;
    color: #444;
  }

  .same-brand {
    margin: 40px 0;
  }

  .same-brand h2 {
    font-size: 18px;
    margin-bottom: 14px;
    color: #222;
  }

  .brand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px,1fr));
    gap: 14px;
  }

  .brand-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 10px;
    text-decoration: none;
    transition: all .2s ease;
  }

  .brand-card:hover {
    border-color: var(--brand);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.06);
  }

  .brand-thumb {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
  }

  .brand-thumb img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }

  .brand-meta strong {
    display: block;
    font-size: 13px;
    color: #111;
  }

  .brand-meta span {
    display: block;
    font-size: 12px;
    color: #555;
    margin-top: 2px;
  }

  .brand-meta em {
    display: block;
    margin-top: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--brand);
  }
  .price-history {
    margin-top: 32px;
    padding: 20px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
  }

  .price-history h2 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .price-history-desc {
    font-size: 14px;
    color: #555;
    margin-bottom: 14px;
  }

  .price-history-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    margin-bottom: 20px;
  }

  .price-history-table th,
  .price-history-table td {
    border: 1px solid #eee;
    padding: 8px 10px;
  }

  .price-history-table th {
    background: #f7f7f7;
    text-align: left;
  }
  .offer-section {
    margin: 30px 0;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
  }

  .offer-section h2 {
    margin: 0;
    padding: 14px 16px;
    background: #F8F4E0;
    font-size: 18px;
    color: #222;
  }

  .offer-list {
    display: flex;
    flex-direction: column;
  }

  .offer-card {
    display: grid;
    grid-template-columns: 120px 1fr 170px 120px;
    gap: 14px;
    align-items: center;
    padding: 14px 16px;
    border-top: 1px solid #eee;
  }

  .offer-logo img {
    max-width: 105px;
    max-height: 36px;
    object-fit: contain;
  }

  .offer-name strong {
    display: block;
    font-size: 14px;
    color: #222;
    margin-bottom: 4px;
  }

  .offer-name span {
    display: block;
    font-size: 12px;
    color: #666;
  }

  .offer-name em {
    display: inline-block;
    margin-top: 5px;
    font-size: 12px;
    color: #2e7d32;
    font-style: normal;
  }

  .offer-price strong {
    display: block;
    font-size: 18px;
    color: var(--brand);
  }

  .offer-price span {
    display: block;
    font-size: 12px;
    color: #666;
    margin-top: 4px;
  }

  .offer-go {
    text-align: right;
  }

  .offer-go a {
    display: inline-block;
    padding: 8px 12px;
    background: var(--brand);
    color: #fff;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
  }

  @media(max-width:768px) {
    .offer-card {
      grid-template-columns: 1fr;
      gap: 8px;
    }

    .offer-go {
      text-align: left;
    }

  }
  .offer-card {
    display: none;
  }

  .offer-card.is-visible {
    display: grid;
  }

  .offer-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-top: 1px solid #eee;
    background: #fafafa;
  }

  .offer-pagination button {
    border: 1px solid #ddd;
    background: #fff;
    color: #333;
    padding: 7px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
  }

  .offer-pagination button:hover:not(:disabled) {
    border-color: var(--brand);
    color: var(--brand);
  }

  .offer-pagination button:disabled {
    opacity: .45;
    cursor: not-allowed;
  }

  .offer-pagination span {
    font-size: 13px;
    color: #555;
  }
  .price-summary-inline {
    margin-top: 16px;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }

  .price-summary-inline div {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 12px;
    box-shadow: 0 1px 3px rgba(0,0,0,.04);
  }

  .price-summary-inline strong {
    display: block;
    font-size: 12px;
    color: #666;
    margin-bottom: 5px;
  }

  .price-summary-inline span {
    font-size: 15px;
    font-weight: 700;
    color: var(--brand);
  }

  .price-summary-inline .up { color: #c0392b; }
  .price-summary-inline .down { color: #2e7d32; }

  .price-history-full {
    grid-column: 1 / -1;
    margin-top: 30px;
  }

  @media(max-width:768px) {
    .price-summary-inline {
      grid-template-columns: 1fr 1fr;
    }
  }
  .offer-card {
    cursor: pointer;
  }

  .offer-card:hover {
    background: #fafcff;
  }

  .offer-go a {
    pointer-events: none;
  }
  .best-price-badge {
    display: inline-flex !important;
    align-items: center;
    width: auto !important;
    max-width: max-content !important;
    margin: 6px 0 8px 0 !important;
    padding: 4px 11px !important;
    border-radius: 999px !important;
    background: #2e7d32 !important;
    color: #fff !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    font-style: normal !important;
    animation: bestPricePulse 1.8s infinite;
  }

  @keyframes bestPricePulse {
    0% {
      transform: scale(1);
      box-shadow: 0 0 0 0 rgba(46,125,50,.45);
    }
    70% {
      transform: scale(1.04);
      box-shadow: 0 0 0 7px rgba(46,125,50,0);
    }
    100% {
      transform: scale(1);
      box-shadow: 0 0 0 0 rgba(46,125,50,0);
    }
  }

    .compare-bar__summary{display:flex;flex-direction:column;min-width:145px;line-height:1.2}
    .compare-bar__summary strong{font-size:13px}.compare-bar__summary span{font-size:12px;opacity:.85}
    .compare-bar__actions{display:flex;align-items:center;gap:8px}.compare-bar__actions .compare-btn,.compare-bar__actions .compare-clear{margin-left:0}
    .compare-btn:disabled,.compare-clear:disabled{opacity:.5;cursor:not-allowed}
    .compare-item{position:relative;flex:0 0 auto}.compare-item__remove{position:absolute;right:-5px;top:-5px;width:18px;height:18px;border:0;border-radius:50%;background:#222;color:#fff;line-height:18px;padding:0;cursor:pointer}
    @media(max-width:768px){.compare-bar__summary{display:none}.compare-bar__actions .compare-btn{max-width:170px}.compare-bar{padding:8px 10px}}
