:root {
  --bg: #f4f7fb;
  --bg-soft: #eaf0f7;
  --surface: #ffffff;
  --ink: #101723;
  --muted: #5c6776;
  --line: rgba(16, 23, 35, 0.1);
  --accent: #0074c7;
  --accent-strong: #004b9b;
  --accent-soft: #dcecff;
  --shadow: 0 24px 60px rgba(18, 33, 57, 0.08);
  --radius-lg: 24px;
  --radius-md: 18px;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  color: var(--ink);
  font-family: "Segoe UI", Arial, sans-serif;
  background: linear-gradient(180deg, #fbfdff 0%, var(--bg) 56%, var(--bg-soft) 100%);
}
.header, .page { width: min(1180px, calc(100vw - 32px)); margin: 0 auto; }
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  position: sticky;
  top: 0;
  background: rgba(244,247,251,.92);
  backdrop-filter: blur(18px);
}
.brand img, .mini-logo { width: 80px; height: auto; }
.nav { display: flex; gap: 4px; flex-wrap: wrap; }
.mobile-shortcuts {
  display: none;
  align-items: center;
  gap: 8px;
}
.mobile-shortcuts a {
  padding: 8px 10px;
  border-radius: 999px;
  color: var(--muted);
  text-decoration: none;
  background: white;
  border: 1px solid var(--line);
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
  padding: 0;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
  border-radius: 999px;
}
.nav a, .pill {
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--muted);
  text-decoration: none;
}
.nav a:hover, .pill:hover { background: var(--accent-soft); color: var(--accent-strong); }
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.auth-stack {
  display: grid;
  gap: 8px;
}
.auth-pill {
  min-width: 116px;
  text-align: center;
  border: 1px solid var(--line);
  background: white;
  border-radius: 18px;
  padding: 14px 16px; 
}
.cart-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: white;
  text-decoration: none;
  box-shadow: var(--shadow);
}
.cart-icon { font-size: 1rem; line-height: 1; }
.page { padding: 20px 0 56px; display: grid; gap: 28px; }
.hero .backgrnd {
  position: absolute;
  top: 47%;
  left: 50%;
  width: 100%;
  height: 650px; /* istediğin arka plan yüksekliği */
  transform: translate(-50%, -50%);
  
  background-image: url(./Gemini_Generated_Image_1kiyqo1kiyqo1kiy.png); /* buraya resim */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(4px)brightness(0.8);

  z-index: -1; /* arkaya at */
}

.home-visual-section {
  display: grid;
}
.home-visual-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding: 22px;
  background: linear-gradient(135deg, #f9fbff, #edf4fc);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.home-visual-copy {
  display: grid;
  align-content: center;
  gap: 10px;
}
.home-visual-copy h2 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.08;
}
.home-visual-placeholder {
  min-height: 320px;
  border-radius: var(--radius-md);
  border: 1px dashed rgba(0, 116, 199, 0.35);
  background:
    linear-gradient(135deg, rgba(0, 116, 199, 0.08), rgba(0, 75, 155, 0.14)),
    repeating-linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.65),
      rgba(255, 255, 255, 0.65) 14px,
      rgba(220, 236, 255, 0.9) 14px,
      rgba(220, 236, 255, 0.9) 28px
    );
  display: grid;
  place-items: center;
}
.home-visual-placeholder span {
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--accent-strong);
  font-weight: 700;
}
.hero, .grid{
    display:grid;
    gap:18px;
}

