/*
 * Enter any custom CSS here.
 * This file will not be overwritten by theme updates.
*/
/* =========================
   VEXA BOOK THEME — BASE
   ========================= */

.vexa-theme {
  --bg0: #070816;
  --bg1: #0a0b1f;
  --panel: rgba(255,255,255,0.06);
  --panel2: rgba(255,255,255,0.08);
  --stroke: rgba(255,255,255,0.10);

  --txt: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.62);

  --vexa1: #7c3aed; /* purple */
  --vexa2: #a855f7; /* violet */
  --vexa3: #22d3ee; /* cyan accent optional */
  --glow: 0 0 28px rgba(124,58,237,.45);
  --glow2: 0 0 46px rgba(168,85,247,.33);

  --r12: 12px;
  --r16: 16px;
  --r20: 20px;

  color: var(--txt);
  background:
    radial-gradient(900px 520px at 20% 10%, rgba(124,58,237,.22), transparent 60%),
    radial-gradient(780px 460px at 80% 20%, rgba(168,85,247,.18), transparent 58%),
    radial-gradient(900px 520px at 50% 110%, rgba(34,211,238,.10), transparent 55%),
    linear-gradient(180deg, var(--bg0), var(--bg1));
  min-height: 100vh;
}

/* soft particles */
.vexa-theme:before{
  content:"";
  position: fixed;
  inset: 0;
  pointer-events:none;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(255,255,255,.06) 0 1px, transparent 2px),
    radial-gradient(circle at 70% 40%, rgba(255,255,255,.05) 0 1px, transparent 2px),
    radial-gradient(circle at 30% 80%, rgba(255,255,255,.04) 0 1px, transparent 2px);
  background-size: 220px 220px, 260px 260px, 300px 300px;
  opacity: .45;
  filter: blur(.2px);
}

/* =========================
   GLOBAL TYPO + SPACING
   ========================= */
.vexa-theme h1, .vexa-theme h2, .vexa-theme h3 {
  letter-spacing: 0.2px;
}
.vexa-theme p, .vexa-theme span, .vexa-theme label {
  color: var(--txt);
}
.vexa-theme .text-muted,
.vexa-theme .muted,
.vexa-theme small {
  color: var(--muted) !important;
}

/* widen container a bit (works in most themes) */
.vexa-theme .container,
.vexa-theme .max-w-screen-xl,
.vexa-theme .max-w-7xl {
  max-width: 1180px !important;
}

/* =========================
   NAVBAR (generic)
   ========================= */
.vexa-theme nav,
.vexa-theme header {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(10,11,31,.55) !important;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.vexa-theme nav a,
.vexa-theme header a {
  color: var(--txt) !important;
  opacity: .92;
}
.vexa-theme nav a:hover,
.vexa-theme header a:hover {
  opacity: 1;
  text-shadow: var(--glow);
}

/* =========================
   BUTTONS
   ========================= */
.vexa-theme button,
.vexa-theme .btn,
.vexa-theme a.btn,
.vexa-theme [type="button"],
.vexa-theme [type="submit"]{
  border-radius: var(--r16) !important;
  border: 1px solid rgba(255,255,255,.12) !important;
  background:
    linear-gradient(135deg, rgba(124,58,237,.95), rgba(168,85,247,.80)) !important;
  color: white !important;
  box-shadow: var(--glow);
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}
.vexa-theme button:hover,
.vexa-theme .btn:hover,
.vexa-theme [type="submit"]:hover{
  transform: translateY(-1px);
  box-shadow: var(--glow), 0 10px 30px rgba(0,0,0,.35);
  filter: brightness(1.05);
}
.vexa-theme button:active,
.vexa-theme .btn:active{
  transform: translateY(0px);
}

/* secondary buttons */
.vexa-theme .btn-secondary,
.vexa-theme .secondary,
.vexa-theme button.secondary{
  background: rgba(255,255,255,.06) !important;
  box-shadow: none !important;
  border: 1px solid rgba(255,255,255,.12) !important;
}

/* =========================
   INPUTS
   ========================= */
.vexa-theme input,
.vexa-theme select,
.vexa-theme textarea{
  border-radius: var(--r16) !important;
  background: rgba(255,255,255,.06) !important;
  border: 1px solid rgba(255,255,255,.10) !important;
  color: var(--txt) !important;
  outline: none !important;
}
.vexa-theme input:focus,
.vexa-theme select:focus,
.vexa-theme textarea:focus{
  border-color: rgba(168,85,247,.55) !important;
  box-shadow: 0 0 0 3px rgba(124,58,237,.20);
}

/* =========================
   CARDS -> BOOK LOOK
   (product cards, panels, etc.)
   ========================= */
.vexa-theme .card,
.vexa-theme .panel,
.vexa-theme .box,
.vexa-theme .product-card,
.vexa-theme [class*="card"]{
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.05)) !important;
  border: 1px solid rgba(255,255,255,.10) !important;
  border-radius: var(--r20) !important;
  box-shadow: 0 14px 34px rgba(0,0,0,.35);
  position: relative;
  overflow: hidden;
}

