:root {
    --ink:        #1a1218;
    --ink-mid:    #6b5f68;
    --ink-soft:   #a89da6;
    --cream:      #fdf9f7;
    --cream-dark: #f5eff2;
    --rose:       #c9849a;
    --rose-light: rgba(201,132,154,0.13);
    --rose-mid:   rgba(201,132,154,0.35);
    --gold:       #c9a84c;
    --gold-light: rgba(201,168,76,0.12);
    --white:      #ffffff;
    --red:        #d94f4f;
    --r:          16px;
    --r-lg:       24px;
    --shadow:     0 2px 20px rgba(26,18,24,0.08);
    --shadow-lg:  0 12px 48px rgba(26,18,24,0.14);
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }

  .hn-header{
    position:sticky; top:0; z-index:1000;
    background:rgba(255,255,255,.85);
    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);
    border-bottom:1px solid rgba(26,18,24,.08);
  }
  .hn-header__inner{
    max-width:1360px; margin:0 auto; padding:16px 24px;
    display:flex; align-items:center; gap:24px;
  }
  .hn-logo{
    font-family:'Cormorant Garamond',serif;
    font-size:26px; font-weight:700; letter-spacing:.5px;
    color:#1a1218; text-decoration:none; white-space:nowrap;
  }
  .hn-logo img{ height:38px; display:block; }
  .hn-logo span{ color:#b8860b; }

  .hn-nav{
    display:flex; align-items:center; gap:32px; margin:0 auto;
    font-family:'Outfit',sans-serif;
  }
  .hn-nav a{
    color:#1a1218; text-decoration:none; font-size:14.5px; font-weight:500;
    position:relative; padding:6px 0; opacity:.75; transition:opacity .2s;
  }
  .hn-nav a:hover, .hn-nav a.active{ opacity:1; }
  .hn-nav a.active::after{
    content:''; position:absolute; left:0; right:0; bottom:0; height:2px;
    background:#b8860b; border-radius:2px;
  }

  .hn-header__actions{ display:flex; align-items:center; gap:10px; }
  .hn-icon-btn{
    width:40px; height:40px; border-radius:50%; border:1px solid rgba(26,18,24,.12);
    background:#fff; display:flex; align-items:center; justify-content:center;
    color:#1a1218; text-decoration:none; cursor:pointer; position:relative;
    transition:.2s;
  }
  .hn-icon-btn:hover{ background:#1a1218; color:#fff; }
  .hn-cart-count{
    position:absolute; top:-4px; right:-4px; background:#b8860b; color:#fff;
    font-size:10px; font-weight:700; min-width:16px; height:16px; border-radius:50%;
    display:flex; align-items:center; justify-content:center; padding:0 3px;
  }
  .hn-header__login{ padding:10px 22px; font-size:13.5px; }

  .hn-burger{
    display:none; flex-direction:column; justify-content:center; gap:5px;
    width:38px; height:38px; background:none; border:none; cursor:pointer; padding:0;
  }
  .hn-burger span{
    display:block; width:100%; height:2px; background:#1a1218; border-radius:2px;
    transition:.25s;
  }

  .hn-mobile-overlay{
    position:fixed; inset:0; background:rgba(26,18,24,.5);
    opacity:0; visibility:hidden; transition:.3s; z-index:1998;
  }
  .hn-mobile-overlay.active{ opacity:1; visibility:visible; }

  .hn-mobile-menu{
    position:fixed; top:0; left:0; height:100%; width:82%; max-width:320px;
    background:#fff; z-index:1999; transform:translateX(-100%);
    transition:transform .32s cubic-bezier(.4,0,.2,1);
    display:flex; flex-direction:column; box-shadow:8px 0 30px rgba(0,0,0,.15);
  }
  .hn-mobile-menu.active{ transform:translateX(0); }

  .hn-mobile-menu__top{
    display:flex; align-items:center; justify-content:space-between;
    padding:20px; border-bottom:1px solid rgba(26,18,24,.08);
  }
  .hn-mobile-close{
    background:none; border:none; font-size:20px; color:#1a1218; cursor:pointer;
    width:36px; height:36px; border-radius:50%; display:flex; align-items:center; justify-content:center;
  }
  .hn-mobile-close:hover{ background:rgba(26,18,24,.06); }

  .hn-mobile-nav{ display:flex; flex-direction:column; padding:12px; overflow-y:auto; flex:1; }
  .hn-mobile-nav a{
    display:flex; align-items:center; gap:14px;
    padding:14px 12px; border-radius:10px; color:#1a1218; text-decoration:none;
    font-family:'Outfit',sans-serif; font-size:15px; font-weight:500;
  }
  .hn-mobile-nav a i{ width:18px; color:#b8860b; }
  .hn-mobile-nav a.active, .hn-mobile-nav a:hover{ background:rgba(184,134,11,.08); }

  .hn-mobile-menu__bottom{
    padding:16px 20px 24px; border-top:1px solid rgba(26,18,24,.08);
  }
  .hn-mobile-icon-link{
    display:flex; align-items:center; gap:12px; padding:12px 4px;
    color:#1a1218; text-decoration:none; font-size:14.5px; font-weight:500;
  }
  .hn-mobile-icon-link i{ color:#b8860b; width:18px; }
  .hn-mobile-icon-link span{
    margin-left:auto; background:#b8860b; color:#fff; font-size:11px; font-weight:700;
    min-width:18px; height:18px; border-radius:50%; display:flex; align-items:center; justify-content:center;
  }

  .hn-announce {
    background: var(--ink);
    padding: 10px 24px;
    text-align: center;
    font-size: 12px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    position: relative;
  }
  .hn-announce strong { color: var(--rose); font-weight: 600; }
  .hn-announce-close {
    position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
    background: none; border: none; color: rgba(255,255,255,0.35);
    cursor: pointer; font-size: 14px;
  }

  .hn-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 94vh;
    background: var(--ink);
    overflow: hidden;
    width: 100%;
  }

  .hn-hero__left {
    display: flex; flex-direction: column; justify-content: center;
    padding: 150px 64px 80px 80px;
    position: relative; z-index: 2;
  }

  .hn-hero__eyebrow {
    display: inline-flex; align-items: center; gap: 12px;
    font-size: 11px; font-weight: 500; letter-spacing: 3.5px;
    text-transform: uppercase; color: var(--rose);
    margin-bottom: 28px;
  }
  .hn-hero__eyebrow span { width: 40px; height: 1px; background: var(--rose); display: block; }

  .hn-hero__headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 5vw, 5.8rem);
    font-weight: 600;
    line-height: 1.05;
    color: var(--white);
    letter-spacing: -0.01em;
    margin-bottom: 24px;
  }
  .hn-hero__headline em { font-style: italic; color: var(--rose); }

  .hn-hero__sub {
    font-size: 15px; font-weight: 300;
    color: rgba(255,255,255,0.45);
    line-height: 1.8; max-width: 380px; margin-bottom: 48px;
  }
  .image-container {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .image-container.error::before {
    content: "Resim bulunamadı";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    font-size: 13px;
    color: #999;
    padding: 0 10px;
  }

  .image-container.error {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
  }

  .sh-card__img-wrap.error {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    min-height: 150px;
  }

  .sh-card__img-wrap.error::before {
    content: "Resim bulunamadı";
    font-size: 13px;
    color: #999;
    text-align: center;
    padding: 0 10px;
  }
  .reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1),
                transform 0.7s cubic-bezier(0.22,1,0.36,1);
  }
  .reveal.reveal--visible {
    opacity: 1;
    transform: translateY(0);
  }

  .reveal-stagger > * {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s cubic-bezier(0.22,1,0.36,1),
                transform 0.6s cubic-bezier(0.22,1,0.36,1);
  }
  .reveal-stagger.reveal--visible > * {
    opacity: 1;
    transform: translateY(0);
  }

  .reveal-left  { transform: translateX(-40px); }
  .reveal-left.reveal--visible { transform: translateX(0); }

  .reveal-right { transform: translateX(40px); }
  .reveal-right.reveal--visible { transform: translateX(0); }

  .hn-hero__cta-row { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }

  .hn-btn-primary {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--rose); color: var(--white);
    font-weight: 600; font-size: 13px; letter-spacing: 1px;
    text-transform: uppercase;
    padding: 16px 36px; border-radius: 100px;
    border: none; cursor: pointer; text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    box-shadow: 0 8px 32px var(--rose-mid);
  }
  .hn-btn-primary:hover { background: #b8728a; transform: translateY(-2px); box-shadow: 0 16px 48px var(--rose-mid); }

  .hn-btn-ghost {
    display: inline-flex; align-items: center; gap: 8px;
    color: rgba(255,255,255,0.45); font-size: 13px; font-weight: 500;
    letter-spacing: 0.5px; text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.15); padding-bottom: 2px;
    transition: color 0.2s, border-color 0.2s;
  }
  .hn-btn-ghost:hover { color: var(--white); border-color: rgba(255,255,255,0.4); }

  .hn-hero__stats {
    display: flex; gap: 40px; margin-top: 64px;
    padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.07);
  }
  .hn-stat__num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px; font-weight: 600;
    color: var(--white); line-height: 1; margin-bottom: 4px;
  }
  .hn-stat__num span { color: var(--rose); }
  .hn-stat__label {
    font-size: 10px; font-weight: 500; letter-spacing: 2px;
    text-transform: uppercase; color: rgba(255,255,255,0.3);
  }

  .hn-hero__right { position: relative; overflow: hidden; }

  .hn-hero__right-bg {
    width: 100%; height: 100%;
    background: linear-gradient(160deg, #2d1a28 0%, #1f1020 50%, #110810 100%);
    display: flex; align-items: center; justify-content: center;
    position: relative;
  }

  .hn-hero__deco {
    position: absolute; border-radius: 50%;
    border: 1px solid rgba(201,132,154,0.12);
  }
  .hn-hero__deco-1 { width: 520px; height: 520px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
  .hn-hero__deco-2 { width: 360px; height: 360px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
  .hn-hero__deco-3 { width: 200px; height: 200px; top: 50%; left: 50%; transform: translate(-50%,-50%); background: rgba(201,132,154,0.04); }

  .hn-hero__center-icon {
    font-size: 90px;
    color: rgba(201,132,154,0.25);
    position: relative; z-index: 1;
  }

  .hn-hero__particle {
    position: absolute;
    border-radius: 50%;
    background: var(--rose);
    opacity: 0.15;
    animation: drift 6s ease-in-out infinite alternate;
  }
  .hn-hero__particle:nth-child(1) { width: 8px; height: 8px; top: 20%; left: 20%; animation-delay: 0s; }
  .hn-hero__particle:nth-child(2) { width: 5px; height: 5px; top: 65%; left: 75%; animation-delay: 1.5s; }
  .hn-hero__particle:nth-child(3) { width: 10px; height: 10px; top: 75%; left: 25%; animation-delay: 3s; }
  .hn-hero__particle:nth-child(4) { width: 6px; height: 6px; top: 30%; left: 70%; animation-delay: 2s; }
  @keyframes drift {
    from { transform: translateY(0) scale(1); }
    to   { transform: translateY(-20px) scale(1.2); }
  }

  .hn-hero__badge {
    position: absolute; bottom: 40px; left: -16px;
    background: var(--white); border-radius: 20px; padding: 18px 24px;
    box-shadow: var(--shadow-lg);
    display: flex; align-items: center; gap: 14px; min-width: 210px;
    animation: floatUp 3.5s ease-in-out infinite alternate;
  }
  @keyframes floatUp {
    from { transform: translateY(0); }
    to   { transform: translateY(-10px); }
  }

  .hn-hero__badge-icon {
    width: 44px; height: 44px; background: var(--rose-light);
    border-radius: 12px; display: flex; align-items: center; justify-content: center;
    font-size: 18px; color: var(--rose); flex-shrink: 0;
  }
  .hn-hero__badge-title { font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 2px; }
  .hn-hero__badge-sub  { font-size: 11px; color: var(--ink-soft); }

  .hn-trust { background: var(--white); border-bottom: 1px solid var(--cream-dark); }
  .hn-trust__inner {
    max-width: 1360px; margin: 0 auto; padding: 36px 24px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
  }

  .hn-trust-item { display: flex; align-items: center; gap: 18px; }
  .hn-trust-item__icon {
    width: 48px; height: 48px; flex-shrink: 0;
    background: var(--rose-light); border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; color: var(--rose);
  }
  .hn-trust-item__title { font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 2px; }
  .hn-trust-item__sub  { font-size: 12px; color: var(--ink-soft); line-height: 1.5; }

  .hn-cats {
    background: var(--white); border-bottom: 1px solid var(--cream-dark);
    padding: 0 32px; overflow-x: auto; scrollbar-width: none;
  }
  .hn-cats::-webkit-scrollbar { display: none; }
  .hn-cats__inner { display: flex; align-items: center; max-width: 1360px; margin: 0 auto; }
  .hn-cat-link {
    flex-shrink: 0; display: flex; flex-direction: column; align-items: center; gap: 6px;
    padding: 22px 28px; text-decoration: none; color: var(--ink-mid);
    font-size: 12px; font-weight: 500; letter-spacing: 0.5px;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s; white-space: nowrap;
  }
  .hn-cat-link:hover, .hn-cat-link.active { color: var(--ink); border-bottom-color: var(--rose); }
  .hn-cat-link i { font-size: 18px; color: var(--ink-soft); transition: color 0.2s; }
  .hn-cat-link:hover i, .hn-cat-link.active i { color: var(--rose); }

  .hn-section { max-width: 1360px; margin: 0 auto; padding: 80px 24px; }
  .hn-section--flush { padding-top: 0; }

  .hn-section__head {
    display: flex; align-items: flex-end; justify-content: space-between;
    margin-bottom: 48px; gap: 20px; flex-wrap: wrap;
  }
  .hn-section__eyebrow {
    font-size: 10px; font-weight: 600; letter-spacing: 3px;
    text-transform: uppercase; color: var(--rose); margin-bottom: 10px;
  }
  .hn-section__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3vw, 3rem); font-weight: 600; line-height: 1.15;
    color: var(--ink); letter-spacing: -0.01em;
  }
  .hn-section__sub { font-size: 14px; color: var(--ink-soft); line-height: 1.6; margin-top: 8px; max-width: 400px; }

  .hn-see-all {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 12px; font-weight: 600; letter-spacing: 0.5px; color: var(--ink-mid);
    text-decoration: none; border: 1.5px solid var(--cream-dark);
    padding: 10px 22px; border-radius: 100px; transition: all 0.2s; white-space: nowrap;
  }
  .hn-see-all:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }

  @keyframes cardIn {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .sh-card {
    background: var(--white); border-radius: var(--r-lg); overflow: hidden;
    border: 1px solid rgba(26,18,24,0.06); cursor: pointer;
    transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.35s ease;
    position: relative; display: flex; flex-direction: column;
    animation: cardIn 0.4s ease both;
  }
  .sh-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

  .sh-card__img-wrap {
    position: relative; aspect-ratio: 1/1; overflow: hidden;
    background: linear-gradient(135deg, #f5eff2, #fdf9f7);
  }
  .sh-card__img-wrap img {
    width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; display: block;
  }
  .sh-card:hover .sh-card__img-wrap img { transform: scale(1.08); }

  .img-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-size: 52px; color: rgba(201,132,154,0.25);
    background: linear-gradient(135deg, #f5eff2, #fdf9f7);
  }

  .sh-badge-discount {
    position: absolute; top: 14px; left: 14px;
    background: var(--red); color: var(--white);
    font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
    padding: 5px 12px; border-radius: 100px;
    box-shadow: 0 4px 12px rgba(217,79,79,0.35); z-index: 2;
  }
  .sh-badge-new {
    position: absolute; top: 14px; right: 14px;
    background: var(--gold); color: var(--white);
    font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
    padding: 5px 12px; border-radius: 100px; z-index: 2;
  }
  .sh-badge-limited {
    position: absolute; top: 14px; left: 14px;
    background: var(--ink); color: var(--white);
    font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
    padding: 5px 12px; border-radius: 100px; z-index: 2;
  }

  .sh-card__actions {
    position: absolute; top: 14px; right: 14px;
    display: flex; flex-direction: column; gap: 8px; z-index: 10;
  }
  .sh-action-btn {
    width: 36px; height: 36px; background: var(--white);
    border: 1px solid rgba(26,18,24,0.08); border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; font-size: 14px; color: var(--ink-mid);
    transition: all 0.2s; box-shadow: var(--shadow);
  }
  .sh-action-btn:hover { background: var(--ink); color: var(--white); }
  .sh-action-btn.wished { color: var(--red) !important; }

  .sh-card__body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
  .sh-card__cat  {
    font-size: 10px; font-weight: 600; letter-spacing: 1.5px;
    text-transform: uppercase; color: var(--gold); margin-bottom: 6px;
  }
  .sh-card__name {
    font-family: 'Outfit', sans-serif;
    font-size: 15px; font-weight: 500; line-height: 1.35;
    color: var(--ink); margin-bottom: 14px;
    display: -webkit-box; --webkit-line-clamp: 2; -webkit-box-orient: vertical;
    overflow: hidden; min-height: 41px;
  }
  .sh-card__price-row { display: flex; align-items: baseline; gap: 10px; margin-top: auto; margin-bottom: 14px; }
  .sh-card__price-new { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 700; color: var(--ink); }
  .sh-card__price-new.is-sale { color: var(--red); }
  .sh-card__price-old { font-size: 13px; color: var(--ink-soft); text-decoration: line-through; }

  .sh-card__btn {
    width: 100%; background: transparent;
    border: 1.5px solid var(--cream-dark);
    border-radius: 100px; padding: 11px;
    font-size: 13px; font-weight: 600; letter-spacing: 0.5px;
    color: var(--ink-mid);
    cursor: pointer; transition: all 0.2s;
    display: flex; align-items: center; justify-content: center; gap: 8px;
  }
  .sh-card:hover .sh-card__btn { background: var(--ink); color: var(--white); border-color: var(--ink); }

  .hn-promo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

  .hn-promo-card {
    position: relative; overflow: hidden; border-radius: var(--r-lg);
    min-height: 380px; display: flex; align-items: flex-end; padding: 40px; cursor: pointer;
  }
  .hn-promo-card__bg {
    position: absolute; inset: 0; transition: transform 0.6s ease;
  }
  .hn-promo-card:hover .hn-promo-card__bg { transform: scale(1.05); }
  .hn-promo-card::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(26,18,24,0.75) 0%, rgba(26,18,24,0.1) 60%);
  }
  .hn-promo-card__body { position: relative; z-index: 1; }
  .hn-promo-card__tag {
    display: inline-block; background: var(--rose); color: var(--white);
    font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
    padding: 5px 14px; border-radius: 100px; margin-bottom: 12px;
  }
  .hn-promo-card__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 2.8vw, 2.6rem); font-weight: 600; line-height: 1.1;
    color: var(--white); margin-bottom: 8px;
  }
  .hn-promo-card__sub { font-size: 14px; color: rgba(255,255,255,0.6); margin-bottom: 20px; }
  .hn-promo-card__link {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--white); font-size: 12px; font-weight: 600;
    letter-spacing: 1px; text-transform: uppercase; text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.35); padding-bottom: 2px;
    transition: border-color 0.2s;
  }
  .hn-promo-card__link:hover { border-color: var(--white); }

  .promo-bg-taki {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, #2d1a28 0%, #1a0d1e 100%);
    display: flex; align-items: center; justify-content: center;
  }
  .promo-bg-taki i { font-size: 110px; color: rgba(201,132,154,0.12); }

  .promo-bg-kozmetik {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, #1a1a2d 0%, #0d0d1e 100%);
    display: flex; align-items: center; justify-content: center;
  }
  .promo-bg-kozmetik i { font-size: 110px; color: rgba(201,168,76,0.12); }

  .hn-strip {
    background: var(--ink); padding: 100px 24px;
    text-align: center; position: relative; overflow: hidden;
  }
  .hn-strip::before {
    content: ''; position: absolute; inset: 0;
    background: repeating-linear-gradient(-45deg, transparent, transparent 40px,
      rgba(201,132,154,0.025) 40px, rgba(201,132,154,0.025) 41px);
  }
  .hn-strip__inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
  .hn-strip__eyebrow {
    font-size: 11px; font-weight: 500; letter-spacing: 3px; text-transform: uppercase;
    color: var(--rose); margin-bottom: 20px;
    display: flex; align-items: center; justify-content: center; gap: 12px;
  }
  .hn-strip__eyebrow span { width: 32px; height: 1px; background: var(--rose); display: block; }
  .hn-strip__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 4vw, 4rem); font-weight: 600; color: var(--white);
    line-height: 1.1; letter-spacing: -0.01em; margin-bottom: 16px;
  }
  .hn-strip__title em { font-style: italic; color: var(--rose); }
  .hn-strip__sub {
    font-size: 15px; font-weight: 300; color: rgba(255,255,255,0.4);
    line-height: 1.75; margin-bottom: 40px;
  }

  .hn-nl { background: var(--cream-dark); padding: 80px 24px; text-align: center; }
  .hn-nl__inner { max-width: 480px; margin: 0 auto; }
  .hn-nl__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem; font-weight: 600; color: var(--ink); margin-bottom: 10px;
  }
  .hn-nl__sub   { font-size: 14px; color: var(--ink-soft); line-height: 1.65; margin-bottom: 28px; }
  .hn-nl__form  { display: flex; gap: 12px; }
  .hn-nl__input {
    flex: 1; background: var(--white); border: 1.5px solid rgba(26,18,24,0.1);
    border-radius: 100px; padding: 14px 22px; font-size: 14px; color: var(--ink);
    font-family: 'Outfit', sans-serif; outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
  }
  .hn-nl__input:focus { border-color: var(--rose); box-shadow: 0 0 0 4px var(--rose-light); }
  .hn-nl__input::placeholder { color: var(--ink-soft); }
  .hn-nl__btn {
    background: var(--rose); color: var(--white); border: none; border-radius: 100px;
    padding: 14px 28px; font-size: 13px; font-weight: 600;
    letter-spacing: 0.5px; font-family: 'Outfit', sans-serif;
    cursor: pointer; white-space: nowrap; transition: background 0.2s, transform 0.1s;
  }
  .hn-nl__btn:hover { background: #b8728a; transform: translateY(-1px); }

  .hn-footer {
    background: var(--ink); padding: 60px 24px 32px;
    color: rgba(255,255,255,0.35); font-size: 13px;
    margin-top: auto;
  }
  .hn-footer__inner {
    max-width: 1360px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 16px;
    border-top: 1px solid rgba(255,255,255,0.07); padding-top: 32px;
  }
  .hn-footer__brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px; font-weight: 600; color: var(--white); letter-spacing: 2px;
  }
  .hn-footer__brand span { color: var(--rose); }

	.pd-wrap {
		max-width: 1360px;
		margin: 0 auto;
		padding: 145px 24px 100px;
	}

	.pd-breadcrumb {
		display: flex; align-items: center; gap: 8px;
		font-size: 12px; color: var(--ink-soft);
		margin-bottom: 32px; letter-spacing: 0.3px;
	}
	.pd-breadcrumb a { color: var(--ink-soft); text-decoration: none; transition: color .2s; }
	.pd-breadcrumb a:hover { color: var(--rose); }
	.pd-breadcrumb i { font-size: 9px; color: var(--ink-soft); }
	.pd-breadcrumb span.current { color: var(--ink); font-weight: 600; }

	.pd-grid {
		display: grid;
		grid-template-columns: 1.1fr 0.9fr;
		gap: 64px;
	}

	.pd-gallery__main {
		position: relative;
		border-radius: var(--r-lg);
		overflow: hidden;
		background: linear-gradient(135deg, #f5eff2, #fdf9f7);
		box-shadow: var(--shadow);
	}
	.pd-slider-track {
		display: flex;
		width: 100%;
		transition: transform 0.45s cubic-bezier(0.65,0,0.35,1);
	}
	.pd-slider-slide {
		flex: 0 0 100%;
		height: 560px;
		display: flex; align-items: center; justify-content: center;
	}
	.pd-slider-slide img {
		width: 100%; height: 100%; object-fit: cover; display: block;
	}

	.pd-slider-nav {
		position: absolute; top: 50%; transform: translateY(-50%);
		width: 40px; height: 40px; border-radius: 50%;
		background: rgba(255,255,255,0.92); border: none;
		display: flex; align-items: center; justify-content: center;
		color: var(--ink); font-size: 14px; cursor: pointer;
		box-shadow: var(--shadow); transition: background .2s, transform .2s;
		z-index: 3;
	}
	.pd-slider-nav:hover { background: var(--white); transform: translateY(-50%) scale(1.06); }
	.pd-slider-nav.prev { left: 16px; }
	.pd-slider-nav.next { right: 16px; }

	.pd-slider-dots {
		position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
		display: flex; gap: 7px; z-index: 3;
	}
	.pd-slider-dots .dot {
		width: 7px; height: 7px; border-radius: 50%;
		background: rgba(255,255,255,0.55); cursor: pointer; transition: all .2s;
	}
	.pd-slider-dots .dot.active { background: var(--white); width: 20px; border-radius: 4px; }

	.pd-thumbs {
		display: flex; gap: 10px; margin-top: 14px;
		overflow-x: auto; scrollbar-width: none;
	}
	.pd-thumbs::-webkit-scrollbar { display: none; }
	.pd-thumbs .thumb {
		width: 84px; height: 84px; flex-shrink: 0;
		border-radius: 12px; overflow: hidden; cursor: pointer;
		border: 2px solid transparent; transition: border-color .2s, opacity .2s;
		opacity: 0.55;
		background: linear-gradient(135deg, #f5eff2, #fdf9f7);
	}
	.pd-thumbs .thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
	.pd-thumbs .thumb:hover { opacity: 0.85; }
	.pd-thumbs .thumb.active { border-color: var(--rose); opacity: 1; }

	.pd-info__cat {
		font-size: 11px; font-weight: 600; letter-spacing: 2.5px;
		text-transform: uppercase; color: var(--rose); margin-bottom: 14px;
	}
	.pd-info__title {
		font-family: 'Cormorant Garamond', serif;
		font-size: clamp(1.9rem, 3vw, 2.6rem); font-weight: 600;
		color: var(--ink); line-height: 1.15; margin-bottom: 20px;
	}

	.pd-info__price-row {
		display: flex; align-items: baseline; gap: 14px;
		padding: 24px 0; border-top: 1px solid var(--cream-dark); border-bottom: 1px solid var(--cream-dark);
		margin-bottom: 28px;
	}
	.pd-info__price-new { font-family: 'Cormorant Garamond', serif; font-size: 34px; font-weight: 700; color: var(--ink); }
	.pd-info__price-new.is-sale { color: var(--red); }
	.pd-info__price-old { font-size: 16px; color: var(--ink-soft); text-decoration: line-through; }
	.pd-info__stock {
		margin-left: auto;
		display: inline-flex; align-items: center; gap: 6px;
		font-size: 12px; font-weight: 600; color: #3a8b52;
		background: rgba(58,139,82,0.08); padding: 7px 14px; border-radius: 100px;
	}

	.pd-qty-cart {
		display: flex; align-items: center; gap: 14px; margin-bottom: 18px;
	}

	.qty-box {
		display: inline-flex; align-items: center;
		border: 1.5px solid var(--cream-dark); border-radius: 100px; overflow: hidden;
	}
	.qty-box button {
		width: 42px; height: 48px; border: none; background: var(--white);
		font-size: 18px; cursor: pointer; color: var(--ink-mid); transition: background .2s;
	}
	.qty-box button:hover { background: var(--cream-dark); }
	.qty-box input {
		width: 44px; height: 48px; border: none; text-align: center;
		font-weight: 700; background: var(--white); font-family: 'Outfit', sans-serif; color: var(--ink);
	}

	.pd-btn-cart {
		flex: 1;
		display: inline-flex; align-items: center; justify-content: center; gap: 10px;
		background: var(--rose); color: var(--white); border: none;
		font-weight: 600; font-size: 13px; letter-spacing: 1px; text-transform: uppercase;
		padding: 0 28px; height: 48px; border-radius: 100px; cursor: pointer;
		transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
		box-shadow: 0 8px 32px var(--rose-mid);
	}
	.pd-btn-cart:hover { background: #b8728a; transform: translateY(-2px); box-shadow: 0 16px 48px var(--rose-mid); }

	.pd-fav-btn {
		width: 48px; height: 48px; flex-shrink: 0;
		border: 1.5px solid var(--cream-dark); border-radius: 100px; background: var(--white);
		display: flex; align-items: center; justify-content: center; cursor: pointer;
		transition: all .2s ease; font-size: 17px; color: var(--ink-mid);
	}
	.pd-fav-btn:hover { border-color: var(--rose); }
	.pd-fav-btn.active { background: var(--rose-light); border-color: var(--rose); color: var(--red); }

	.pd-info__perks { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }
	.pd-info__perk {
		display: flex; align-items: center; gap: 12px;
		font-size: 13px; color: var(--ink-mid);
	}
	.pd-info__perk-icon {
		width: 34px; height: 34px; flex-shrink: 0;
		background: var(--rose-light); border-radius: 10px;
		display: flex; align-items: center; justify-content: center;
		color: var(--rose); font-size: 14px;
	}

	.pd-info__share { display: flex; align-items: center; gap: 14px; margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--cream-dark); }
	.pd-info__share span { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--ink-soft); }
	.pd-info__share a {
		width: 34px; height: 34px; border-radius: 50%;
		background: var(--cream-dark); display: flex; align-items: center; justify-content: center;
		color: var(--ink-mid); text-decoration: none; transition: all .2s;
	}
	.pd-info__share a:hover { background: var(--rose); color: var(--white); }

	.pd-tabs { margin-top: 90px; }
	.pd-tabs__head {
		display: flex; align-items: center; gap: 4px;
		border-bottom: 1px solid var(--cream-dark);
	}
	.pd-tab-btn {
		background: none; border: none; cursor: pointer;
		font-family: 'Outfit', sans-serif;
		font-size: 12px; font-weight: 600; letter-spacing: 1.4px; text-transform: uppercase;
		color: var(--ink-soft);
		padding: 16px 6px; margin-right: 32px;
		border-bottom: 2px solid transparent;
		transition: color .2s, border-color .2s;
		position: relative;
	}
	.pd-tab-btn:hover { color: var(--ink); }
	.pd-tab-btn.active { color: var(--ink); border-bottom-color: var(--rose); }

	.pd-tab-panel { display: none; padding-top: 40px; }
	.pd-tab-panel.active {
		display: block;
		animation: pdFadeIn .35s ease;
	}
	@keyframes pdFadeIn {
		from { opacity: 0; transform: translateY(6px); }
		to   { opacity: 1; transform: translateY(0); }
	}

	.pd-desc {
		max-width: 760px;
		font-size: 15px;
		line-height: 2;
		color: var(--ink-mid);
	}
	.pd-desc p { margin-bottom: 22px; }
	.pd-desc p:last-child { margin-bottom: 0; }

	.pd-spec-list {
		max-width: 560px;
		display: flex;
		flex-direction: column;
		border-radius: var(--r);
		overflow: hidden;
		border: 1px solid var(--cream-dark);
	}
	.pd-spec-row {
		display: grid;
		grid-template-columns: 160px 1fr;
		padding: 16px 22px;
		font-size: 13.5px;
	}
	.pd-spec-row:nth-child(odd) { background: var(--cream-dark); }
	.pd-spec-row:nth-child(even) { background: var(--white); }
	.pd-spec-label {
		display: flex; align-items: center; gap: 10px;
		font-weight: 600; color: var(--ink);
	}
	.pd-spec-label i { color: var(--rose); font-size: 13px; width: 16px; text-align: center; }
	.pd-spec-value { color: var(--ink-mid); display: flex; align-items: center; }

  .sh-hero{
    background:var(--ink);
    padding:150px 24px 56px;
    text-align:center;
    position:relative; overflow:hidden;
  }
  .sh-hero::before{
    content:'';
    position:absolute; inset:0;
    background:repeating-linear-gradient(-45deg,transparent,transparent 40px,rgba(255,255,255,.02) 40px,rgba(255,255,255,.02) 41px);
  }
  .sh-hero__eyebrow{
    display:inline-flex; align-items:center; gap:10px;
    font-family:'Outfit',sans-serif;
    font-size:11px; font-weight:500; letter-spacing:3px; text-transform:uppercase;
    color:var(--gold); margin-bottom:16px; position:relative;
  }
  .sh-hero__eyebrow span{ width:32px; height:1px; background:var(--gold); display:block; }
  .sh-hero__title{
    font-family:'Cormorant Garamond',serif;
    font-size:clamp(2.4rem,5vw,4rem); font-weight:700; font-style:italic;
    color:var(--white); line-height:1.1; margin-bottom:16px; position:relative;
  }
  .sh-hero__sub{
    font-family:'Outfit',sans-serif; font-size:15px; font-weight:300;
    color:rgba(255,255,255,.55); max-width:480px; margin:0 auto 24px;
    line-height:1.7; position:relative;
  }
  .sh-hero__note{
    display:inline-flex; align-items:center; gap:8px;
    font-family:'Outfit',sans-serif; font-size:12px; color:rgba(255,255,255,.4);
    border:1px solid rgba(255,255,255,.12); padding:7px 18px; border-radius:100px;
    position:relative;
  }

  .sh-layout{
    max-width:1360px; margin:0 auto; padding:40px 24px 80px;
    display:grid; grid-template-columns:280px 1fr; gap:32px; align-items:start;
    font-family:'Outfit',sans-serif;
  }

  .sh-sidebar{ position:sticky; top:110px; }
  .sh-sidebar__card{
    background:var(--white); border-radius:var(--r-lg);
    padding:26px; box-shadow:var(--shadow);
    border:1px solid rgba(26,18,24,.06);
  }
  .sh-sidebar__card + .sh-sidebar__card{ margin-top:16px; }

  .sh-section-label{
    font-size:10px; font-weight:600; letter-spacing:2.5px; text-transform:uppercase;
    color:var(--ink-soft); margin-bottom:16px; display:flex; align-items:center; gap:8px;
  }
  .sh-section-label::after{ content:''; flex:1; height:1px; background:var(--cream-dark); }

  .sh-search-wrap{ position:relative; }
  .sh-search-wrap input{
    width:100%; background:var(--cream); border:1.5px solid var(--cream-dark);
    border-radius:12px; padding:12px 16px 12px 42px;
    font-family:'Outfit',sans-serif; font-size:14px; color:var(--ink);
    outline:none; transition:.2s;
  }
  .sh-search-wrap input:focus{ border-color:var(--gold); box-shadow:0 0 0 4px var(--gold-light); background:var(--white); }
  .sh-search-wrap input::placeholder{ color:var(--ink-soft); }
  .sh-search-icon{ position:absolute; left:14px; top:50%; transform:translateY(-50%); color:var(--ink-soft); font-size:13px; }

  .sh-pills{ display:flex; flex-wrap:wrap; gap:8px; }
  .sh-pill{
    padding:7px 16px; border-radius:100px; border:1.5px solid var(--cream-dark);
    background:var(--cream); font-size:13px; font-weight:500; color:var(--ink-mid);
    cursor:pointer; transition:.2s; text-decoration:none;
  }
  .sh-pill:hover{ border-color:var(--gold); color:var(--gold); }
  .sh-pill.active{ background:var(--ink); border-color:var(--ink); color:var(--white); }

  .sh-price-row{ display:grid; grid-template-columns:1fr auto 1fr; align-items:center; gap:10px; margin-bottom:16px; }
  .sh-price-row input{
    background:var(--cream); border:1.5px solid var(--cream-dark); border-radius:10px;
    padding:10px 12px; font-size:13px; color:var(--ink); outline:none; width:100%; transition:.2s;
  }
  .sh-price-row input:focus{ border-color:var(--gold); }
  .sh-price-sep{ color:var(--ink-soft); font-size:16px; text-align:center; }

  .sh-btn-apply{
    width:100%; background:var(--ink); color:var(--white); border:none;
    border-radius:100px; padding:13px; font-size:13.5px; font-weight:600;
    letter-spacing:.3px; cursor:pointer;
    display:flex; align-items:center; justify-content:center; gap:8px; transition:.2s;
  }
  .sh-btn-apply:hover{ background:var(--gold); transform:translateY(-1px); }

  .sh-sort-select{
    width:100%;
    background:var(--cream) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236e6469' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 14px center;
    border:1.5px solid var(--cream-dark); border-radius:12px;
    padding:12px 40px 12px 14px; font-size:14px; color:var(--ink);
    appearance:none; cursor:pointer; outline:none; transition:.2s;
  }
  .sh-sort-select:focus{ border-color:var(--gold); }

  .sh-topbar{ display:flex; align-items:center; justify-content:space-between; margin-bottom:28px; flex-wrap:wrap; gap:12px; }
  .sh-topbar__count{ font-size:14px; color:var(--ink-mid); }
  .sh-topbar__count strong{ color:var(--ink); font-weight:600; }

  .sh-mobile-filter-btn{
    display:none; align-items:center; gap:8px;
    background:var(--ink); color:var(--white); border:none; border-radius:100px;
    padding:11px 22px; font-size:13.5px; font-weight:600; cursor:pointer;
  }

  .sh-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }

  .sh-skeleton{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }

  .sh-skel-card{ background:var(--white); border-radius:var(--r-lg); overflow:hidden; border:1px solid rgba(26,18,24,.06); }
  .sh-skel-img{ aspect-ratio:1/1; background:linear-gradient(90deg,var(--cream-dark) 25%,#e8ddd2 50%,var(--cream-dark) 75%); background-size:200% 100%; animation:shimmer 1.4s infinite; }
  .sh-skel-body{ padding:20px; }
  .sh-skel-line{ height:12px; border-radius:6px; margin-bottom:10px; background:linear-gradient(90deg,var(--cream-dark) 25%,#e8ddd2 50%,var(--cream-dark) 75%); background-size:200% 100%; animation:shimmer 1.4s infinite; }
  .sh-skel-line.w80{ width:80%; } .sh-skel-line.w60{ width:60%; } .sh-skel-line.w40{ width:40%; }
  @keyframes shimmer{ 0%{background-position:200% 0;} 100%{background-position:-200% 0;} }

  .sh-empty{ grid-column:1/-1; text-align:center; padding:80px 24px; }
  .sh-empty__icon{ font-size:44px; margin-bottom:16px; opacity:.2; color:var(--ink); }
  .sh-empty__text{ font-family:'Cormorant Garamond',serif; font-size:24px; font-style:italic; color:var(--ink-mid); margin-bottom:8px; }
  .sh-empty__sub{ font-size:14px; color:var(--ink-soft); }

  .sh-offcanvas{ position:fixed; inset:0; z-index:9999; display:none; }
  .sh-offcanvas.open{ display:flex; }
  .sh-offcanvas__backdrop{ position:absolute; inset:0; background:rgba(26,18,24,.5); backdrop-filter:blur(4px); }
  .sh-offcanvas__panel{
    position:relative; z-index:1; width:min(340px,90vw); background:var(--white);
    height:100%; overflow-y:auto; padding:32px 24px; box-shadow:var(--shadow-lg);
    animation:slideInLeft .3s ease;
  }
  @keyframes slideInLeft{ from{transform:translateX(-100%);} to{transform:translateX(0);} }
  .sh-offcanvas__close{
    position:absolute; top:20px; right:20px; width:36px; height:36px;
    background:var(--cream); border:none; border-radius:10px; cursor:pointer;
    font-size:16px; color:var(--ink-mid); display:flex; align-items:center; justify-content:center; transition:.2s;
  }
  .sh-offcanvas__close:hover{ background:var(--cream-dark); }
  .sh-offcanvas__title{ font-family:'Cormorant Garamond',serif; font-size:24px; font-weight:700; font-style:italic; margin-bottom:28px; }

/* ══════════════════════════════════════
   AUTH (GİRİŞ YAP & KAYIT OL)
══════════════════════════════════════ */
.auth-wrapper {
  max-width: 1360px;
  margin: 0 auto;
  padding: 150px 24px 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 120px);
  position: relative;
}

.auth-container {
  width: 100%;
  max-width: 500px;
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid rgba(26, 18, 24, 0.08);
  box-shadow: var(--shadow-lg);
  padding: 44px 40px;
  position: relative;
  overflow: hidden;
  animation: authFadeIn 0.5s ease;
}

@keyframes authFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.auth-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--rose) 0%, var(--gold) 100%);
}

