/* AK Digital Store — Landing custom styles */
:root { color-scheme: light; }
body {
  font-family: "Plus Jakarta Sans","Tiro Devanagari Hindi",system-ui,-apple-system,sans-serif;
  background: #FFFDF7;
  color: #1C1917;
  margin: 0;
}
.font-display { font-family:"Outfit","Rozha One","Plus Jakarta Sans",sans-serif; letter-spacing:-.01em; }

.akd-bg-royal {
  background:
    radial-gradient(1000px 500px at 10% -10%, rgba(212,175,55,0.18), transparent 60%),
    radial-gradient(800px 500px at 100% 0%, rgba(139,0,0,0.10), transparent 60%),
    #FFFDF7;
}

.akd-gradient-ink {
  background: linear-gradient(135deg, #8B0000 0%, #B22222 45%, #D4AF37 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.akd-price-strike { position: relative; display: inline-block; }
.akd-price-strike::after {
  content:""; position:absolute; left:-4%; right:-4%; top:55%;
  height:3px; background:#B91C1C; transform:rotate(-8deg);
}

@keyframes akd-pulse-glow {
  0%,100% { box-shadow: 0 0 0 0 rgba(212,175,55,0.55), 0 10px 25px -5px rgba(139,0,0,0.35); }
  50% { box-shadow: 0 0 0 14px rgba(212,175,55,0), 0 15px 35px -5px rgba(139,0,0,0.45); }
}
.akd-cta-glow { animation: akd-pulse-glow 2.4s ease-in-out infinite; }

html { scroll-behavior: smooth; }
.line-clamp-3 { display:-webkit-box; -webkit-line-clamp:3; -webkit-box-orient:vertical; overflow:hidden; }
