*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html, body { overflow-x: hidden; max-width: 100%; scroll-behavior: smooth; }
  :root { --orange: #FF6B2B; --yellow: #FFD93D; --dark: #1A1A2E; --radius: 20px; }
  body { font-family: 'Heebo', sans-serif; background: #fafaf8; color: #333; }

  /* ─── NAV ─── */
  nav { display: flex; align-items: center; justify-content: space-between; padding: 12px 20px; background: white; position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 12px rgba(0,0,0,0.08); }
  .logo { font-size: 22px; font-weight: 900; color: var(--orange); text-decoration: none; }
  .logo span { color: var(--dark); }
  .nav-right { display: flex; align-items: center; gap: 12px; }
  .nav-cart { background: var(--orange); color: white; border: none; border-radius: 50px; padding: 8px 14px; font-family: 'Heebo', sans-serif; font-size: 13px; font-weight: 700; cursor: pointer; transition: transform .15s; }
  .nav-cart:hover { transform: scale(1.05); }
  .nav-cart-wrap { position: relative; display: inline-block; }
  .cart-badge { background: #ff4444; color: white; font-size: 10px; font-weight: 800; width: 18px; height: 18px; border-radius: 50%; display: none; align-items: center; justify-content: center; position: absolute; top: -6px; left: -6px; animation: badgePop .3s cubic-bezier(.34,1.56,.64,1); }
  @keyframes badgePop { from { transform: scale(0); } to { transform: scale(1); } }

  /* ─── HAMBURGER ─── */
  .hamburger { background: none; border: none; cursor: pointer; padding: 6px; display: flex; flex-direction: column; gap: 5px; }
  .hamburger span { display: block; width: 24px; height: 2.5px; background: var(--dark); border-radius: 3px; transition: all 0.35s cubic-bezier(0.4,0,0.2,1); transform-origin: center; }
  .hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); background: white; }
  .hamburger.open span:nth-child(2) { transform: scaleX(0); opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); background: white; }

  /* ─── SIDE MENU ─── */
  .menu-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.45); z-index: 199; opacity: 0; pointer-events: none; transition: opacity 0.35s; backdrop-filter: blur(3px); }
  .menu-overlay.open { opacity: 1; pointer-events: all; }
  .mega-menu {
    position: fixed; top: 0; right: -100%; width: 80%; max-width: 300px; height: 100vh;
    background: white; z-index: 200;
    transition: right 0.38s cubic-bezier(0.4,0,0.2,1);
    display: flex; flex-direction: column; overflow: hidden;
    box-shadow: -8px 0 40px rgba(0,0,0,0.15);
  }
  .mega-menu.open { right: 0; }
  .mega-top { display: flex; align-items: center; justify-content: space-between; padding: 20px 22px 16px; border-bottom: 1px solid #f0f0f0; }
  .mega-logo { font-size: 20px; font-weight: 900; color: var(--orange); text-decoration: none; }
  .mega-logo span { color: var(--dark); }
  .mega-close { background: #f5f5f5; border: none; border-radius: 50%; width: 36px; height: 36px; font-size: 16px; cursor: pointer; color: #666; display: flex; align-items: center; justify-content: center; transition: background .2s, transform .2s, color .2s; }
  .mega-close:hover { background: #ffe5dc; color: var(--orange); transform: rotate(90deg); }
  .mega-body { flex: 1; padding: 16px 14px; display: flex; flex-direction: column; gap: 4px; overflow-y: auto; }
  .mega-nav-link {
    display: flex; align-items: center; gap: 14px;
    padding: 13px 14px; border-radius: 14px;
    text-decoration: none; font-size: 15px; font-weight: 700; color: var(--dark);
    transition: background .2s, color .2s, transform .15s;
    opacity: 0; transform: translateX(18px);
    transition: background .2s, color .2s, transform .15s, opacity .35s ease;
  }
  .mega-menu.open .mega-nav-link { opacity: 1; transform: translateX(0); }
  .mega-menu.open .mega-nav-link:nth-child(1) { transition-delay: 0.06s; }
  .mega-menu.open .mega-nav-link:nth-child(2) { transition-delay: 0.11s; }
  .mega-menu.open .mega-nav-link:nth-child(3) { transition-delay: 0.16s; }
  .mega-menu.open .mega-nav-link:nth-child(4) { transition-delay: 0.21s; }
  .mega-menu.open .mega-nav-link:nth-child(5) { transition-delay: 0.26s; }
  .mega-menu.open .mega-nav-link:nth-child(6) { transition-delay: 0.31s; }
  .mega-nav-link:hover { background: #fff5f0; color: var(--orange); transform: translateX(-4px); }
  .mega-nav-icon { width: 40px; height: 40px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; transition: transform .2s; }
  .mega-nav-link:hover .mega-nav-icon { transform: scale(1.15); }
  .mega-nav-text { flex: 1; }
  .mega-nav-title { display: block; font-size: 14px; font-weight: 800; }
  .mega-nav-sub { display: block; font-size: 11px; color: #aaa; font-weight: 500; margin-top: 1px; }
  .mega-nav-link:hover .mega-nav-sub { color: var(--orange); }
  .mega-nav-arrow { font-size: 12px; color: #ccc; transition: color .2s; }
  .mega-nav-link:hover .mega-nav-arrow { color: var(--orange); }
  .mega-divider { height: 1px; background: #f0f0f0; margin: 8px 0; }
  .mega-footer { padding: 16px 14px 24px; border-top: 1px solid #f0f0f0; }
  .mega-cart-btn {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    width: 100%; padding: 14px; background: linear-gradient(135deg, var(--orange), #e84c00);
    color: white; font-family: 'Heebo', sans-serif; font-size: 15px; font-weight: 800;
    border: none; border-radius: 14px; cursor: pointer;
    box-shadow: 0 4px 16px rgba(255,107,43,0.35); position: relative; overflow: hidden;
    transition: transform .2s, box-shadow .2s;
    opacity: 0; transform: translateY(10px);
    transition: opacity .35s .32s ease, transform .35s .32s ease, box-shadow .2s;
  }
  .mega-menu.open .mega-cart-btn { opacity: 1; transform: translateY(0); }
  .mega-cart-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,107,43,.55); }
  .mega-cart-btn::after { content:''; position:absolute; top:0; left:-100%; width:60%; height:100%; background:linear-gradient(90deg,transparent,rgba(255,255,255,0.2),transparent); animation:shine 2.5s infinite; }

  /* ─── HERO ─── */
  .hero { position: relative; overflow: hidden; height: 360px; }
  .hero-bg {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, #1a0a00 0%, #3d1500 45%, #1A1A2E 100%);
    position: absolute; inset: 0;
    animation: heroZoom 14s ease-in-out infinite alternate;
    transform-origin: center center;
  }
  @keyframes heroZoom { from { transform: scale(1); } to { transform: scale(1.12); } }
  .hero-particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
  .hero-particles span {
    position: absolute; width: 6px; height: 6px;
    border-radius: 50%; background: var(--orange); opacity: 0;
    animation: particleFly 5s ease-in infinite;
  }
  .hero-particles span:nth-child(1)  { left: 10%; animation-delay: 0s;   animation-duration: 5s;  width: 4px; height: 4px; }
  .hero-particles span:nth-child(2)  { left: 25%; animation-delay: 0.8s; animation-duration: 6s;  background: var(--yellow); width: 5px; height: 5px; }
  .hero-particles span:nth-child(3)  { left: 40%; animation-delay: 1.5s; animation-duration: 4.5s; width: 3px; height: 3px; }
  .hero-particles span:nth-child(4)  { left: 60%; animation-delay: 2.2s; animation-duration: 5.5s; background: white; width: 4px; height: 4px; }
  .hero-particles span:nth-child(5)  { left: 75%; animation-delay: 0.4s; animation-duration: 6.5s; background: var(--yellow); width: 6px; height: 6px; }
  .hero-particles span:nth-child(6)  { left: 88%; animation-delay: 1.2s; animation-duration: 5s;  width: 3px; height: 3px; }
  .hero-particles span:nth-child(7)  { left: 52%; animation-delay: 3s;   animation-duration: 4s;  background: var(--yellow); width: 4px; height: 4px; }
  .hero-particles span:nth-child(8)  { left: 33%; animation-delay: 2.7s; animation-duration: 6s;  width: 5px; height: 5px; }
  @keyframes particleFly {
    0%   { bottom: -10px; opacity: 0; transform: translateX(0); }
    20%  { opacity: 0.8; }
    80%  { opacity: 0.4; }
    100% { bottom: 110%; opacity: 0; transform: translateX(20px); }
  }
  .hero-emoji-bg { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 130px; opacity: 0.12; filter: blur(3px); animation: heroZoom 14s ease-in-out infinite alternate; }
  .hero-overlay { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 20px; text-align: center; }
  .hero-overlay h1 { font-size: clamp(30px, 8vw, 44px); font-weight: 900; color: white; line-height: 1.15; margin-bottom: 10px; text-shadow: 0 2px 20px rgba(0,0,0,0.5); animation: fadeUp .8s ease both; }
  .hero-overlay h1 span { color: var(--yellow); }
  .hero-overlay p { font-size: 15px; color: rgba(255,255,255,0.9); margin-bottom: 22px; animation: fadeUp 1s .15s ease both; }
  .btn-hero { background: linear-gradient(135deg, var(--orange), #e84c00); color: white; padding: 13px 30px; border-radius: 50px; font-family: 'Heebo', sans-serif; font-size: 15px; font-weight: 800; text-decoration: none; box-shadow: 0 6px 20px rgba(255,107,43,0.5); animation: fadeUp 1.1s .3s ease both; position: relative; overflow: hidden; display: inline-block; transition: transform .2s, box-shadow .2s; }
  .btn-hero:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 12px 32px rgba(255,107,43,0.6); }
  .btn-hero::after { content:''; position:absolute; top:0; left:-100%; width:60%; height:100%; background:linear-gradient(90deg,transparent,rgba(255,255,255,0.25),transparent); animation:shine 2.5s infinite; }
  @keyframes shine { to { left: 150%; } }
  @keyframes fadeUp { from { opacity:0; transform:translateY(22px); } to { opacity:1; transform:translateY(0); } }

  /* ─── STRIP ─── */
  .strip { background: var(--yellow); padding: 11px 20px; text-align: center; font-size: 14px; font-weight: 800; color: var(--dark); }
  .strip-bounce { animation: bounce 1.5s infinite; display: inline-block; }
  @keyframes bounce { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-4px); } }

  /* ─── PERSUASION SECTION ─── */
  .persuasion { position: relative; height: 420px; overflow: hidden; margin: 0; }
  .persuasion-bg {
    position: absolute; inset: 0;
    background: linear-gradient(160deg, #0d0d1a 0%, #1a1a0d 40%, #1a0a00 70%, #0d1a2e 100%);
    animation: bgZoom 16s ease-in-out infinite alternate;
    transform-origin: 60% 50%;
  }
  @keyframes bgZoom { from { transform: scale(1); } to { transform: scale(1.15); } }
  .persuasion-scene {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 160px;
    animation: sceneFloat 6s ease-in-out infinite, bgZoom 16s ease-in-out infinite alternate;
    opacity: 0.13; filter: blur(4px);
    transform-origin: 60% 50%;
  }
  .persuasion-glow {
    position: absolute;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,107,43,0.35) 0%, transparent 70%);
    top: 50%; left: 50%; transform: translate(-50%,-50%);
    animation: glowPulse 3s ease-in-out infinite;
    pointer-events: none;
  }
  @keyframes glowPulse { 0%,100% { opacity:.6; transform:translate(-50%,-50%) scale(1); } 50% { opacity:1; transform:translate(-50%,-50%) scale(1.2); } }
  @keyframes sceneFloat { 0%,100% { margin-top:0; } 50% { margin-top:-14px; } }
  .persuasion-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(10,10,10,.85) 0%, rgba(10,10,10,.3) 60%, transparent 100%);
    display: flex; flex-direction: column; align-items: center; justify-content: flex-end;
    padding: 32px 24px; text-align: center;
  }
  .persuasion-tag {
    display: inline-block; background: var(--orange); color: white;
    font-size: 11px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase;
    padding: 5px 14px; border-radius: 50px; margin-bottom: 14px;
    animation: persuadeTagPop 0.6s .2s cubic-bezier(.34,1.56,.64,1) both;
  }
  .persuasion-overlay h2 {
    font-size: clamp(22px, 6vw, 34px); font-weight: 900; color: white;
    line-height: 1.2; margin-bottom: 12px; text-shadow: 0 2px 20px rgba(0,0,0,0.6);
    animation: persuadeTagPop 0.6s .35s cubic-bezier(.34,1.56,.64,1) both;
  }
  .persuasion-overlay h2 span { color: var(--yellow); }
  .persuasion-chips {
    display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 20px;
    animation: persuadeTagPop 0.6s .5s cubic-bezier(.34,1.56,.64,1) both;
  }
  .persuasion-chip {
    background: rgba(255,255,255,0.13); backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.2); color: white;
    font-size: 12px; font-weight: 700; padding: 6px 14px; border-radius: 50px;
    display: flex; align-items: center; gap: 6px;
  }
  .btn-persuade {
    background: linear-gradient(135deg, var(--orange), #e84c00);
    color: white; padding: 13px 32px; border-radius: 50px;
    font-family: 'Heebo', sans-serif; font-size: 15px; font-weight: 800;
    text-decoration: none; border: none; cursor: pointer;
    box-shadow: 0 8px 28px rgba(255,107,43,0.55);
    position: relative; overflow: hidden;
    animation: persuadeTagPop 0.6s .65s cubic-bezier(.34,1.56,.64,1) both;
    transition: transform .2s, box-shadow .2s;
  }
  .btn-persuade:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 14px 36px rgba(255,107,43,0.7); }
  .btn-persuade::after { content:''; position:absolute; top:0; left:-100%; width:60%; height:100%; background:linear-gradient(90deg,transparent,rgba(255,255,255,0.25),transparent); animation:shine 2.2s infinite; }
  @keyframes persuadeTagPop { from { opacity:0; transform:translateY(18px) scale(.95); } to { opacity:1; transform:translateY(0) scale(1); } }

  /* floating rings on persuasion */
  .persuasion-ring {
    position: absolute; border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.07);
    pointer-events: none;
    animation: ringExpand 5s ease-out infinite;
  }
  .persuasion-ring:nth-child(1) { width: 180px; height: 180px; top:50%; left:50%; margin:-90px 0 0 -90px; animation-delay:0s; }
  .persuasion-ring:nth-child(2) { width: 280px; height: 280px; top:50%; left:50%; margin:-140px 0 0 -140px; animation-delay:1.2s; }
  .persuasion-ring:nth-child(3) { width: 380px; height: 380px; top:50%; left:50%; margin:-190px 0 0 -190px; animation-delay:2.4s; }
  @keyframes ringExpand { 0% { opacity:.5; transform:scale(.8); } 100% { opacity:0; transform:scale(1.4); } }

  /* ─── EMOTIONAL ─── */
  .emotional { padding: 36px 20px; }
  .emotional-label { font-size: 11px; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
  .emotional h2 { font-size: 26px; font-weight: 900; color: var(--dark); line-height: 1.3; margin-bottom: 16px; }
  .emotional h2 span { color: var(--orange); }
  .emotional-text { font-size: 15px; line-height: 1.9; color: #555; margin-bottom: 14px; }
  .emotional-text strong { color: var(--dark); font-weight: 800; }
  .emotional-quote { background: linear-gradient(135deg, #fff8f0, #fff3e0); border-right: 4px solid var(--orange); border-radius: 0 12px 12px 0; padding: 14px 16px; margin: 20px 0; font-size: 15px; font-style: italic; color: #444; line-height: 1.7; }
  .emotional-features { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 20px 0; }
  .efeat { background: white; border-radius: 12px; padding: 12px; display: flex; align-items: center; gap: 10px; box-shadow: 0 2px 8px rgba(0,0,0,0.06); font-size: 13px; font-weight: 700; color: var(--dark); transition: transform .25s, box-shadow .25s; }
  .efeat:hover { transform: translateY(-4px) scale(1.03); box-shadow: 0 8px 24px rgba(255,107,43,.15); }
  .efeat-icon { font-size: 22px; }

  /* ─── STATS BAR ─── */
  .stats-bar { display: grid; grid-template-columns: repeat(3, 1fr); background: var(--dark); padding: 22px 20px; gap: 0; }
  .stat-item { text-align: center; position: relative; }
  .stat-item + .stat-item::before { content:''; position:absolute; right:0; top:20%; height:60%; width:1px; background:rgba(255,255,255,.15); }
  .stat-num { font-size: 26px; font-weight: 900; color: var(--yellow); display: block; }
  .stat-lbl { font-size: 11px; color: rgba(255,255,255,0.6); font-weight: 600; }

  /* ─── FEATURED ─── */
  .featured-title { text-align: center; padding: 10px 20px 4px; }
  .featured-title h2 { font-size: 22px; font-weight: 900; color: var(--dark); }
  .featured-title p { font-size: 13px; color: #888; margin-top: 4px; }
  .divider { width: 40px; height: 3px; background: var(--orange); border-radius: 4px; margin: 8px auto; }
  .featured { padding: 16px; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .fcard { background: white; border-radius: 16px; overflow: hidden; box-shadow: 0 4px 16px rgba(0,0,0,0.07); text-decoration: none; color: inherit; transition: transform 0.25s cubic-bezier(.34,1.56,.64,1), box-shadow .25s; position: relative; display: block; cursor: pointer; }
  .fcard:hover { transform: translateY(-6px) scale(1.02); box-shadow: 0 14px 36px rgba(255,107,43,.18); }
  .fcard-img { width: 100%; aspect-ratio: 1; display: flex; align-items: center; justify-content: center; font-size: 56px; transition: transform .5s ease; }
  .fcard:hover .fcard-img { transform: scale(1.09); }
  .fcard-body { padding: 10px; }
  .fcard-name { font-size: 13px; font-weight: 800; color: var(--dark); margin-bottom: 4px; line-height: 1.3; }
  .fcard-price { font-size: 16px; font-weight: 900; color: var(--orange); }
  .fcard-was { font-size: 11px; color: #bbb; text-decoration: line-through; }
  .fcard-btn { display: block; width: 100%; margin-top: 8px; padding: 8px; background: var(--orange); color: white; font-family: 'Heebo', sans-serif; font-size: 13px; font-weight: 800; border: none; border-radius: 8px; text-align: center; cursor: pointer; transition: background .2s, transform .15s; }
  .fcard-btn:hover { background: #e84c00; transform: scale(1.03); }
  .fcard-badge { position: absolute; top: 8px; right: 8px; font-size: 10px; font-weight: 800; padding: 3px 8px; border-radius: 50px; color: white; }
  .bg-orange { background: var(--orange); }
  .bg-purple { background: #7c3aed; }
  .bg-green { background: #16a34a; }
  .bg-blue { background: #0ea5e9; }
  .view-all { display: block; margin: 4px 16px 32px; padding: 14px; background: white; border: 2.5px solid var(--orange); color: var(--orange); font-family: 'Heebo', sans-serif; font-size: 15px; font-weight: 800; border-radius: var(--radius); text-align: center; text-decoration: none; transition: background .2s, color .2s; }
  .view-all:hover { background: var(--orange); color: white; }

  /* ─── TRUST ─── */
  .trust { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 0 16px 32px; }
  .trust-item { background: white; border-radius: 12px; padding: 14px 10px; text-align: center; box-shadow: 0 2px 8px rgba(0,0,0,0.05); transition: transform .25s, box-shadow .25s; }
  .trust-item:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,.1); }
  .trust-icon { font-size: 24px; margin-bottom: 4px; }
  .trust-title { font-size: 12px; font-weight: 800; color: var(--dark); }
  .trust-sub { font-size: 11px; color: #999; }

  /* ─── FAQ ─── */
  .faq { padding: 10px 16px 32px; }
  .faq-title { text-align: center; margin-bottom: 20px; }
  .faq-title h2 { font-size: 22px; font-weight: 900; color: var(--dark); }
  .faq-title p { font-size: 13px; color: #888; margin-top: 4px; }
  .faq-item { background: white; border-radius: 14px; margin-bottom: 10px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.05); transition: box-shadow .2s; }
  .faq-item:hover { box-shadow: 0 4px 18px rgba(255,107,43,.12); }
  .faq-q { display: flex; align-items: center; justify-content: space-between; padding: 16px; cursor: pointer; font-size: 14px; font-weight: 800; color: var(--dark); gap: 10px; border: none; background: transparent; width: 100%; text-align: right; font-family: 'Heebo', sans-serif; }
  .faq-q:hover { background: #fff8f5; }
  .faq-icon { font-size: 18px; transition: transform 0.3s; flex-shrink: 0; color: var(--orange); }
  .faq-item.open .faq-icon { transform: rotate(45deg); }
  .faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.3s ease; font-size: 14px; color: #666; line-height: 1.7; padding: 0 16px; }
  .faq-item.open .faq-a { max-height: 200px; padding: 0 16px 16px; }

  /* ─── CTA BOTTOM ─── */
  .cta-bottom-global { background: linear-gradient(135deg, var(--dark), #2d1b69); padding: 40px 20px; text-align: center; position: relative; overflow: hidden; }
  .cta-bottom-global::before { content:'🐾'; position:absolute; font-size:180px; opacity:.05; top:50%; left:50%; transform:translate(-50%,-50%); pointer-events:none; animation:ctaRotate 20s linear infinite; }
  @keyframes ctaRotate { from { transform:translate(-50%,-50%) rotate(0deg); } to { transform:translate(-50%,-50%) rotate(360deg); } }
  .cta-bottom-global h2 { font-size: 22px; font-weight: 900; color: white; margin-bottom: 8px; position:relative; }
  .cta-bottom-global p { font-size: 14px; color: rgba(255,255,255,0.75); margin-bottom: 20px; line-height: 1.8; position:relative; }
  .btn-cta-global { display: inline-block; background: linear-gradient(135deg, var(--orange), #e84c00); color: white; padding: 14px 32px; border-radius: 50px; font-family: 'Heebo', sans-serif; font-size: 15px; font-weight: 900; text-decoration: none; box-shadow: 0 6px 20px rgba(255,107,43,0.4); position:relative; overflow:hidden; transition: transform .2s, box-shadow .2s; }
  .btn-cta-global:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 14px 36px rgba(255,107,43,.6); }
  .btn-cta-global::after { content:''; position:absolute; top:0; left:-100%; width:60%; height:100%; background:linear-gradient(90deg,transparent,rgba(255,255,255,0.25),transparent); animation:shine 2.5s infinite; }

  /* ─── FOOTER ─── */
  footer { background: var(--dark); padding: 20px; text-align: center; }
  .footer-logo { font-size: 18px; font-weight: 900; color: var(--orange); margin-bottom: 6px; }
  .footer-logo span { color: white; }
  .footer-text { font-size: 11px; color: rgba(255,255,255,0.35); }

  /* ─── FLOATING CART ─── */
  .float-cart {
    position: fixed; bottom: 24px; left: 24px; z-index: 150;
    background: linear-gradient(135deg, var(--orange), #e84c00);
    color: white; border: none; border-radius: 50px;
    padding: 14px 22px; font-family: 'Heebo', sans-serif;
    font-size: 15px; font-weight: 800; cursor: pointer;
    box-shadow: 0 8px 28px rgba(255,107,43,0.55);
    display: flex; align-items: center; gap: 8px;
    transition: transform .2s cubic-bezier(.34,1.56,.64,1), box-shadow .2s;
    animation: floatBtn 3s ease-in-out infinite;
  }
  .float-cart:hover { transform: translateY(-4px) scale(1.06); box-shadow: 0 16px 40px rgba(255,107,43,.7); }
  @keyframes floatBtn { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-5px); } }
  .float-cart:hover { animation: none; }
  .float-cart-count {
    background: white; color: var(--orange);
    font-size: 11px; font-weight: 900;
    width: 22px; height: 22px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: transform .3s cubic-bezier(.34,1.56,.64,1);
  }
  .float-cart-count.bump { animation: countBump .4s cubic-bezier(.34,1.56,.64,1); }
  @keyframes countBump { 0%,100% { transform:scale(1); } 50% { transform:scale(1.5); } }
  .float-cart-pulse {
    position: absolute; inset: 0; border-radius: 50px;
    border: 2px solid rgba(255,107,43,.5);
    animation: floatPulse 2s ease-out infinite;
    pointer-events: none;
  }
  @keyframes floatPulse { 0% { transform:scale(1); opacity:.8; } 100% { transform:scale(1.35); opacity:0; } }

  /* ─── CART SIDEBAR ─── */
  .cart-sidebar { position: fixed; top: 0; left: -100%; width: 100%; max-width: 340px; height: 100vh; background: white; z-index: 300; box-shadow: 4px 0 30px rgba(0,0,0,0.2); transition: left 0.35s cubic-bezier(0.4,0,0.2,1); display: flex; flex-direction: column; }
  .cart-sidebar.open { left: 0; }
  .cart-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 299; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
  .cart-overlay.open { opacity: 1; pointer-events: all; }
  .cart-header { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; border-bottom: 1px solid #f0f0f0; }
  .cart-header h3 { font-size: 18px; font-weight: 900; color: var(--dark); }
  .cart-close { background: none; border: none; font-size: 24px; cursor: pointer; color: #999; transition: color .2s; }
  .cart-close:hover { color: var(--orange); }
  .cart-items { flex: 1; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 12px; }
  .cart-empty { text-align: center; padding: 40px 20px; color: #aaa; }
  .cart-empty-icon { font-size: 48px; margin-bottom: 12px; }
  .cart-empty p { font-size: 14px; line-height: 1.6; }
  .cart-item { display: flex; gap: 12px; background: #fafaf8; border-radius: 14px; padding: 12px; position: relative; animation: itemSlideIn .35s ease both; }
  @keyframes itemSlideIn { from { opacity:0; transform:translateX(-16px); } to { opacity:1; transform:translateX(0); } }
  .cart-item-img { width: 64px; height: 64px; border-radius: 10px; flex-shrink: 0; background: #f0f0f0; display: flex; align-items: center; justify-content: center; font-size: 2rem; }
  .cart-item-info { flex: 1; min-width: 0; }
  .cart-item-name { font-size: 13px; font-weight: 800; color: var(--dark); margin-bottom: 2px; line-height: 1.3; }
  .cart-item-variant { font-size: 11px; color: #999; margin-bottom: 6px; }
  .cart-item-bottom { display: flex; align-items: center; justify-content: space-between; }
  .cart-item-price { font-size: 15px; font-weight: 900; color: var(--orange); }
  .cart-item-qty { display: flex; align-items: center; gap: 6px; }
  .cart-qty-btn { width: 26px; height: 26px; border-radius: 50%; border: 1.5px solid #eee; background: white; font-size: 14px; font-weight: 700; cursor: pointer; color: var(--orange); display: flex; align-items: center; justify-content: center; transition: background .15s; }
  .cart-qty-btn:hover { background: #fff5f0; }
  .cart-qty-num { font-size: 13px; font-weight: 800; color: var(--dark); min-width: 16px; text-align: center; }
  .cart-item-remove { position: absolute; top: 8px; left: 8px; width: 24px; height: 24px; border-radius: 50%; background: #ffe5e5; border: none; font-size: 13px; font-weight: 900; cursor: pointer; color: #cc0000; display: flex; align-items: center; justify-content: center; transition: background .2s, transform .15s; line-height: 1; }
  .cart-item-remove:hover { background: #ff4444; color: white; transform: scale(1.15); }
  .cart-footer { padding: 16px 20px; border-top: 1px solid #f0f0f0; }
  .cart-discount-note { background: #fff9e6; border: 1px solid #FFD93D; border-radius: 10px; padding: 8px 12px; font-size: 12px; font-weight: 700; color: #b45309; margin-bottom: 12px; text-align: center; display: none; }
  .cart-discount-note.show { display: block; }
  .cart-subtotal { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
  .cart-subtotal-label { font-size: 14px; font-weight: 700; color: #666; }
  .cart-subtotal-price { font-size: 22px; font-weight: 900; color: var(--dark); }
  .btn-checkout { display: block; width: 100%; padding: 15px; background: linear-gradient(135deg, var(--orange), #e84c00); color: white; font-family: 'Heebo', sans-serif; font-size: 16px; font-weight: 800; border: none; border-radius: 14px; text-align: center; cursor: pointer; box-shadow: 0 4px 16px rgba(255,107,43,0.35); position: relative; overflow: hidden; transition: transform .2s, box-shadow .2s; }
  .btn-checkout:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(255,107,43,.5); }
  .btn-checkout::after { content:''; position:absolute; top:0; left:-100%; width:60%; height:100%; background:linear-gradient(90deg,transparent,rgba(255,255,255,0.2),transparent); animation:shine 2.5s infinite; }
  .btn-checkout:disabled { background: #ccc; box-shadow: none; cursor: not-allowed; }
  .btn-checkout:disabled::after { display: none; }
  .cart-continue-link { display: block; text-align: center; font-size: 13px; color: #aaa; margin-top: 10px; font-weight: 600; cursor: pointer; }
  .cart-continue-link:hover { color: var(--orange); }

  /* ─── TOAST ─── */
  .cart-toast-new { position: fixed; bottom: 88px; left: 50%; transform: translateX(-50%) translateY(20px); background: var(--dark); color: white; padding: 12px 24px; border-radius: 50px; font-size: 14px; font-weight: 700; z-index: 400; opacity: 0; transition: all 0.4s cubic-bezier(.34,1.56,.64,1); white-space: nowrap; box-shadow: 0 8px 30px rgba(0,0,0,0.25); pointer-events: none; }
  .cart-toast-new.show { opacity: 1; transform: translateX(-50%) translateY(0); }

  /* ─── TICKER ─── */
  .ticker-wrap { background: var(--dark); overflow: hidden; padding: 10px 0; direction: ltr; }
  .ticker-track { display: flex; width: max-content; animation: tickerScroll 32s linear infinite; }
  .ticker-track:hover { animation-play-state: paused; }
  @keyframes tickerScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
  .ticker-item { display: flex; align-items: center; gap: 10px; padding: 0 28px; font-size: 13px; font-weight: 700; color: white; white-space: nowrap; direction: rtl; }
  .ticker-dot { color: var(--orange); font-size: 16px; }

  /* ─── REVEAL ─── */
  .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-left { opacity: 0; transform: translateX(-28px); transition: opacity 0.65s ease, transform 0.65s ease; }
  .reveal-left.visible { opacity: 1; transform: translateX(0); }
  .reveal-scale { opacity: 0; transform: scale(.9); transition: opacity 0.65s ease, transform 0.65s ease; }
  .reveal-scale.visible { opacity: 1; transform: scale(1); }

/* ════════════════════════════════════════════════
   ADDITIONS — product pages, images, WhatsApp, a11y
   ════════════════════════════════════════════════ */

/* ─── ACCESSIBILITY ─── */
*:focus-visible { outline: 3px solid #1565ff; outline-offset: 2px; border-radius: 4px; }
.skip-link {
  position: absolute; right: 8px; top: -60px; z-index: 500;
  background: var(--dark); color: #fff; padding: 10px 18px; border-radius: 10px;
  font-weight: 800; font-size: 14px; text-decoration: none; transition: top .2s;
}
.skip-link:focus { top: 8px; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important; scroll-behavior: auto !important;
  }
}

/* ─── REAL IMAGES IN CARDS & CART ─── */
.fcard-img { overflow: hidden; }
.fcard-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.fcard:hover .fcard-img img { transform: scale(1.09); }
.cart-item-img { overflow: hidden; }
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ─── WHATSAPP FLOAT ─── */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 150;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 28px rgba(37,211,102,.5); text-decoration: none;
  transition: transform .2s cubic-bezier(.34,1.56,.64,1), box-shadow .2s;
  animation: floatBtn 3s ease-in-out infinite;
}
.wa-float:hover { transform: translateY(-4px) scale(1.08); box-shadow: 0 16px 40px rgba(37,211,102,.65); animation: none; }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }

/* ─── BREADCRUMB / BACK ─── */
.pdp-back { display: inline-flex; align-items: center; gap: 6px; margin: 16px 16px 0; font-size: 13px; font-weight: 700; color: #888; text-decoration: none; }
.pdp-back:hover { color: var(--orange); }

/* ─── PRODUCT DETAIL PAGE ─── */
.pdp { max-width: 1000px; margin: 0 auto; padding: 8px 16px 40px; }
@media (min-width: 760px){ .pdp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; } }
.pdp-gallery { margin-top: 12px; }
.pdp-main {
  width: 100%; aspect-ratio: 1; border-radius: var(--radius); overflow: hidden;
  background: #fff; box-shadow: 0 6px 24px rgba(0,0,0,.08);
  display: flex; align-items: center; justify-content: center;
}
.pdp-main img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pdp-thumbs {
  display: flex; gap: 10px; margin-top: 12px;
  flex-wrap: nowrap; overflow-x: auto; overflow-y: hidden;
  padding-bottom: 8px; scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch; scrollbar-width: thin;
  scrollbar-color: var(--orange) #f0f0f0;
}
.pdp-thumbs::-webkit-scrollbar { height: 6px; }
.pdp-thumbs::-webkit-scrollbar-track { background: #f0f0f0; border-radius: 50px; }
.pdp-thumbs::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 50px; }
.pdp-thumb { scroll-snap-align: start; }
.pdp-thumb {
  width: 64px; height: 64px; border-radius: 12px; overflow: hidden; cursor: pointer;
  border: 2.5px solid transparent; background: #fff; padding: 0; flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,.06); transition: border-color .2s, transform .15s;
}
.pdp-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pdp-thumb.active { border-color: var(--orange); }
.pdp-thumb:hover { transform: translateY(-2px); }

.pdp-info { margin-top: 18px; }
.pdp-badge { display: inline-block; font-size: 11px; font-weight: 800; padding: 4px 12px; border-radius: 50px; color: #fff; margin-bottom: 10px; }
.pdp-title { font-size: 26px; font-weight: 900; color: var(--dark); line-height: 1.25; margin-bottom: 8px; }
.pdp-rating { font-size: 13px; color: #888; font-weight: 600; margin-bottom: 14px; }
.pdp-rating .stars { color: #FFB400; letter-spacing: 1px; }
.pdp-price-row { display: flex; align-items: baseline; gap: 10px; margin-bottom: 18px; }
.pdp-price { font-size: 30px; font-weight: 900; color: var(--orange); }
.pdp-was { font-size: 16px; color: #bbb; text-decoration: line-through; }
.pdp-save { font-size: 12px; font-weight: 800; color: #16a34a; background: #eafaef; padding: 3px 10px; border-radius: 50px; }
.pdp-desc { font-size: 15.5px; line-height: 1.9; color: #555; margin-bottom: 22px; }

/* options */
.pdp-opt { margin-bottom: 18px; }
.pdp-opt-label { font-size: 13px; font-weight: 800; color: var(--dark); margin-bottom: 8px; display: block; }
.pdp-opt-label span { color: #888; font-weight: 600; }
.pdp-choices { display: flex; gap: 8px; flex-wrap: wrap; }
.pdp-chip {
  border: 2px solid #eee; background: #fff; border-radius: 12px;
  padding: 9px 16px; font-family: 'Heebo', sans-serif; font-size: 13px; font-weight: 700;
  color: var(--dark); cursor: pointer; transition: border-color .15s, background .15s, color .15s;
  display: flex; align-items: center; gap: 8px;
}
.pdp-chip:hover { border-color: var(--orange); }
.pdp-chip.active { border-color: var(--orange); background: #fff5f0; color: var(--orange); }
.pdp-dot { width: 16px; height: 16px; border-radius: 50%; border: 1px solid rgba(0,0,0,.12); flex-shrink: 0; }

/* quantity */
.pdp-qty-row { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.pdp-qty { display: flex; align-items: center; gap: 4px; border: 2px solid #eee; border-radius: 12px; padding: 4px; }
.pdp-qty button { width: 34px; height: 34px; border: none; background: #fff; border-radius: 8px; font-size: 18px; font-weight: 800; color: var(--orange); cursor: pointer; transition: background .15s; }
.pdp-qty button:hover { background: #fff5f0; }
.pdp-qty span { min-width: 30px; text-align: center; font-size: 16px; font-weight: 800; color: var(--dark); }

/* actions */
.pdp-actions { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.pdp-add {
  width: 100%; padding: 15px; background: #fff; border: 2.5px solid var(--orange);
  color: var(--orange); font-family: 'Heebo', sans-serif; font-size: 16px; font-weight: 800;
  border-radius: 14px; cursor: pointer; transition: background .2s, color .2s;
}
.pdp-add:hover { background: #fff5f0; }
.pdp-buy {
  width: 100%; padding: 16px; background: linear-gradient(135deg, var(--orange), #e84c00);
  color: #fff; font-family: 'Heebo', sans-serif; font-size: 16px; font-weight: 800;
  border: none; border-radius: 14px; cursor: pointer; position: relative; overflow: hidden;
  box-shadow: 0 4px 16px rgba(255,107,43,.35); transition: transform .2s, box-shadow .2s;
}
.pdp-buy:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(255,107,43,.5); }
.pdp-buy::after { content:''; position:absolute; top:0; left:-100%; width:60%; height:100%; background:linear-gradient(90deg,transparent,rgba(255,255,255,.25),transparent); animation:shine 2.5s infinite; }

/* trust row on pdp */
.pdp-trust { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.pdp-trust .t { display: flex; align-items: center; gap: 10px; background: #fafaf8; border-radius: 12px; padding: 12px; font-size: 12.5px; font-weight: 700; color: var(--dark); }
.pdp-trust .t span { font-size: 20px; }

/* related */
.pdp-related { padding: 8px 16px 90px; }
.pdp-related h2 { font-size: 20px; font-weight: 900; color: var(--dark); text-align: center; margin-bottom: 4px; }

/* simple content page (accessibility statement) */
.doc { max-width: 760px; margin: 0 auto; padding: 28px 20px 80px; }
.doc h1 { font-size: 26px; font-weight: 900; color: var(--dark); margin-bottom: 16px; }
.doc h2 { font-size: 18px; font-weight: 800; color: var(--dark); margin: 22px 0 8px; }
.doc p, .doc li { font-size: 15px; line-height: 1.85; color: #555; }
.doc ul { padding-right: 20px; margin: 8px 0; }
.doc a { color: var(--orange); font-weight: 700; }

/* ─── HERO PHOTO + EMOTIONAL PHOTO (real dog images) ─── */
.hero-bg.hero-photo {
  background: linear-gradient(rgba(20,8,0,.35) 0%, rgba(26,26,46,.62) 100%), url('images/chew-dog.jpg');
  background-size: cover; background-position: center 30%; background-repeat: no-repeat;
}
.persuasion-bg.persuasion-photo {
  background: url('images/electric-dog.jpg');
  background-size: cover; background-position: center 22%; background-repeat: no-repeat;
}
.emotional-photo {
  width: 100%; display: block; border-radius: 18px; margin: 22px 0;
  aspect-ratio: 16/9; object-fit: cover; object-position: center 32%;
  box-shadow: 0 10px 30px rgba(0,0,0,.14);
}

/* ─── STOCK METER ─── */
.pdp-stock { background: #fff7f2; border: 1.5px solid #ffe0cf; border-radius: 14px; padding: 12px 14px; margin: 4px 0 20px; }
.pdp-stock-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.pdp-stock-label { font-size: 13px; font-weight: 700; color: var(--dark); }
.pdp-stock-label strong { color: var(--orange); font-weight: 900; }
.pdp-stock-pct { font-size: 12px; font-weight: 800; color: #b45309; }
.pdp-stock-bar { height: 9px; background: #ffe7d8; border-radius: 50px; overflow: hidden; }
.pdp-stock-fill { height: 100%; border-radius: 50px; transition: width 1.1s cubic-bezier(.34,1.2,.64,1);
  background: linear-gradient(90deg, #16a34a, #84cc16); position: relative; }
.pdp-stock-fill::after { content:''; position:absolute; inset:0; border-radius:50px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.5), transparent);
  animation: stockShine 2.2s linear infinite; }
@keyframes stockShine { 0% { transform: translateX(-100%); } 100% { transform: translateX(200%); } }
.pdp-stock-low  .pdp-stock-fill { background: linear-gradient(90deg, #f59e0b, #fbbf24); }
.pdp-stock-crit .pdp-stock-fill { background: linear-gradient(90deg, #dc2626, #f97316); }
.pdp-stock-crit { animation: stockPulse 1.8s ease-in-out infinite; }
@keyframes stockPulse { 0%,100% { border-color:#ffd0bd; } 50% { border-color:#ff6b2b; } }
.pdp-stock-note { font-size: 11px; color: #999; margin-top: 7px; font-weight: 600; }

/* ─── PROMO BANNER (buy 2 get 17%) ─── */
.promo-bar {
  position: relative; overflow: hidden; text-align: center;
  background: linear-gradient(110deg, #ff6b2b, #ff3d81 45%, #7c3aed);
  background-size: 220% 100%; animation: promoSlide 6s ease infinite;
  color: #fff; padding: 11px 16px; font-weight: 800; font-size: 13.5px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
@keyframes promoSlide { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
.promo-bar::after { content:''; position:absolute; top:0; left:-60%; width:45%; height:100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.45), transparent);
  transform: skewX(-20deg); animation: promoShine 3.2s ease-in-out infinite; }
@keyframes promoShine { 0% { left:-60%; } 60%,100% { left:130%; } }
.promo-bar .promo-pct { background: #fff; color: #e0245e; border-radius: 50px; padding: 1px 9px; font-weight: 900; font-size: 13px; display: inline-block; animation: promoPop 1.6s ease-in-out infinite; }
@keyframes promoPop { 0%,100% { transform: scale(1); } 50% { transform: scale(1.12); } }

/* ─── CART DISCOUNT ─── */
.cart-total-was { font-size: 14px; color: #bbb; text-decoration: line-through; font-weight: 700; margin-left: 4px; }
.cart-discount-note.disc-active { background: #eafaef; color: #16a34a; border-color: #b7ebc6; font-weight: 800; }

/* ─── PROMO CARD (inline, mid-page) ─── */
.promo-card {
  position: relative; overflow: hidden;
  margin: 8px 16px 30px; border-radius: 18px; padding: 18px 20px;
  display: flex; align-items: center; gap: 14px;
  background: linear-gradient(110deg, #ff6b2b, #ff3d81 48%, #7c3aed);
  background-size: 220% 100%; animation: promoSlide 6s ease infinite;
  box-shadow: 0 10px 30px rgba(255,61,129,.32);
}
.promo-card::after { content:''; position:absolute; top:0; left:-60%; width:45%; height:100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.4), transparent);
  transform: skewX(-20deg); animation: promoShine 3.4s ease-in-out infinite; }
.promo-card-icon { font-size: 34px; flex-shrink: 0; animation: promoPop 1.8s ease-in-out infinite; }
.promo-card-text { display: flex; flex-direction: column; gap: 3px; color: #fff; position: relative; z-index: 1; }
.promo-card-text strong { font-size: 17px; font-weight: 900; line-height: 1.25; }
.promo-card-text strong b { background: #fff; color: #e0245e; border-radius: 50px; padding: 1px 9px; }
.promo-card-text span { font-size: 12.5px; font-weight: 600; opacity: .92; }

/* ─── PROMO TICKER (infinite running bar) ─── */
.promo-ticker-wrap {
  overflow: hidden; direction: ltr; margin: 8px 0 30px; padding: 13px 0;
  background: linear-gradient(110deg, #ff6b2b, #ff3d81 48%, #7c3aed);
  background-size: 220% 100%; animation: promoSlide 6s ease infinite;
  box-shadow: 0 6px 20px rgba(255,61,129,.28);
}
.promo-ticker-track { display: flex; width: max-content; animation: tickerScroll 24s linear infinite; }
.promo-ticker-track:hover { animation-play-state: paused; }
.promo-ticker-item { display: flex; align-items: center; gap: 9px; padding: 0 24px; font-size: 14px; font-weight: 800; color: #fff; white-space: nowrap; direction: rtl; }
.promo-ticker-item b { background: #fff; color: #e0245e; border-radius: 50px; padding: 1px 9px; font-weight: 900; }

/* הצמדת הבר הרץ של ההנחה ישירות מתחת לסקשן השכנוע (ללא רווח) */
.persuasion + .promo-ticker-wrap { margin-top: 0; }