.auth-header {
  text-align: center;
  margin-bottom: 32px;
}

.auth-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.auth-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}

.auth-subtitle {
  font-size: 14px;
  color: var(--ink-soft);
  margin-top: 6px;
}

.auth-tabs {
  display: flex;
  background: var(--cream-dark);
  border-radius: 100px;
  padding: 4px;
  margin-bottom: 32px;
  position: relative;
}

.auth-tab-btn {
  flex: 1;
  border: none;
  background: none;
  padding: 12px 16px;
  font-family: 'Outfit', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-mid);
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  text-decoration: none;
}

.auth-tab-btn.active {
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 2px 10px rgba(26, 18, 24, 0.08);
}

.auth-form-group {
  margin-bottom: 20px;
}

.auth-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: 0.2px;
}

.auth-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.auth-input-icon {
  position: absolute;
  left: 16px;
  color: var(--ink-soft);
  font-size: 15px;
  transition: color 0.2s;
  pointer-events: none;
}

.auth-input {
  width: 100%;
  background: var(--cream);
  border: 1.5px solid var(--cream-dark);
  border-radius: 14px;
  padding: 14px 16px 14px 46px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  color: var(--ink);
  outline: none;
  transition: all 0.2s ease;
}

.auth-input:focus {
  border-color: var(--rose);
  background: var(--white);
  box-shadow: 0 0 0 4px var(--rose-light);
}

