/* ============================================================
   Isoteric main stylesheet — extracted from index.html
   (original theme styles + lux-upgrade layer)
   ============================================================ */


/* ---- style block 1 ---- */

  :root {
    --gold: #C9A84C;
    --gold-light: #E8D48B;
    --gold-dim: #8B6914;
    --bg: #08060F;
    --bg-2: #120A22;
    --bg-3: #1A0F30;
    --text: #E8DCC8;
    --muted: #8A7B98;
    --border: rgba(201, 168, 76, 0.22);
    --border-strong: rgba(201, 168, 76, 0.55);
    --glow: rgba(201, 168, 76, 0.35);
    --purple: #6B3FA0;
    --purple-deep: #2D1B4E;
  }
  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  html, body {
    background: var(--bg);
    color: var(--text);
    font-family: "Cinzel", serif;
    min-height: 100vh;
  }
  body {
    background: #05030A;
    color: #E8DFC8;
    overflow-x: hidden;
  }
  a { color: inherit; text-decoration: none; }
  button { font-family: inherit; cursor: pointer; background: transparent; border: none; color: inherit; }
  ::selection { background: var(--gold); color: var(--bg); }

  /* =========================================================
     NAVBAR — two-row desktop, single-row mobile
     ========================================================= */

  /* Row 1: TOPBAR (40px desktop / 56px mobile) */
  .topbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #08050F;
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    height: 40px;
  }
  .topbar-inner {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    max-width: 100%;
  }
  .nav-logo {
    flex-shrink: 0;
    font-family: "Cinzel", serif;
    color: #C9A84C;
    font-size: 1rem;
    letter-spacing: 0.15em;
    text-decoration: none;
    white-space: nowrap;
    font-weight: 700;
    text-shadow: 0 0 14px rgba(201, 168, 76, 0.35);
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .nav-logo .star {
    display: inline-block;
    animation: spin 16s linear infinite;
  }
  @keyframes spin { to { transform: rotate(360deg); } }

  .nav-tools {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
  }
  .lang-switcher { display: flex; gap: 4px; }
  .lang-btn {
    background: none;
    border: 1px solid rgba(201, 168, 76, 0.3);
    color: #9A8F7A;
    font-size: 0.62rem;
    padding: 3px 7px;
    cursor: pointer;
    font-family: "Cinzel", serif;
    border-radius: 2px;
    letter-spacing: 0.06em;
    transition: all 0.2s;
  }
  .lang-btn:hover { color: #C9A84C; }
  .lang-btn.active {
    background: #C9A84C;
    color: #08060F;
    border-color: #C9A84C;
  }
  .cart-btn {
    background: none;
    border: 1px solid rgba(201, 168, 76, 0.3);
    color: #C9A84C;
    padding: 4px 10px;
    cursor: pointer;
    font-size: 0.78rem;
    border-radius: 2px;
    font-family: "Cinzel", serif;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: all 0.2s;
  }
  .cart-btn:hover { background: rgba(201, 168, 76, 0.1); }
  .cart-count { font-size: 0.68rem; color: #C9A84C; }

  .theme-toggle {
    background: none;
    border: 1px solid rgba(201, 168, 76, 0.3);
    color: #C9A84C;
    padding: 4px 10px;
    cursor: pointer;
    font-size: 0.7rem;
    border-radius: 2px;
    font-family: "Cinzel", serif;
    letter-spacing: 0.08em;
    transition: all 0.2s;
    white-space: nowrap;
  }
  .theme-toggle:hover { background: rgba(201, 168, 76, 0.1); }

  .btn-login {
    font-family: "Cinzel", serif;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    color: var(--gold, #C9A84C);
    border: 1px solid rgba(201, 168, 76, 0.5);
    padding: 5px 12px;
    border-radius: 2px;
    text-decoration: none;
    transition: all 0.2s;
    display: none;
    align-items: center;
  }
  .btn-login:hover { background: rgba(201, 168, 76, 0.15); }

  .nav-user {
    position: relative;
    display: none;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    padding: 3px 8px 3px 4px;
    border: 1px solid rgba(201, 168, 76, 0.4);
    border-radius: 2px;
    transition: all 0.2s;
  }
  .nav-user:hover { background: rgba(201, 168, 76, 0.1); }
  .nav-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #E0C77A, #8C7330);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
  }
  .nav-user > span {
    font-family: "Cinzel", serif;
    font-size: 0.68rem;
    letter-spacing: 0.06em;
    color: #C9A84C;
    max-width: 110px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .nav-user-dropdown {
    position: absolute;
    right: 0;
    top: calc(100% + 6px);
    background: #100A1C;
    border: 1px solid rgba(201, 168, 76, 0.35);
    border-radius: 3px;
    min-width: 160px;
    padding: 4px;
    display: none;
    flex-direction: column;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.55);
    z-index: 50;
  }
  .nav-user.open .nav-user-dropdown { display: flex; }
  .nav-user-dropdown a {
    font-family: "Cinzel", serif;
    font-size: 0.7rem;
    letter-spacing: 0.04em;
    color: #9A8F7A;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 2px;
    transition: all 0.18s;
  }
  .nav-user-dropdown a:hover { background: rgba(201, 168, 76, 0.12); color: #C9A84C; }
  body.light-theme .nav-user-dropdown { background: #FFFFFF; }

  /* Mobile-only compact user icon button */
  .nav-user-icon {
    display: none;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 50%;
    background: transparent;
    color: #C9A84C;
    font-size: 1rem;
    place-items: center;
    text-decoration: none;
    flex-shrink: 0;
    font-family: "Cinzel", serif;
  }
  .nav-user-icon:hover { border-color: #C9A84C; background: rgba(201, 168, 76, 0.1); }

  .hamburger {
    background: none;
    border: none;
    color: #C9A84C;
    font-size: 1.4rem;
    cursor: pointer;
    display: none;
    padding: 0 4px;
    line-height: 1;
    margin-left: 4px;
  }

  /* Row 2: MENUBAR (48px, desktop only) */
  .menubar {
    position: fixed;
    top: 40px;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #0C0818;
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
    height: 48px;
  }
  .menubar-inner {
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    max-width: 100%;
  }
  .cat-btn {
    background: rgba(201, 168, 76, 0.15);
    border: 1px solid rgba(201, 168, 76, 0.4);
    color: #C9A84C;
    font-family: "Cinzel", serif;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    padding: 8px 16px;
    cursor: pointer;
    border-radius: 3px;
    transition: background 0.2s, border-color 0.2s;
    text-transform: uppercase;
    white-space: nowrap;
  }
  .cat-btn:hover { background: rgba(201, 168, 76, 0.25); }
  .cat-btn.is-open {
    background: rgba(201, 168, 76, 0.3);
    border-color: #C9A84C;
  }

  .page-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
  }
  .page-links a {
    color: #9A8F7A;
    font-family: "Cinzel", serif;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    padding: 0 16px;
    height: 48px;
    display: flex;
    align-items: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.2s;
    white-space: nowrap;
  }
  .page-links a:hover { color: #C9A84C; }

  /* MEGA panel (full width, opens under menubar) */
  .mega-panel {
    position: fixed;
    top: 88px;
    left: 0;
    width: 100%;
    z-index: 999;
    background: #0D0A18;
    border-bottom: 2px solid #C9A84C;
    display: none;
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.65);
    max-height: calc(100vh - 88px);
    overflow-y: auto;
  }
  .mega-panel.is-open { display: block; }
  .mega-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 32px 28px 36px;
  }
  .mega-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px 36px;
  }
  .mega-col {
    min-width: 0;
  }
  .mega-col-title {
    display: block;
    color: #C9A84C;
    font-family: "Cinzel", serif;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
  }
  .mega-col-title:hover { color: #E8D48B; }
  .mega-subs {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .mega-subs a {
    display: block;
    padding: 5px 0;
    color: #9A8F7A;
    font-family: "Cinzel", serif;
    font-size: 0.74rem;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color 0.15s, padding-left 0.15s;
  }
  .mega-subs a:hover {
    color: #C9A84C;
    padding-left: 6px;
  }

  /* Mobile overlay — slides from right with transform */
  .mobile-overlay {
    position: fixed;
    top: 56px;
    right: 0;
    width: 85%;
    max-width: 320px;
    height: calc(100vh - 56px);
    background: #08060F;
    z-index: 999;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    padding: 24px;
    border-left: 1px solid rgba(201, 168, 76, 0.2);
    box-shadow: -8px 0 30px rgba(0, 0, 0, 0.5);
  }
  .mobile-overlay.open { transform: translateX(0); }

  .mobile-pages {
    list-style: none;
    margin: 0 0 18px 0;
    padding: 0;
  }
  .mobile-pages a {
    display: block;
    padding: 14px 0;
    color: #C9A84C;
    font-family: "Cinzel", serif;
    font-size: 0.88rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
    transition: color 0.2s, padding-left 0.2s;
  }
  .mobile-pages a:hover, .mobile-pages a:active {
    color: #E8D48B;
    padding-left: 6px;
  }

  .mobile-cats-heading {
    color: #C9A84C;
    font-family: "Cinzel", serif;
    font-size: 0.95rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin: 18px 0 12px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(201, 168, 76, 0.25);
    font-weight: 700;
  }
  .mobile-cat-list {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .mobile-cat-list a {
    display: block;
    padding: 10px 0;
    color: #9A8F7A;
    font-family: "Cinzel", serif;
    font-size: 0.78rem;
    letter-spacing: 0.05em;
    text-decoration: none;
    border-bottom: 1px solid rgba(201, 168, 76, 0.06);
    transition: color 0.2s, padding-left 0.2s;
  }
  .mobile-cat-list a:hover, .mobile-cat-list a:active {
    color: #C9A84C;
    padding-left: 6px;
  }

  /* Mobile overlay — section blocks (account / currency / theme / languages) */
  .mobile-section-head {
    font-family: "Cinzel", serif;
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    color: rgba(201, 168, 76, 0.5);
    text-transform: uppercase;
    margin: 20px 0 8px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  }
  .mobile-account-link {
    display: block;
    padding: 12px 0;
    color: #C9A84C;
    font-family: "Cinzel", serif;
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    text-decoration: none;
  }
  .mobile-cur-row { display: flex; gap: 8px; padding: 6px 0; }
  .mobile-cur-btn {
    flex: 1;
    padding: 8px;
    background: transparent;
    color: #C9A84C;
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 3px;
    font-family: "Cinzel", serif;
    font-size: 0.72rem;
    cursor: pointer;
    transition: all 0.18s;
  }
  .mobile-cur-btn.active { background: #C9A84C; color: #05030A; border-color: #C9A84C; }
  .mobile-crypto {
    display: block;
    padding: 8px 0 4px;
    color: #26A17B;
    font-family: "Cinzel", serif;
    font-size: 0.74rem;
    text-decoration: none;
  }
  .mobile-theme-btn {
    display: block;
    width: 100%;
    padding: 12px 0;
    background: transparent;
    border: none;
    color: #C9A84C;
    font-family: "Cinzel", serif;
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    text-align: left;
    cursor: pointer;
  }
  .mobile-lang-btn {
    display: block;
    width: 100%;
    padding: 11px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(201, 168, 76, 0.06);
    color: #9A8F7A;
    font-family: "Cinzel", serif;
    font-size: 0.82rem;
    text-align: left;
    cursor: pointer;
    transition: color 0.18s;
  }
  .mobile-lang-btn:hover { color: #C9A84C; }
  .mobile-lang-btn.active { color: #C9A84C; }

  /* Body padding for fixed navbar */
  body { padding-top: 88px; }

  /* =========================================================
     HERO
     ========================================================= */
  .hero {
    position: relative;
    min-height: calc(100vh - 88px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 24px 100px;
    overflow: hidden;
    background: radial-gradient(ellipse at 50% 50%, #1A0A3A 0%, #05030A 70%);
  }
  #starfield {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 1;
    pointer-events: none;
  }
  .hero-glow {
    position: absolute;
    top: 50%; left: 50%;
    width: 80vmin; height: 80vmin;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(107, 63, 160, 0.25), transparent 60%);
    z-index: 2;
    pointer-events: none;
  }
  .mandala {
    position: absolute;
    top: 50%; left: 50%;
    width: 90vmin; height: 90vmin;
    transform: translate(-50%, -50%);
    opacity: 0.07;
    z-index: 3;
    animation: spin 90s linear infinite;
    pointer-events: none;
  }

  .hero-content {
    position: relative;
    z-index: 10;
    max-width: 880px;
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeIn 1s 0.3s ease forwards;
  }
  @keyframes heroFadeIn {
    to { opacity: 1; transform: translateY(0); }
  }

  .hero-eyebrow {
    font-family: "Cinzel", serif;
    font-size: 13px;
    color: var(--gold);
    letter-spacing: 8px;
    text-transform: uppercase;
    margin-bottom: 28px;
    opacity: 0.85;
  }
  .hero h1 {
    font-family: "Cinzel", serif;
    font-weight: 700;
    font-size: clamp(36px, 6.5vw, 76px);
    color: var(--gold);
    letter-spacing: 4px;
    text-shadow: 0 0 40px var(--glow), 0 0 80px rgba(107, 63, 160, 0.3);
    line-height: 1.15;
    margin-bottom: 28px;
  }
  .hero-sub {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text);
    letter-spacing: 2px;
    max-width: 640px;
    margin: 0 auto 48px;
    line-height: 1.6;
    opacity: 0.85;
  }
  .hero-cta {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .tarot-banner {
    background: linear-gradient(135deg, #1A0A3A 0%, #0D0520 50%, #1A0A3A 100%);
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 16px;
    padding: 32px 24px;
    margin: 24px 16px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .tb-cards {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 120px;
  }
  .tb-card {
    position: absolute;
    width: 52px;
    height: 80px;
    background: linear-gradient(135deg, #2D1B5E, #1A0A3A);
    border: 1px solid rgba(201, 168, 76, 0.5);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C9A84C;
    font-size: 1.4rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  }
  .tb-card-1 { left: 8px; top: 20px; transform: rotate(-15deg); animation: cardFloat1 4s ease-in-out infinite; }
  .tb-card-2 { left: 36px; top: 10px; transform: rotate(5deg); animation: cardFloat2 5s ease-in-out infinite 0.5s; }
  .tb-card-3 { left: 20px; bottom: 20px; transform: rotate(-5deg); animation: cardFloat3 4.5s ease-in-out infinite 1s; }
  @keyframes cardFloat1 { 0%,100%{transform:rotate(-15deg) translateY(0)} 50%{transform:rotate(-15deg) translateY(-8px)} }
  @keyframes cardFloat2 { 0%,100%{transform:rotate(5deg) translateY(0)} 50%{transform:rotate(5deg) translateY(-6px)} }
  @keyframes cardFloat3 { 0%,100%{transform:rotate(-5deg) translateY(0)} 50%{transform:rotate(-5deg) translateY(-10px)} }
  .tb-content {
    flex: 1;
    padding-left: 130px;
    z-index: 1;
  }
  .tb-eyebrow {
    font-family: "Cinzel", serif;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    color: rgba(201, 168, 76, 0.7);
  }
  .tb-title {
    font-family: "Cinzel", serif;
    font-size: 1.1rem;
    color: #C9A84C;
    margin: 6px 0;
  }
  .tb-sub {
    font-family: "Cormorant Garamond", serif;
    font-size: 0.95rem;
    color: rgba(232, 223, 200, 0.7);
    margin: 4px 0;
  }
  .tb-btn {
    display: inline-block;
    margin-top: 12px;
    background: #C9A84C;
    color: #05030A;
    font-family: "Cinzel", serif;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    padding: 8px 20px;
    border-radius: 3px;
    text-decoration: none;
    transition: all 0.2s;
  }
  .tb-btn:hover { background: #F0D080; }
  .tb-ball {
    width: 60px;
    height: 60px;
    background: radial-gradient(circle at 35% 35%, #9B6FD0, #2D1B5E, #0D0520);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(107, 63, 160, 0.5), inset 0 0 15px rgba(255, 255, 255, 0.1);
    animation: ballGlow 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
  }
  .tb-ball-inner { position: absolute; inset: 0; }
  .tb-ball-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.2), transparent 60%);
    border-radius: 50%;
  }
  .tb-ball-stars {
    position: absolute;
    bottom: 4px;
    width: 100%;
    text-align: center;
    font-size: 0.5rem;
    color: rgba(201, 168, 76, 0.6);
  }
  @keyframes ballGlow {
    0%,100% { box-shadow: 0 0 20px rgba(107, 63, 160, 0.5); }
    50% { box-shadow: 0 0 35px rgba(107, 63, 160, 0.8); }
  }
  .tb-coffee {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
  }
  .tb-cup { font-size: 2rem; }
  .tb-steam {
    display: flex;
    gap: 4px;
    height: 20px;
  }
  .tb-steam span {
    width: 2px;
    background: linear-gradient(to top, rgba(201, 168, 76, 0.4), transparent);
    border-radius: 2px;
    animation: steam 2s ease-in-out infinite;
  }
  .tb-steam span:nth-child(2) { animation-delay: 0.3s; }
  .tb-steam span:nth-child(3) { animation-delay: 0.6s; }
  @keyframes steam {
    0%,100% { height: 8px; opacity: 0.3; }
    50% { height: 18px; opacity: 0.7; }
  }
  @media (max-width: 640px) {
    .tb-cards { width: 80px; }
    .tb-content { padding-left: 90px; }
    .tb-ball, .tb-coffee { display: none; }
  }

  .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    font-family: "Cinzel", serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    border: 1px solid var(--gold);
    border-radius: 4px;
    color: var(--gold);
    background: transparent;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
  }
  .btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold);
    transform: translateX(-101%);
    transition: transform 0.4s ease;
    z-index: -1;
  }
  .btn:hover { color: var(--bg); box-shadow: 0 0 30px var(--glow); }
  .btn:hover::before { transform: translateX(0); }
  .btn.primary { background: var(--gold); color: var(--bg); }
  .btn.primary::before { background: var(--gold-light); }

  .scroll-indicator {
    position: absolute;
    bottom: 30px; left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    color: var(--muted);
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
  }
  .scroll-indicator::after {
    content: '';
    display: block;
    width: 1px; height: 38px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    margin: 10px auto 0;
    animation: scrollArrowBounce 1.5s ease-in-out infinite;
  }
  @keyframes scrollArrowBounce {
    0%, 100% { transform: translateY(0); opacity: 0.6; }
    50%      { transform: translateY(8px); opacity: 1; }
  }

  /* =========================================================
     SECTIONS
     ========================================================= */
  section { position: relative; z-index: 5; }
  .container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
  .section-pad { padding: 120px 28px; background: #0A0714; }

  .section-head { text-align: center; margin-bottom: 56px; }
  .section-head .eyebrow {
    font-size: 11px;
    color: var(--gold);
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 14px;
    font-weight: 600;
  }
  .section-head h2 {
    font-family: "Cinzel", serif;
    font-size: clamp(30px, 4.5vw, 48px);
    color: var(--gold);
    letter-spacing: 4px;
    margin-bottom: 14px;
    text-shadow: 0 0 28px var(--glow);
  }
  .section-head p {
    color: var(--muted);
    max-width: 600px;
    margin: 0 auto;
    font-size: 16px;
    letter-spacing: 1px;
    line-height: 1.6;
  }
  .ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 14px 0 10px;
    color: var(--gold);
  }
  .ornament::before, .ornament::after {
    content: '';
    width: 60px; height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
  }

  /* Reveal animation */
  .reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.9s ease, transform 0.9s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* =========================================================
     DIVINATION CAROUSELS (per category)
     ========================================================= */
  .section-pad-alt { background: #080512; padding: 120px 28px; }
  .carousel-wrapper { position: relative; padding: 0 40px; }
  .car-viewport { overflow: hidden; width: 100%; }
  .car-track {
    display: flex;
    gap: 16px;
    transition: transform 0.4s ease;
  }
  .car-track .div-card { flex: 0 0 calc(33.333% - 11px); min-width: 0; }
  .div-section .div-card .ic {
    width: auto; height: auto; font-size: 2.6rem; line-height: 1; filter: none;
  }
  .div-card .card-cta {
    display: block;
    margin-top: 12px;
    color: #C9A84C;
    font-family: "Cinzel", serif;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
  }
  .div-card:hover .card-cta { color: var(--gold-light); }
  .car-prev, .car-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(8, 5, 15, 0.9);
    border: 1px solid rgba(201, 168, 76, 0.4);
    color: #C9A84C;
    font-size: 1.3rem;
    cursor: pointer;
    z-index: 10;
    display: grid; place-items: center;
    transition: all 0.2s;
  }
  .car-prev:hover, .car-next:hover { background: rgba(201, 168, 76, 0.15); border-color: #C9A84C; }
  .car-prev { left: 0; }
  .car-next { right: 0; }
  @media (max-width: 768px) {
    .car-track .div-card { flex: 0 0 100%; }
    .carousel-wrapper { padding: 0 40px; }
  }
  /* dark mode cards (index.html has no .light-theme by default) */
  body:not(.light-theme) .div-card {
    background: rgba(16, 12, 32, 0.9);
    border: 1px solid rgba(201, 168, 76, 0.15);
    color: #E8DFC8;
  }
  body:not(.light-theme) .div-card h3 { color: #C9A84C; }
  body:not(.light-theme) .div-card p { color: #9A8F7A; }
  body:not(.light-theme) .section-pad { background: #0A0714; }
  body:not(.light-theme) .section-pad-alt { background: #080512; }
  body.light-theme .section-pad-alt { background: #F0EBE0; }

  /* =========================================================
     DIVINATION GRID
     ========================================================= */
  .div-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
  }

  .div-card {
    position: relative;
    background: #100C20;
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 12px;
    padding: 44px 28px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    transition: all 0.4s ease;
    min-height: 300px;
    display: flex;
    flex-direction: column;
  }
  .div-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center top, var(--glow), transparent 65%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
  }
  .div-card:hover {
    border-color: var(--gold);
    transform: translateY(-6px);
    box-shadow: 0 18px 50px rgba(201, 168, 76, 0.18), 0 0 0 1px var(--gold) inset;
  }
  .div-card:hover::before { opacity: 1; }

  .div-card .ic {
    width: 56px;
    height: 56px;
    margin-bottom: 22px;
    filter: drop-shadow(0 0 12px var(--glow));
    transition: transform 0.5s ease;
    color: var(--gold);
  }
  .div-card .ic svg {
    width: 100%;
    height: 100%;
    display: block;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .div-card:hover .ic { transform: scale(1.15) rotate(-6deg); }

  .div-card h3 {
    font-family: "Cinzel", serif;
    font-size: 20px;
    color: var(--gold);
    letter-spacing: 2px;
    margin-bottom: 12px;
  }
  .div-card p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
    flex-grow: 1;
  }
  .div-card .cta {
    margin-top: 22px;
    color: var(--gold);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: letter-spacing 0.3s ease, transform 0.3s ease;
    display: inline-block;
  }
  .div-card:hover .cta {
    letter-spacing: 5px;
    transform: translateX(4px);
    color: var(--gold-light);
  }

  /* Inline card rating summary */
  .card-rating {
    margin: 2px 0 14px;
    display: flex;
    gap: 6px;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    flex-wrap: wrap;
  }
  .card-rating-stars {
    color: var(--gold);
    letter-spacing: 1.5px;
    text-shadow: 0 0 6px rgba(201,168,76,0.4);
    font-size: 0.95rem;
  }
  .card-rating-num {
    color: var(--muted);
    font-style: italic;
    font-size: 0.72rem;
    letter-spacing: 0.04em;
  }
  body.light-theme .card-rating-num { color: #5A4A6A; }

  .div-card.locked { cursor: not-allowed; opacity: 0.6; }
  .div-card.locked:hover {
    transform: none;
    border-color: var(--border);
    box-shadow: none;
  }
  .div-card.locked:hover::before { opacity: 0; }
  .div-card.locked::after {
    content: attr(data-soon);
    position: absolute;
    top: 14px; right: 14px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid var(--border-strong);
    color: var(--gold);
    padding: 5px 12px;
    border-radius: 12px;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
  }

  /* =========================================================
     SHOP
     ========================================================= */
  .shop {
    background: #080512;
  }
  .shop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
  }
  .product {
    background: #100C20;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  .product:hover { transform: translateY(-4px); border-color: var(--gold); }
  .product-img {
    height: 220px;
    background: linear-gradient(135deg, var(--bg-3), var(--purple-deep));
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 56px;
    color: var(--gold);
    opacity: 0.7;
  }
  .product-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, rgba(255,255,255,0) 30%, rgba(201,168,76,0.16) 50%, rgba(255,255,255,0) 70%);
    background-size: 200% 100%;
    animation: shimmer 2.5s linear infinite;
  }
  @keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
  }
  .product-body { padding: 22px 24px 26px; }
  .product-body h4 {
    font-family: "Cinzel", serif;
    font-size: 16px;
    color: var(--gold);
    letter-spacing: 2px;
    margin-bottom: 10px;
  }
  .product-body p { color: var(--muted); font-size: 14px; line-height: 1.5; }
  .product-body .price {
    margin-top: 14px;
    color: var(--gold-light);
    font-style: italic;
    letter-spacing: 2px;
    font-size: 13px;
  }
  .shop-cta { text-align: center; margin-top: 50px; }

  /* =========================================================
     FOOTER
     ========================================================= */
  footer {
    border-top: 1px solid var(--border);
    background: rgba(8, 6, 15, 0.6);
    padding: 60px 28px 30px;
    position: relative;
    z-index: 5;
  }
  .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 44px;
  }
  .footer-brand .logo { margin-bottom: 14px; font-size: 22px; }
  .footer-tag {
    color: var(--muted);
    font-style: italic;
    max-width: 280px;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  .socials { display: flex; gap: 10px; }
  .socials a {
    width: 38px; height: 38px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: all 0.25s;
  }
  .socials a:hover {
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.1);
    transform: translateY(-2px);
  }
  .socials svg { width: 16px; height: 16px; }

  .footer-col h5 {
    font-family: "Cinzel", serif;
    color: var(--gold);
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 18px;
  }
  .footer-col a, .footer-col span {
    display: block;
    color: var(--muted);
    padding: 6px 0;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.2s;
  }
  .footer-col a:hover { color: var(--gold); padding-left: 6px; }
  .copyright {
    text-align: center;
    color: var(--muted);
    font-size: 12px;
    border-top: 1px solid var(--border);
    padding-top: 24px;
    max-width: 1200px;
    margin: 0 auto;
    letter-spacing: 3px;
  }

  /* =========================================================
     MOBILE
     ========================================================= */
  @media (max-width: 1023px) {
    body { padding-top: 56px; }

    /* Collapse to single 56px row */
    .topbar { height: 56px; background: #08060F; border-bottom: 1px solid rgba(201, 168, 76, 0.2); }
    .topbar-inner { height: 56px; padding: 0 16px; gap: 8px; }
    .menubar { display: none; }
    .mega-panel { display: none !important; }
    .mobile-overlay { display: block; }
    .hamburger { display: block; }
    .nav-logo { font-size: 0.95rem; letter-spacing: 0.1em; }
    .lang-switcher { display: none; }
    .lang-dropdown { display: block; }
    /* Minimal mobile topbar: only logo + UA▾ + user icon + hamburger */
    .cart-btn { display: none; }
    .theme-toggle { display: none; }
    .btn-login { display: none !important; }
    .nav-user { display: none !important; }
    .nav-user-icon { display: grid; }

    /* Hide floating tarot cards on mobile (too cluttered) */
    .tarot-card { display: none; }

    .div-grid, .shop-grid { grid-template-columns: 1fr; gap: 18px; }
    .section-pad { padding: 80px 24px; }
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 30px; }
    .footer-brand { grid-column: span 2; }
  }
  @media (max-width: 540px) {
    .footer-inner { grid-template-columns: 1fr; }
    .footer-brand { grid-column: auto; }
    .hero-cta { flex-direction: column; align-items: center; }
    .btn { width: 100%; max-width: 280px; justify-content: center; }
  }

  /* =========================================================
     LANGUAGE DROPDOWN (mobile)
     ========================================================= */
  .lang-dropdown { position: relative; display: none; }
  .lang-dropdown-trigger {
    background: transparent;
    border: 1px solid rgba(201, 168, 76, 0.5);
    color: #C9A84C;
    font-family: "Cinzel", serif;
    padding: 4px 10px;
    cursor: pointer;
    font-size: 0.7rem;
    border-radius: 2px;
    letter-spacing: 0.08em;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: background 0.2s;
  }
  .lang-dropdown-trigger:hover { background: rgba(201, 168, 76, 0.1); }
  .lang-dropdown-trigger .arr { font-size: 0.65rem; opacity: 0.7; transition: transform 0.2s; }
  .lang-dropdown.open .lang-dropdown-trigger .arr { transform: rotate(180deg); }
  .lang-dropdown-menu {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: #08050F;
    border: 1px solid rgba(201, 168, 76, 0.3);
    min-width: 90px;
    display: none;
    z-index: 1001;
    border-radius: 3px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
  }
  .lang-dropdown.open .lang-dropdown-menu { display: block; }
  .lang-dropdown-menu button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 8px 12px;
    color: #C9A84C;
    font-family: "Cinzel", serif;
    font-size: 0.75rem;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    letter-spacing: 0.06em;
    transition: background 0.15s;
  }
  .lang-dropdown-menu button:hover { background: rgba(201, 168, 76, 0.1); }
  .lang-dropdown-menu .check { color: #C9A84C; font-size: 0.65rem; visibility: hidden; }
  .lang-dropdown-menu button.active .check { visibility: visible; }

  /* =========================================================
     SMOKE ORBS — mystical fog in hero
     ========================================================= */
  .smoke-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 2;
  }
  .smoke-1 {
    width: 400px; height: 300px;
    background: rgba(107, 63, 160, 0.15);
    top: 20%; left: -10%;
    animation: smokeFloat1 12s ease-in-out infinite alternate;
  }
  .smoke-2 {
    width: 350px; height: 350px;
    background: rgba(201, 168, 76, 0.06);
    top: 10%; right: -5%;
    animation: smokeFloat2 15s ease-in-out infinite alternate;
  }
  .smoke-3 {
    width: 500px; height: 200px;
    background: rgba(60, 20, 120, 0.12);
    bottom: 10%; left: 20%;
    animation: smokeFloat3 10s ease-in-out infinite alternate;
  }
  @keyframes smokeFloat1 {
    from { transform: translate(-30px, -20px); }
    to   { transform: translate(30px, 20px); }
  }
  @keyframes smokeFloat2 {
    from { transform: translate(20px, -30px); }
    to   { transform: translate(-20px, 30px); }
  }
  @keyframes smokeFloat3 {
    from { transform: translate(-20px, 10px); }
    to   { transform: translate(20px, -10px); }
  }

  /* =========================================================
     FLOATING TAROT CARDS in hero
     ========================================================= */
  .tarot-card {
    position: absolute;
    width: 60px;
    height: 100px;
    background: #1A0A3A;
    border: 1px solid rgba(201, 168, 76, 0.5);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  }
  .tarot-card .card-sym {
    color: #C9A84C;
    font-size: 1.4rem;
    text-shadow: 0 0 8px rgba(201, 168, 76, 0.5);
  }
  .tarot-card:hover {
    border-color: #C9A84C;
    box-shadow: 0 0 24px rgba(201, 168, 76, 0.5), 0 0 50px rgba(201, 168, 76, 0.2);
    transform: scale(1.12) !important;
  }

  .tarot-1 { top: 18%; left: 6%;  animation: floatCard1 6s ease-in-out infinite; }
  .tarot-2 { top: 62%; left: 10%; animation: floatCard2 8s ease-in-out infinite 1s; }
  .tarot-3 { top: 22%; right: 7%; animation: floatCard3 10s ease-in-out infinite 0.5s; }
  .tarot-4 { top: 58%; right: 12%; animation: floatCard4 7s ease-in-out infinite 1.5s; }
  .tarot-5 { top: 78%; right: 28%; animation: floatCard5 9s ease-in-out infinite 0.3s; }

  @keyframes floatCard1 {
    0%, 100% { transform: translateY(0) rotate(-3deg); }
    50%      { transform: translateY(-20px) rotate(3deg); }
  }
  @keyframes floatCard2 {
    0%, 100% { transform: translateY(0) rotate(4deg); }
    50%      { transform: translateY(-18px) rotate(-2deg); }
  }
  @keyframes floatCard3 {
    0%, 100% { transform: translateY(0) rotate(2deg); }
    50%      { transform: translateY(20px) rotate(-5deg); }
  }
  @keyframes floatCard4 {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50%      { transform: translateY(-15px) rotate(3deg); }
  }
  @keyframes floatCard5 {
    0%, 100% { transform: translateY(0) rotate(3deg); }
    50%      { transform: translateY(18px) rotate(-4deg); }
  }

  /* =========================================================
     ENHANCED REVEALS — div-card rotateY, shimmer, section titles, feature icons
     ========================================================= */

  /* Divination cards entrance: opacity + translateY + rotateY */
  .div-card.reveal {
    opacity: 0;
    transform: translateY(40px) rotateY(15deg);
    transform-origin: center top;
    transition: opacity 0.7s cubic-bezier(0.23, 1, 0.32, 1),
                transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
  }
  .div-card.reveal.visible {
    opacity: 1;
    transform: translateY(0) rotateY(0);
  }

  /* Shimmer sweep on hover (only on active, not locked cards) */
  .div-card:not(.locked)::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 40%, rgba(201, 168, 76, 0.18) 50%, transparent 60%);
    background-size: 200% 100%;
    background-position: 200% 0;
    opacity: 0;
    pointer-events: none;
    border-radius: inherit;
    transition: opacity 0.2s;
  }
  .div-card:not(.locked):hover::after {
    opacity: 1;
    animation: shimmerSweep 0.6s ease forwards;
  }
  @keyframes shimmerSweep {
    from { background-position: 200% 0; }
    to   { background-position: -200% 0; }
  }

  /* Feature icons spring-scale entrance */
  .feat.reveal .icon-wrap {
    transform: scale(0.5);
    opacity: 0;
    transition: transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1),
                opacity 0.5s ease;
  }
  .feat.reveal.visible .icon-wrap {
    transform: scale(1);
    opacity: 1;
  }

  /* Section titles use a tighter 30px translate */
  .section-head.reveal { transform: translateY(30px); }

  /* =========================================================
     LIGHT THEME OVERRIDES — luxury white + dark-purple nav
     ========================================================= */
  body.light-theme {
    background: #FFFFFF;
    color: #3A2A4A;
  }

  /* Navbar (rows 1 + 2) stays DARK for luxury contrast */
  body.light-theme .topbar {
    background: #1A0A3A;
    border-bottom-color: rgba(240, 208, 128, 0.18);
  }
  body.light-theme .menubar {
    background: #2D1B5E;
    border-bottom-color: rgba(240, 208, 128, 0.22);
  }
  body.light-theme .nav-logo {
    color: #F0D080;
    text-shadow: 0 0 14px rgba(240, 208, 128, 0.35);
  }
  body.light-theme .page-links a { color: #D4C090; }
  body.light-theme .page-links a:hover { color: #F0D080; }

  body.light-theme .cat-btn {
    background: rgba(201, 168, 76, 0.2);
    border-color: rgba(240, 208, 128, 0.5);
    color: #F0D080;
  }
  body.light-theme .cat-btn:hover { background: rgba(201, 168, 76, 0.32); }
  body.light-theme .cat-btn.is-open { background: rgba(201, 168, 76, 0.4); border-color: #F0D080; }

  body.light-theme .lang-btn {
    color: #E8DFC8;
    border-color: rgba(240, 208, 128, 0.4);
  }
  body.light-theme .lang-btn:hover { color: #F0D080; }
  body.light-theme .lang-btn.active {
    background: #C9A84C;
    color: #1A0A3A;
    border-color: #C9A84C;
  }
  body.light-theme .cart-btn,
  body.light-theme .theme-toggle {
    color: #F0D080;
    border-color: rgba(240, 208, 128, 0.4);
  }
  body.light-theme .cart-btn:hover,
  body.light-theme .theme-toggle:hover { background: rgba(240, 208, 128, 0.12); }
  body.light-theme .cart-count { color: #F0D080; }
  body.light-theme .hamburger { color: #F0D080; }

  /* Mega panel — light bg, dark purple text */
  body.light-theme .mega-panel {
    background: #FFFFFF;
    border-bottom-color: rgba(45, 27, 94, 0.15);
    box-shadow: 0 20px 50px rgba(45, 27, 94, 0.12);
  }
  body.light-theme .mega-col-title {
    color: #2D1B5E;
    border-bottom-color: rgba(45, 27, 94, 0.2);
  }
  body.light-theme .mega-subs a { color: #5A4A6A; }
  body.light-theme .mega-subs a:hover { color: #2D1B5E; }

  /* Mobile overlay — keep dark navbar feel */
  body.light-theme .mobile-overlay {
    background: #1A0A3A;
    border-left-color: rgba(240, 208, 128, 0.25);
  }
  body.light-theme .mobile-pages a {
    color: #F0D080;
    border-bottom-color: rgba(240, 208, 128, 0.15);
  }
  body.light-theme .mobile-pages a:hover { color: #F0E6C8; }
  body.light-theme .mobile-cats-heading {
    color: #F0D080;
    border-bottom-color: rgba(240, 208, 128, 0.3);
  }
  body.light-theme .mobile-cat-list a {
    color: #D4C090;
    border-bottom-color: rgba(240, 208, 128, 0.1);
  }
  body.light-theme .mobile-cat-list a:hover { color: #F0D080; }

  /* HERO — soft warm gradient with dark purple text */
  body.light-theme .hero {
    background: linear-gradient(135deg, #F8F4EE 0%, #EDE4D8 100%);
  }
  body.light-theme #starfield { opacity: 0.15; }
  body.light-theme .hero h1 {
    color: #2D1B5E;
    text-shadow: 0 0 30px rgba(45, 27, 94, 0.2);
  }
  body.light-theme .hero-sub { color: #5A4A6A; }
  body.light-theme .mandala { opacity: 0.18; }
  body.light-theme .mandala g { stroke: #2D1B5E; }
  body.light-theme .hero-glow {
    background: radial-gradient(circle, rgba(45, 27, 94, 0.12), transparent 60%);
  }
  body.light-theme .scroll-indicator { color: #5A4A6A; }
  body.light-theme .scroll-indicator::after {
    background: linear-gradient(to bottom, #2D1B5E, transparent);
  }

  /* Buttons (primary cta) */
  body.light-theme .btn {
    color: #2D1B5E;
    border-color: #2D1B5E;
    background: transparent;
  }
  body.light-theme .btn.primary {
    background: #2D1B5E;
    color: #F0D080;
    border-color: #2D1B5E;
  }
  body.light-theme .btn::before { background: #2D1B5E; }
  body.light-theme .btn.primary::before { background: #1A0A3A; }
  body.light-theme .btn:hover { color: #F0D080; }
  body.light-theme .btn.primary:hover { color: #F0E6C8; }

  /* Sections — alternating warm tones */
  body.light-theme .section-pad { background: #F8F4EE; }
  body.light-theme .shop { background: #F0EBE0; }
  body.light-theme .section-head h2,
  body.light-theme .section-head .eyebrow { color: #2D1B5E; }
  body.light-theme .section-head p { color: #5A4A6A; }
  body.light-theme .ornament { color: #C9A84C; }
  body.light-theme .ornament::before,
  body.light-theme .ornament::after {
    background: linear-gradient(to right, transparent, #C9A84C, transparent);
  }

  /* Divination cards */
  body.light-theme .div-card {
    background: #FFFFFF;
    border: 1px solid rgba(45, 27, 94, 0.2);
    box-shadow: 0 4px 20px rgba(45, 27, 94, 0.08);
  }
  body.light-theme .div-card:hover {
    border-color: #C9A84C;
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.2);
  }
  body.light-theme .div-card::before {
    background: radial-gradient(circle at center top, rgba(201, 168, 76, 0.18), transparent 65%);
  }
  body.light-theme .div-card h3 { color: #2D1B5E; }
  body.light-theme .div-card p { color: #5A4A6A; }
  body.light-theme .div-card .cta { color: #C9A84C; }
  body.light-theme .div-card.locked::after {
    background: rgba(255, 255, 255, 0.9);
    color: #2D1B5E;
    border-color: rgba(45, 27, 94, 0.3);
  }

  /* Shop products */
  body.light-theme .product {
    background: #FFFFFF;
    border: 1px solid rgba(45, 27, 94, 0.2);
    box-shadow: 0 4px 20px rgba(45, 27, 94, 0.08);
  }
  body.light-theme .product:hover {
    border-color: #C9A84C;
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.2);
  }
  body.light-theme .product-img {
    background: linear-gradient(135deg, #EDE4D8, #DCC8B0);
    color: #2D1B5E;
  }
  body.light-theme .product-body h4 { color: #2D1B5E; }
  body.light-theme .product-body p { color: #5A4A6A; }
  body.light-theme .product-body .price { color: #C9A84C; }

  /* Footer — stays dark for elegance */
  body.light-theme footer {
    background: #1A0A3A;
    border-top-color: rgba(240, 208, 128, 0.2);
    color: #E8DFC8;
  }
  body.light-theme .footer-logo,
  body.light-theme .footer-col h5 { color: #F0D080; }
  body.light-theme .footer-tag,
  body.light-theme .footer-col a,
  body.light-theme .footer-col span,
  body.light-theme .copyright { color: #D4C090; }
  body.light-theme .footer-col a:hover { color: #F0D080; }
  body.light-theme .socials a {
    color: #F0D080;
    border-color: rgba(240, 208, 128, 0.3);
  }
  body.light-theme .socials a:hover {
    background: rgba(240, 208, 128, 0.12);
    border-color: #F0D080;
  }

/* ---- style block 2 ---- */

  /* ===========================================================
     2026 LUXURY UPGRADE — additive overrides (last stylesheet wins)
     =========================================================== */
  :root{
    --bg-deep:#05030A;--bg-card:rgba(16,8,32,0.85);--bg-hover:rgba(35,20,65,0.9);
    --gold-bright:#F0D080;--gold-main:#C9A84C;--gold-dim:rgba(201,168,76,0.4);
    --gold-glow:rgba(201,168,76,0.15);--text-bright:#F5EFE0;--text-main:#E8DFC8;
    --text-dim:#9A8F7A;--text-ghost:rgba(232,223,200,0.4);--purple:#6B3FA0;
    --purple-dim:rgba(107,63,160,0.3);--silver:#C0C8D8;
  }

  /* Typography */
  body{
    font-family:'Cormorant Garamond',Georgia,serif;
    font-size:18px;line-height:1.8;letter-spacing:0.02em;
    -webkit-font-smoothing:antialiased;
  }
  h1,h2,h3{
    font-family:'Cinzel Decorative','Cinzel',serif;
    letter-spacing:0.05em;font-weight:400;
  }

  /* Card upgrade */
  .div-card{
    background:var(--bg-card);
    -webkit-backdrop-filter:blur(20px) saturate(1.5);
    backdrop-filter:blur(20px) saturate(1.5);
    border:1px solid var(--gold-dim);
    border-radius:16px;
    padding:28px 24px;
    transition:all .4s cubic-bezier(.34,1.56,.64,1);
    position:relative;
    overflow:hidden;
  }
  .div-card::before{
    content:'';
    position:absolute;inset:0;
    background:linear-gradient(135deg,transparent 0%,rgba(201,168,76,.05) 50%,transparent 100%);
    transform:translateX(-100%);
    transition:transform .6s ease;
    opacity:1;
    pointer-events:none;
    z-index:0;
  }
  .div-card:hover::before{transform:translateX(100%);}
  .div-card:hover{
    border-color:var(--gold-main);
    transform:translateY(-8px);
    box-shadow:0 20px 60px rgba(107,63,160,.25),0 0 0 1px rgba(201,168,76,.3),inset 0 1px 0 rgba(201,168,76,.2);
  }

  /* Buttons */
  .btn-primary,.card-cta,button[class*="open"]{
    background:linear-gradient(135deg,#C9A84C,#F0D080,#C9A84C);
    background-size:200% 100%;
    color:#05030A;
    font-family:'Cinzel',serif;font-size:.72rem;letter-spacing:.15em;
    text-transform:uppercase;padding:12px 28px;border:none;border-radius:4px;
    font-weight:600;transition:all .3s ease;
  }
  .btn-primary:hover,.card-cta:hover,button[class*="open"]:hover{
    background-position:100% 0;
    box-shadow:0 8px 24px rgba(201,168,76,.3);
    transform:translateY(-2px);
  }

  /* Section heads */
  .section-head .eyebrow{
    font-family:'Cinzel',serif;font-size:.65rem;letter-spacing:.35em;
    color:var(--gold-dim);text-transform:uppercase;margin-bottom:16px;
  }
  .section-head h2{
    font-family:'Cinzel Decorative','Cinzel',serif;
    font-size:clamp(1.8rem,5vw,3.2rem);color:var(--gold-main);
    font-weight:400;margin:0 0 16px;line-height:1.2;
  }
  .section-head .ornament{
    display:flex;align-items:center;gap:16px;justify-content:center;
    color:var(--gold-dim);margin:16px 0;
  }
  .section-head .ornament::before,
  .section-head .ornament::after{
    content:'';flex:1;max-width:80px;height:1px;
  }
  .section-head .ornament::before{
    background:linear-gradient(to right,transparent,var(--gold-dim));
  }
  .section-head .ornament::after{
    background:linear-gradient(to left,transparent,var(--gold-dim));
  }

  /* Luxury scrollbar / selection / focus */
  ::-webkit-scrollbar{width:6px;height:6px;}
  ::-webkit-scrollbar-track{background:var(--bg-deep);}
  ::-webkit-scrollbar-thumb{background:rgba(201,168,76,.4);border-radius:3px;}
  ::-webkit-scrollbar-thumb:hover{background:#C9A84C;}
  ::selection{background:rgba(201,168,76,.3);color:#F0D080;}
  :focus-visible{outline:2px solid #C9A84C;outline-offset:3px;border-radius:4px;}

  /* ===================== HERO ===================== */
  .hero h1{
    font-family:'Cinzel Decorative','Cinzel',serif;
    font-size:clamp(2.6rem,8vw,5.5rem);
    line-height:1.05;
    color:var(--gold-main);
    text-shadow:0 0 40px var(--gold-glow),0 0 90px rgba(107,63,160,.35);
  }
  .hero-rule{
    display:block;
    width:100px;height:2px;
    margin:0 auto 40px;
    background:linear-gradient(to right,transparent,var(--gold-main),transparent);
    border-radius:2px;
  }
  /* Hero CTA pills with gold gradient + shimmer */
  .hero-cta .btn{
    border-radius:999px;
    border:1px solid transparent;
    background:linear-gradient(135deg,#C9A84C,#F0D080,#C9A84C);
    background-size:200% 100%;
    color:#05030A;
    transition:background-position .35s ease,box-shadow .35s ease,transform .35s ease,color .35s ease;
  }
  .hero-cta .btn::before{display:none;}
  .hero-cta .btn:hover{
    background-position:100% 0;
    color:#05030A;
    box-shadow:0 8px 24px rgba(201,168,76,.3);
    transform:translateY(-2px);
  }

  /* Hero star/particle twinkle layer */
  .hero-stars{
    position:absolute;inset:0;
    z-index:1;
    pointer-events:none;
    background-repeat:repeat;
    background-image:
      radial-gradient(1.5px 1.5px at 18% 22%, rgba(245,239,224,.9), transparent),
      radial-gradient(1px 1px at 42% 64%, rgba(240,208,128,.8), transparent),
      radial-gradient(1.5px 1.5px at 72% 18%, rgba(245,239,224,.85), transparent),
      radial-gradient(1px 1px at 88% 52%, rgba(192,200,216,.7), transparent),
      radial-gradient(1.5px 1.5px at 30% 82%, rgba(240,208,128,.75), transparent),
      radial-gradient(1px 1px at 60% 38%, rgba(245,239,224,.7), transparent),
      radial-gradient(1.5px 1.5px at 8% 58%, rgba(192,200,216,.65), transparent),
      radial-gradient(1px 1px at 50% 8%, rgba(240,208,128,.7), transparent);
  }
  @media (prefers-reduced-motion: no-preference){
    .hero-stars{animation:luxTwinkle 6s ease-in-out infinite;}
    @keyframes luxTwinkle{
      0%,100%{opacity:.35;transform:translateY(0);}
      50%{opacity:.85;transform:translateY(-4px);}
    }
  }