/* book spine + page edge */
.vexa-theme .card:before,
.vexa-theme .product-card:before,
.vexa-theme [class*="card"]:before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  bottom:0;
  width: 10px;
  background: linear-gradient(180deg, rgba(124,58,237,.55), rgba(168,85,247,.22));
  box-shadow: 0 0 20px rgba(124,58,237,.25);
  opacity: .9;
}
.vexa-theme .card:after,
.vexa-theme .product-card:after,
.vexa-theme [class*="card"]:after{
  content:"";
  position:absolute;
  right:0;
  top:10px;
  bottom:10px;
  width: 6px;
  background: linear-gradient(180deg, rgba(255,255,255,.25), rgba(255,255,255,.08));
  opacity: .55;
  border-radius: 999px;
}

/* hover glow */
.vexa-theme .card:hover,
.vexa-theme .product-card:hover,
.vexa-theme [class*="card"]:hover{
  box-shadow: var(--glow2), 0 18px 44px rgba(0,0,0,.45);
  transform: translateY(-2px);
  transition: transform .15s ease, box-shadow .15s ease;
}

/* =========================
   PRODUCT IMAGES — make them pop
   ========================= */
.vexa-theme img{
  border-radius: var(--r16);
}
.vexa-theme .product-card img,
.vexa-theme .product img{
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}

/* =========================
   LINKS
   ========================= */
.vexa-theme a{
  color: rgba(168,85,247,.95);
  text-decoration: none;
}
.vexa-theme a:hover{
  color: rgba(124,58,237,1);
  text-shadow: 0 0 18px rgba(168,85,247,.35);
}

/* =========================
   FOOTER
   ========================= */
.vexa-theme footer{
  background: rgba(10,11,31,.55) !important;
  border-top: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
}
/* =========================
   VEXA SHOP = BOOKSHELF
   ========================= */

/* Grid sauber & luftig */
.vexa-book .component .container div[class*="grid"]{
  gap: 28px !important;
}

/* Einzelnes Produkt = Buch */
.vexa-book .component .container div[class*="grid"] > *{
  position: relative;
  padding: 18px;
  transition: transform .2s ease, box-shadow .2s ease;
}

/* Book hover */
.vexa-book .component .container div[class*="grid"] > *:hover{
  transform: translateY(-6px);
  box-shadow:
    0 28px 80px rgba(0,0,0,.65),
    0 0 40px rgba(124,58,237,.35);
}

/* Fake Seitenkante rechts */
.vexa-book .component .container div[class*="grid"] > *::after{
  content:"";
  position:absolute;
  top:12px;
  bottom:12px;
  right:6px;
  width:4px;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,.25),
    rgba(255,255,255,.08)
  );
  border-radius: 999px;
  opacity:.6;
}

/* Produktbild stärker hervorheben */
.vexa-book .component .container div[class*="grid"] img{
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0,0,0,.55);
}