.auth-input-wrap:focus-within .auth-input-icon {
  color: var(--rose);
}

.auth-toggle-pwd {
  position: absolute;
  right: 16px;
  background: none;
  border: none;
  color: var(--ink-soft);
  font-size: 15px;
  cursor: pointer;
  padding: 4px;
  transition: color 0.2s;
}

.auth-toggle-pwd:hover {
  color: var(--ink);
}

.auth-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  font-size: 13px;
}

.auth-checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: var(--ink-mid);
  user-select: none;
}

.auth-checkbox-label input[type="checkbox"] {
  accent-color: var(--rose);
  width: 16px;
  height: 16px;
  border-radius: 4px;
  cursor: pointer;
}

.auth-forgot-link {
  color: var(--rose);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.auth-forgot-link:hover {
  color: #b8728a;
  text-decoration: underline;
}

.auth-submit-btn {
  width: 100%;
  background: var(--ink);
  color: var(--white);
  border: none;
  border-radius: 100px;
  padding: 16px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.25s ease;
  box-shadow: var(--shadow);
}

.auth-submit-btn:hover {
  background: var(--rose);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px var(--rose-mid);
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 28px 0;
  color: var(--ink-soft);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--cream-dark);
}

.auth-social-btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.auth-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--white);
  border: 1.5px solid var(--cream-dark);
  border-radius: 14px;
  padding: 12px;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.auth-social-btn:hover {
  border-color: rgba(26, 18, 24, 0.2);
  background: var(--cream);
  transform: translateY(-1px);
}