.section{
    gap:18px;
}
.hero { grid-template-columns: 1.2fr .8fr; align-items: center; }
.eyebrow {
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .16em;
  color: var(--accent-strong);
}
h1 { font-size: clamp(2.5rem, 4.8vw, 4.8rem); line-height: 1.02; margin: 10px 0 16px; letter-spacing: -.04em;color: rgba(245, 245, 245, 0.812); }
h2 { margin: 0 0 6px; color: rgb(0, 0, 0);}
.lead {color: rgba(245, 245, 245, 0.908); line-height: 1.75; max-width: 60ch; }
.lead.small { font-size: .95rem; }
.actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 22px; }
.button {
  border: none;
  border-radius: 999px;
  padding: 14px 20px;
  cursor: pointer;
  font: inherit;
}
.button.primary { background: linear-gradient(135deg, var(--accent), var(--accent-strong)); color: white; }
.button.secondary { background: white; border: 1px solid var(--line); color: var(--ink); }
.full-width { width: 100%; }
.card, .hero-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  padding: 22px;
}
.hero-card img, .login-logo { width: min(100%, 300px); height: auto; }
.hero-card p { color: var(--muted); line-height: 1.7; }
.section-head, .admin-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid.split { grid-template-columns: 1.1fr .9fr; }
.form { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.form, .login-card { display: grid; gap: 14px; }
.full { grid-column: 1 / -1; }
label { display: grid; gap: 8px; color: var(--muted); font-size: .94rem; }
input, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 14px;
  font: inherit;
}
textarea { min-height: 110px; resize: vertical; }
.quote-result { display: grid; align-content: center; gap: 10px; }
.quote-result span, .metric { font-size: 2rem; font-weight: 700; color: rgb(113, 113, 113);align-self: flex-start; position: relative;}
.product span { display: block; margin-top: 10px; font-weight: 700; }
.login-pagee {
  min-height: 100vh;
  display: grid;
  place-items: center;
  width: min(520px, calc(100vw - 24px));
  margin: 0 auto;
}
.oauth { display: grid; gap: 10px; }
.error { min-height: 22px; color: #b42318; margin: 0; }
@media (max-width: 920px) {
  .hero, .grid.three, .grid.split, .form, .home-visual-card { grid-template-columns: 1fr; }
  .header {
    flex-wrap: wrap;
    position: relative;
    gap: 10px;
  }
  .mobile-shortcuts {
    display: flex;
    margin-left: auto;
  }
  .menu-toggle {
    display: inline-block;
  }
  .nav {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 8px;
    padding: 12px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }
  .nav.is-open {
    display: flex;
  }
  .nav a {
    width: 100%;
    text-align: left;
  }
  .header-actions {
    width: 100%;
    justify-content: flex-end;
  }
}
.kard {
  --font-color: #101723;
  --font-color-sub: #7e7e7e;
  --bg-color: #ffffff;
  --main-color: #d1d1d1;
  --main-focus: #2d8cf0;
  width: 230px;
  min-height: 300px;
  background: var(--bg-color);
  border: 2px solid var(--main-color);
  box-shadow: 4px 4px var(--main-color);
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 20px;
  gap: 10px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.kard-img {
    /* clear and add new css */
  transition: all 0.5s;
  display: flex;
  justify-content: center;
}


.kard-title {
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  color: var(--font-color);
}

.kard-subtitle {
  font-size: 14px;
  font-weight: 400;
  color: var(--font-color-sub);
}

.kard-divider {
  width: 100%;
  border: 1px solid var(--main-color);
  border-radius: 50px;
}

.kard-footer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.kard-price {
  font-size: 20px;
  font-weight: 500;
  color: var(--font-color);
}

.kard-price span {
  font-size: 20px;
  font-weight: 500;
  color: var(--font-color-sub);
}

.kard-btn {
  height: 35px;
  background: var(--bg-color);
  border: 2px solid var(--main-color);
  border-radius: 5px;
  padding: 0 15px;
  transition: all 0.3s;
}

.kard-btn svg {
  width: 100%;
  height: 100%;
  fill: var(--main-color);
  transition: all 0.3s;
}

.kard-img:hover {
  transform: translateY(-3px);
}

.kard-btn:hover {
  border: 2px solid var(--main-focus);
}

.kard-btn:hover svg {
  fill: var(--main-focus);
}

.kard-btn:active {
  transform: translateY(3px);
}
#shop{
    width:100%;
    overflow:hidden;
}

#shop .product-slider{
    display:flex !important;
    flex-wrap:nowrap !important;
    align-items:flex-start;
    gap:20px;
    overflow-x:auto;
    overflow-y:hidden;
    width:100%;
    max-width:100%;
    padding:20px 10px;
    box-sizing:border-box;
}

#shop .product-slider .kard{
    min-width:230px;
    max-width:230px;
    flex:0 0 230px;
}

.user-profile{
    display:flex;
    align-items:center;
    gap:10px;
    padding:10px 14px;
    background:white;
    border:1px solid var(--line);
    border-radius:18px;
    text-decoration:none;
    min-width:116px;
    max-width:180px;
}

.user-avatar{
    width:34px;
    height:34px;
    border-radius:50%;
    background:linear-gradient(135deg, var(--accent), var(--accent-strong));
    color:white;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    text-transform:uppercase;
    flex-shrink:0;
}

.user-email{
    color:var(--muted);
    font-size:.9rem;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}