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

/****************************************** Top-Bar-Start ******************************************/
.top-bar {
  width: 100%;
  height: 45px;
  display: flex;
  background-color: #111827;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #ffffff23;
  padding: 0 10px;
}

.top-bar-cnt {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1230px;
  width: 100%;
  margin: 0 10px;
}

.top-link {
  display: flex;
  gap: 5px;
  align-items: center;
}

.top-link a {
  color: #9CA3AF;
  text-decoration: none;
  font-family: "Outfit", sans-serif;
  font-size: 12px;
  font-weight: 300;
}

.top-link a:hover { color: #fff; transition: color 0.3s ease; }

.divider { color: #A9A9A9; }

.social-media {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.social-media p {
  color: #9CA3AF;
  font-family: "Outfit", sans-serif;
  font-size: 12px;
  font-weight: 300;
}

.social-media img { width: 14px; display: flex; align-items: center; }

.social-media a img { transition: transform 0.3s ease, filter 0.3s ease; }
.social-media a img:hover { filter: brightness(0) invert(1); transform: scale(1.3); }
/****************************************** Top-Bar-Ende ******************************************/

/****************************************** Header-Start ******************************************/
header {
  background-color: #001a2c;
  display: flex;
  align-items: center;
  height: 90px;
  padding: 0 20px;
  justify-content: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
}

.header-cnt {
  display: flex;
  width: 100%;
  max-width: 1230px;
  margin: 0 auto;
  justify-content: space-between;
  align-items: center;
}

.logo img { width: 180px; cursor: pointer; }

.search-box { flex: 1; max-width: 750px; display: flex; padding: 0 30px; }

.search-box input {
  width: 100%; padding: 12px; border: none; border-radius: 4px 0 0 4px; outline: none;
  font-family: "Outfit", sans-serif; font-size: 14px;
}
.search-box button {
  padding: 12px 16px; background-color: #0095B6; border: none; color: white; border-radius: 0 4px 4px 0; cursor: pointer;
}
.search-box img { width: 14px; display: flex; align-items: center; justify-content: center; }

.user-actions { display: flex; align-items: center; gap: 40px; }
.user-actions img { width: 23px; }
.user-actions a img { transition: transform 0.2s ease; }
.user-actions a:hover img { transform: translateY(-3px); }
.user-actions a {
  position: relative; display: inline-flex; flex-direction: column; align-items: center; text-decoration: none;
}

.tooltip {
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ffffff;
  color: #000000;
  font-size: 10px;
  font-family: "Outfit", sans-serif;
  padding: 4px 8px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  transform: translate(-50%, -5px);
}
.user-actions a:hover .tooltip { opacity: 1; transform: translate(-50%, 0); }
/****************************************** Header-Ende ******************************************/

/****************************************** Search-Box-Mobile-Start ******************************************/
.search-box-mobile {
  height: 62px;
  padding: 0 20px 20px 20px;
  background-color: #111827;
  display: flex;
  position: sticky;
  top: 90px;
  z-index: 999;
}
.search-box-mobile input {
  width: 100%; padding: 12px; border: none; border-radius: 4px 0 0 4px; outline: none;
  font-family: "Outfit", sans-serif; font-size: 14px;
}
.search-box-mobile button {
  padding: 12px 16px; background-color: #0095B6; border: none; color: white; border-radius: 0 4px 4px 0; cursor: pointer;
}
.search-box-mobile img { width: 14px; display: flex; align-items: center; justify-content: center; }
/****************************************** Search-Box-Mobile-Ende ******************************************/

/****************************************** Navigation ******************************************/
.navigation-wrapper { width: 100%; background-color: #0095B6; }

.navigation {
  max-width: 1270px; margin: 0px auto; display: flex; justify-content: space-between; align-items: center;
  height: 50px; padding: 20px; background-color: #0095B6;
}

.burger-menu-icon { display: none; }
.burger-menu-icon img { width: 28px; cursor: pointer; }

.navigation-link { display: flex; gap: 30px; }

.navigation-link a, .deal-link a {
  position: relative; font-family: "Outfit", sans-serif; font-weight: 400; text-decoration: none;
  font-size: 14px; color: white; padding-bottom: 5px;
}
.navigation-link a::after, .deal-link a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0; background-color: #ffffff; transition: width 0.3s ease;
}
.navigation-link a:hover::after, .deal-link a:hover::after { width: 100%; }

.deal-link { display: flex; align-items: center; }
/****************************************** Navigation-Ende ******************************************/

/****************************************** Sidebar-Mobile-Start ***************************************/
.mobile-sidebar {
  position: fixed; top: 0; left: -100%;
  width: 85%; max-width: 350px; height: 100%; background-color: #fff; z-index: 2000;
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1); transition: left 0.3s ease;
  display: flex; flex-direction: column; overflow-y: auto;
}
.mobile-sidebar.active { left: 0; }

.sidebar-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px; border-bottom: 1px solid #eee; background-color: #001a2c;
}
.sidebar-logo { width: 140px; }

.close-btn { background: none; border: none; cursor: pointer; align-items: center; display: flex; }
.close-btn img { width: 20px; height: 20px; }

.sidebar-menu { list-style: none; padding: 0; margin: 0; }
.sidebar-menu li {
  display: flex; align-items: center; gap: 14px; padding: 16px 20px;
  font-family: "Outfit", sans-serif; font-size: 15px; font-weight: 600; color: #111; border-bottom: 1px solid #f1f1f1;
}
.sidebar-menu li img:first-child { width: 20px; }
.sidebar-menu li .arrow { margin-left: auto; width: 16px; }
.sidebar-menu .badge {
  background-color: #059669; color: white; font-size: 10px; font-weight: 700; padding: 2px 6px; border-radius: 8px; margin-left: auto;
}
/****************************************** Sidebar-Mobile-Ende ****************************************/

/****************************************** Login-Modal-Start ******************************************/
/* Tokens/Variablen für das Login-Panel */
:root{
  --bg:#f6f7f9;
  --panel-bg:#ffffff;
  --text:#0f172a; /* slate-900 */
  --muted:#6b7280; /* gray-500 */
  --primary:#0095b6; /* billiger.de orange (approx) */
  --primary-press:#007A94;
  --border:#e5e7eb; /* gray-200 */
  --focus:#0095b6; /* blue-600 */
  --radius:16px;
  --shadow:0 10px 30px rgba(2,6,23,.12), 0 2px 6px rgba(2,6,23,.06);
}

/* Body-Lock wenn Modal offen */
body.modal-open { overflow: hidden; }

/* Overlay */
.login-overlay {
  position: fixed; inset: 0; display: none;
  justify-content: center; align-items: center; padding: 24px;
  background: rgba(0,0,0,0.5); z-index: 3000;
}
.login-overlay.active { display: flex; }

/* Klickfläche außerhalb der Sheet */
.overlay-backdrop {
  position: absolute; inset: 0; background: transparent;
}

/* Dialog (Sheet) */
.sheet{
  width: 412px; max-width: 100%;
  background: var(--panel-bg); border-radius: var(--radius);
  box-shadow: var(--shadow); position: relative; overflow: hidden;
  font-family: "Outfit", sans-serif, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}
.sheet-header{ background-color: white; display:flex; align-items:center; gap:8px; padding:16px 20px; border-bottom:1px solid var(--border); }
.title{ font-weight:700; font-size:20px; }
.close{
  margin-left:auto; display:inline-grid; place-items:center; width:36px; height:36px; border-radius:999px;
  border:1px solid transparent; background:transparent; cursor:pointer; color:#64748b;
}
.close:hover{ background:#f1f5f9; }
.close:focus{ outline:2px solid var(--focus); outline-offset:2px; }

form{ padding: 8px 20px 20px; }
.field{ margin-top:12px; }
.label{ display:block; font-size:14px; color:var(--muted); margin-bottom:8px; }

.input{
  width:100%; height:48px; border:1px solid var(--border); border-radius:12px; padding:0 14px; font-size:15px; background:#fff; color:var(--text);
}
.input:focus{ outline: none; border-color: var(--focus); box-shadow: 0 0 0 4px rgba(37,99,235,.12); }

.input-wrap{ position:relative; }
.input-wrap .icon-btn{
  position:absolute; right:10px; top:70%; transform:translateY(-50%);
  display:inline-grid; place-items:center; width:20px; height:20px; border-radius:10px; border:1px solid transparent;
  color:#64748b; background:transparent; cursor:pointer;
}
.input-wrap .icon-btn:hover{ background:#f8fafc; }

.row{ font-size: 14px; display:flex; align-items:center; justify-content:space-between; gap:10px; margin-top:12px; }

.checkbox{ display:flex; align-items:center; gap:10px; user-select:none; }
.checkbox input{ appearance:none; width:20px; height:20px; border:1.5px solid var(--border); border-radius:6px; display:grid; place-items:center; background:#fff; cursor:pointer; }
.checkbox input:checked{ border-color:var(--focus); background:var(--focus); }
.checkbox input:checked::after{ content:""; width:10px; height:10px; clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0, 43% 62%); background:#fff; }

.link{ color:#0095B6; text-decoration:none; font-weight:500; }
.link:hover{ text-decoration:underline; }

.submit{
  margin-top:18px; width:100%; height:52px; border:none; border-radius:28px; font-weight:700; font-size:18px; cursor:pointer;
  color:#fff; background:var(--primary); box-shadow: inset 0 -2px 0 rgba(0,0,0,.12);
}
.submit:hover{ background:var(--primary-press); }
.submit:focus{ outline:2px solid var(--focus); outline-offset:2px; }

.divider{ display:grid; grid-template-columns:1fr auto 1fr; align-items:center; color:#6b7280; margin:14px 0; }
.divider::before,.divider::after{ content:""; height:1px; background:var(--border); }

.social{ display:flex; flex-direction:column; gap:10px; }
.social button{
  height:50px; border-radius:12px; border:1px solid var(--border); background:#fff; width:100%;
  display:flex; align-items:center; gap:12px; justify-content:center; font-weight:600; cursor:pointer;
}
.social button:hover{ background:#f8fafc; }
.social .icon{ width:22px; height:22px; display:inline-block; }

/* Footer im Dialog */
.footer{ text-align:center; color:#64748b; padding:24px 20px; font-size:14px; border-top:1px solid var(--border); }

/****************************************** Login-Modal-Ende ******************************************/

/****************************************** Responsive-Design-Start ************************************/
/* (Desktops) */
@media (min-width: 650px) { .search-box-mobile { display: none; } }

/*(Smartphones, Hochformat) */
@media (max-width: 650px) {
  .top-link a { font-size: 10px; }
  .social-media p { font-size: 10px; }
  .search-box { display: none; }
  .navigation-link { display: none; }
  .deal-link { display: none; }

  .burger-menu-icon {
    display: flex; align-items: center; justify-content: center; cursor: pointer; margin-left: auto; gap: 10px;
    font-family: "Outfit", sans-serif; font-size: 14px; font-weight: 400; color: white;
  }
  .burger-menu-icon img { width: 28px; height: auto; }
}
/****************************************** Responsive-Design-Ende ************************************/