.pwd-strength-bar {
  height: 4px;
  background: var(--cream-dark);
  border-radius: 2px;
  margin-top: 8px;
  overflow: hidden;
}

.pwd-strength-fill {
  height: 100%;
  width: 0%;
  transition: width 0.3s ease, background-color 0.3s ease;
  border-radius: 2px;
}

.pwd-strength-text {
  font-size: 11px;
  color: var(--ink-soft);
  margin-top: 4px;
}

/* ══════════════════════════════════════
   RESPONSIVE (MEDIA QUERIES) — tek blokta
══════════════════════════════════════ */

@media (max-width: 1360px) {
}

@media (max-width: 1200px) {
  .hn-hero__left { padding: 130px 48px 64px; }
  .sh-grid { grid-template-columns: repeat(3,1fr); }
  .sh-skeleton { grid-template-columns: repeat(3,1fr); }
}

@media (max-width: 1024px) {
  .sh-mobile-filter-btn { display: flex; }
  .sh-layout { grid-template-columns: 1fr; }
  .sh-sidebar { display: none; }
}

@media (max-width: 960px) {
  .hn-nav { display: none; }
  .hn-header__login { display: none; }
  .hn-burger { display: flex; }
  .hn-header__inner { padding: 14px 16px; }
}
@media (min-width: 961px) {
  .hn-mobile-overlay, .hn-mobile-menu { display: none; }
}

@media (max-width: 900px) {
  .hn-hero { grid-template-columns: 1fr; min-height: auto; width: 100%; }
  .hn-hero__right { height: 380px; order: 1; }
  .hn-hero__badge { left: 20px; bottom: 20px; }
  .pd-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .hn-section { padding: 48px 16px; }
  .hn-section--flush { padding-top: 0; }
  .hn-section__head { margin-bottom: 28px; }

  .hn-promo-grid { grid-template-columns: 1fr; }
  .hn-promo-card { min-height: 240px; padding: 24px; }
  .hn-promo-card__title { font-size: 1.5rem; }
  .hn-promo-card__sub { font-size: 13px; margin-bottom: 14px; }

  .hn-strip { padding: 60px 20px; }

  .hn-nl { padding: 56px 20px; }
  .hn-nl__title { font-size: 1.7rem; }
  .hn-nl__form { flex-direction: column; }

  .hn-trust__inner { padding: 24px 16px; gap: 16px; }
  .hn-trust-item__icon { width: 40px; height: 40px; font-size: 16px; }
  .hn-trust-item__title { font-size: 13px; }
  .hn-trust-item__sub { font-size: 11px; }

  .hn-cat-link { padding: 16px 18px; font-size: 11px; }
  .hn-cat-link i { font-size: 15px; }

  .hn-footer__inner { flex-direction: column; text-align: center; gap: 12px; }

  .sh-grid { grid-template-columns: repeat(2,1fr); gap: 12px; }
  .sh-skeleton { grid-template-columns: repeat(2,1fr); gap: 12px; }

  .sh-card__body { padding: 12px; }
  .sh-card__name { font-size: 13px; min-height: 36px; margin-bottom: 8px; }
  .sh-card__cat { font-size: 9px; margin-bottom: 4px; }
  .sh-card__price-new { font-size: 17px; }
  .sh-card__price-old { font-size: 11px; }
  .sh-card__price-row { margin-bottom: 10px; }
  .sh-card__btn { font-size: 11px; padding: 9px 6px; }
  .sh-badge-discount { font-size: 9px; padding: 4px 8px; top: 8px; left: 8px; }
  .sh-badge-new { top: 8px; right: 8px; font-size: 9px; padding: 4px 8px; }

  .pd-slider-slide { height: 380px; }
}

@media (max-width: 480px) {
  .hn-hero__cta-row { flex-direction: column; align-items: flex-start; gap: 14px; }
  .hn-btn-primary { width: 100%; justify-content: center; padding: 15px 24px; }

  .hn-promo-grid { gap: 12px; }
  .hn-promo-card { min-height: 200px; padding: 20px; }

  .hn-strip__title { font-size: 2rem; }
  .hn-strip__sub { font-size: 13px; margin-bottom: 28px; }

  .hn-trust__inner { grid-template-columns: 1fr; gap: 16px; }

  .hn-nl__form { flex-direction: column; }

  .sh-grid { gap: 10px; }

  .hn-hero__headline { font-size: 2.1rem; line-height: 1.15; max-width: 100%; }

  .pd-info__price-row { flex-wrap: wrap; }
  .pd-info__stock { margin-left: 0; }
  .pd-spec-row { grid-template-columns: 110px 1fr; padding: 13px 16px; font-size: 12.5px; }
  .pd-tab-btn { font-size: 11px; margin-right: 20px; padding: 12px 4px; }
}
