


            :root {
            --primary: #6d3ccf;
            --primary-dark: #4f24a7;
            --primary-soft: #f3edff;
            --gold: #d4af37;
            --gold-soft: #f7ecd0;
            --text: #161616;
            --muted: #6f6b78;
            --white: #ffffff;
            --bg: #fcfbfe;
            --bg-soft: #f8f6fc;
            --border: #e8e1f2;
            --shadow: 0 16px 40px rgba(70, 40, 140, .10);
            --radius: 24px;
            --navH: 86px;
        }

    
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background: var(--bg);
            color: var(--text);
            overflow-x: hidden;
        }

        img {
            max-width: 100%;
            display: block;
            height: auto;
        }

        a {
            text-decoration: none;
        }
    /* ===== GLOBAL ===== */

  
        /* =========================
       NAVBAR
    ========================= */
        .dm-navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(255, 255, 255, .92);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border-bottom: 1px solid rgba(109, 60, 207, .10);
            transition: .3s ease;
        }

        .dm-navbar.scrolled {
            box-shadow: 0 8px 24px rgba(0, 0, 0, .06);
        }

        .navbar-inner {
            min-height: var(--navH);
        }

        .brand-wrap {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .brand-logo {
            width: 52px;
            height: 52px;
            border-radius: 16px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 1.2rem;
            box-shadow: 0 10px 22px rgba(109, 60, 207, .18);
            flex-shrink: 0;
        }

        .brand-text {
            line-height: 1.04;
        }

        .brand-text strong {
            display: block;
            font-size: 1rem;
            font-weight: 800;
            color: var(--text);
        }

        .brand-text span {
            display: block;
            font-size: .78rem;
            color: var(--muted);
            font-weight: 500;
        }

        .desktop-nav {
            display: flex;
            align-items: center;
            gap: 24px;
        }

        .desktop-nav .nav-link {
            color: var(--text);
            font-weight: 600;
            font-size: .95rem;
            padding: 0;
            position: relative;
        }

        .desktop-nav .nav-link::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -8px;
            width: 0;
            height: 2px;
            border-radius: 20px;
            background: linear-gradient(135deg, var(--primary), var(--gold));
            transition: .3s ease;
        }

        .desktop-nav .nav-link:hover::after,
        .desktop-nav .nav-link.active::after {
            width: 100%;
        }

        .desktop-actions {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-left: 22px;
        }

        .top-pill {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 9px 14px;
            border-radius: 999px;
            background: #fff;
            border: 1px solid var(--border);
            color: var(--text);
            font-size: .84rem;
            font-weight: 600;
            white-space: nowrap;
            box-shadow: 0 6px 14px rgba(0, 0, 0, .03);
        }

        .top-pill i {
            color: var(--primary);
        }

        .nav-cta {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 20px;
            border: none;
            border-radius: 999px;
            color: #fff;
            font-weight: 700;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            box-shadow: 0 12px 26px rgba(109, 60, 207, .22);
            transition: .3s ease;
        }

        .nav-cta:hover {
            transform: translateY(-2px);
            color: #fff;
        }

        .mobile-toggle {
            width: 46px;
            height: 46px;
            border-radius: 14px;
            border: 1px solid var(--border);
            background: #fff;
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.35rem;
        }

        /* =========================
       OFFCANVAS
    ========================= */
        .offcanvas.dm-offcanvas {
            width: 310px;
            background: #fff;
            border-right: 1px solid var(--border);
        }

        .dm-offcanvas .offcanvas-header {
            padding: 20px 20px 8px;
        }

        .dm-offcanvas .offcanvas-body {
            padding: 12px 20px 24px;
        }

        .mobile-brand {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .mobile-menu-links {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-top: 14px;
        }

        .mobile-menu-links a {
            padding: 12px 14px;
            border: 1px solid var(--border);
            border-radius: 14px;
            color: var(--text);
            font-weight: 600;
            background: #fff;
            transition: .3s ease;
        }

        .mobile-menu-links a:hover {
            background: var(--primary-soft);
            color: var(--primary-dark);
        }

        .mobile-utility {
            display: grid;
            gap: 12px;
            margin-top: 20px;
        }

        /* =========================
       TOGGLE STYLE
    ========================= */
        .toggle-group {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .toggle-label {
            width: 40px;
            height: 40px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #fff;
            border: 1px solid var(--border);
            color: var(--primary);
            flex-shrink: 0;
            box-shadow: 0 6px 16px rgba(109, 60, 207, .05);
        }

        .switch-toggle {
            display: inline-flex;
            align-items: center;
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 999px;
            padding: 4px;
            gap: 4px;
            box-shadow: 0 8px 20px rgba(109, 60, 207, .06);
        }

        .toggle-btn {
            border: none;
            background: transparent;
            color: var(--text);
            font-size: .83rem;
            font-weight: 600;
            padding: 9px 14px;
            border-radius: 999px;
            transition: all .3s ease;
            white-space: nowrap;
        }

        .toggle-btn.active {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: #fff;
            box-shadow: 0 10px 22px rgba(109, 60, 207, .18);
        }

        .toggle-btn:hover {
            color: var(--primary-dark);
            background: var(--primary-soft);
        }

        .toggle-btn.active:hover {
            color: #fff;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
        }

        .brand-logo-img {
            height: 72px;
            width: auto;
            object-fit: contain;
            display: block;
        }

        .mobile-brand .brand-logo-img {
            height: 58px;
            width: auto;
        }

        @media (max-width: 767.98px) {
            .brand-logo-img {
                height: 62px;
            }

            .mobile-brand .brand-logo-img {
                height: 62px;
            }
        }
        

        a{
          text-decoration: none;
        }







    






        /* ✅ different root name */
    .ewbd-root{
      --ewbd-bg:#f8fafc;
      --ewbd-card:#ffffff;
      --ewbd-text:#0f172a;
      --ewbd-muted:#64748b;
      --ewbd-border:rgba(15,23,42,.10);

      --ewbd-brand:#0f766e;
      --ewbd-brand-2:#115e59;
      --ewbd-soft:rgba(15,118,110,.10);

      --ewbd-shadow:0 18px 55px rgba(15,23,42,.10);
      --ewbd-radius:20px;
      --ewbd-container:1200px;
    }
/* 
    html,body{height:100%}
    body{
      font-family:"Poppins",sans-serif;
      background:var(--ewbd-bg);
      color:var(--ewbd-text);
    } */

    /* ✅ hide scrollbar but keep scroll */
    body{
      -ms-overflow-style:none;
      scrollbar-width:none;
    }
    body::-webkit-scrollbar{display:none}

    .ewbd-wrap{
     
      margin:0 auto;
      padding: 46px 18px 70px;
    }

    /* breadcrumb */
    .ewbd-bc{
      display:flex; flex-wrap:wrap; gap:8px;
      color:var(--ewbd-muted);
      font-size:.92rem;
      margin-bottom: 14px;
    }
    .ewbd-bc a{ color:var(--ewbd-muted); text-decoration:none; font-weight:600; }
    .ewbd-bc a:hover{ color:var(--ewbd-brand-2); }

    /* main card */
    .ewbd-card{
      background:var(--ewbd-card);
      border:1px solid var(--ewbd-border);
      border-radius: var(--ewbd-radius);
      box-shadow: var(--ewbd-shadow);
      overflow:hidden;
    }

    .ewbd-cover{
      position:relative;
      border-radius: 18px;
      overflow:hidden;
      border:1px solid var(--ewbd-border);
      background:#e2e8f0;
    }
    .ewbd-cover img{
      width:100%;
      height:auto;
      display:block;
    }
    .ewbd-chip{
      position:absolute;
      left:12px;
      top:12px;
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 12px;
      border-radius:999px;
      background:rgba(255,255,255,.92);
      border:1px solid var(--ewbd-border);
      font-weight:800;
      font-size:.85rem;
    }

    .ewbd-title{
      font-size: clamp(1.5rem, 2.6vw, 2.2rem);
      font-weight: 800;
      letter-spacing:-.02em;
      margin: 0 0 10px;
    }
    .ewbd-meta{
      display:flex; flex-wrap:wrap; gap:12px;
      color:var(--ewbd-muted);
      font-size:.95rem;
      margin-bottom: 14px;
    }

    .ewbd-price{
      display:flex; align-items:baseline; gap:10px;
      margin: 12px 0 14px;
    }
    .ewbd-price .val{
      font-size: 1.6rem;
      font-weight: 900;
      letter-spacing: -.02em;
      color: var(--ewbd-brand-2);
    }
    .ewbd-price .note{
      color: var(--ewbd-muted);
      font-size: .95rem;
    }

    .ewbd-actions{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      margin-top: 10px;
    }
    .ewbd-btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      padding:12px 16px;
      border-radius:14px;
      border:1px solid transparent;
      font-weight:800;
      text-decoration:none;
      transition: transform .15s ease, background .15s ease, border-color .15s ease;
      white-space:nowrap;
    }
    .ewbd-btn:hover{ transform: translateY(-1px); }
    .ewbd-btn.primary{
      background: #000 !important;
      border-color: #000 !important;
      color:#fff;
    }
    .ewbd-btn.primary:hover{
      background: var(--ewbd-brand-2);
      border-color: var(--ewbd-brand-2);
      color:#fff;
    }
    .ewbd-btn.ghost{
      background: rgba(15,118,110,.08);
      border-color: rgba(15,118,110,.22);
      color: var(--ewbd-brand-2);
    }
    .ewbd-btn.ghost:hover{
      background: rgba(15,118,110,.14);
      border-color: rgba(15,118,110,.30);
      color: var(--ewbd-brand-2);
    }

    .ewbd-divider{
      border-top:1px dashed rgba(15,23,42,.12);
      margin: 18px 0;
    }

    /* description */
    .ewbd-desc{
      color: var(--ewbd-text);
      line-height: 1.75;
      font-size: 1rem;
    }
    .ewbd-desc p{ margin-bottom: 12px; color: var(--ewbd-text); }
    .ewbd-desc ul{ padding-left: 1.2rem; }

    /* related */
    .ewbd-related-title{
      margin: 30px 0 14px;
      font-weight: 900;
      letter-spacing:-.01em;
      font-size: 1.2rem;
    }
    .ewbd-mini{
      height:100%;
      background:#fff;
      border:1px solid var(--ewbd-border);
      border-radius: 16px;
      overflow:hidden;
      box-shadow: 0 12px 35px rgba(15,23,42,.08);
      transition: transform .18s ease, box-shadow .18s ease;
    }
    .ewbd-mini:hover{
      transform: translateY(-3px);
      box-shadow: 0 18px 55px rgba(15,23,42,.12);
    }
    .ewbd-mini-thumb{
      aspect-ratio: 16/10;
      background:#e2e8f0;
      overflow:hidden;
    }
    .ewbd-mini-thumb img{
      width:100%; height:100%; object-fit:cover; display:block;
      transition: transform .35s ease;
    }
    .ewbd-mini:hover .ewbd-mini-thumb img{ transform: scale(1.08); }
    .ewbd-mini-body{ padding: 12px 12px 14px; }
    .ewbd-mini-title{
      font-weight: 800;
      font-size: .98rem;
      margin: 0 0 8px;
      line-height: 1.35;
    }
    .ewbd-mini-price{ font-weight: 900; color: var(--ewbd-brand-2); }

    /* reveal animation */
    .ewbd-reveal{
      opacity:0;
      transform: translateY(18px);
      transition: opacity .6s ease, transform .6s ease;
      will-change: opacity, transform;
    }
    .ewbd-reveal.is-visible{
      opacity:1;
      transform: translateY(0);
    }

    @media (max-width: 575.98px){
      .ewbd-actions .ewbd-btn{ width:100%; }
      .ewbd-cover{ border-radius: 16px; }
    }















    
        /* =========================
       FOOTER
    ========================= */
        .footer {
            background: #121019;
            color: #fff;
            padding: 80px 0 24px;
            overflow: hidden;
        }

        .footer-brand h4 {
            font-size: 1.4rem;
            font-weight: 800;
            margin-bottom: 10px;
        }

        .footer-brand p {
            color: rgba(255, 255, 255, .72);
            line-height: 1.8;
            max-width: 430px;
        }

        .footer-title {
            font-size: 1.03rem;
            font-weight: 800;
            margin-bottom: 18px;
            color: #fff;
        }

        .footer-card {
            background: rgba(255, 255, 255, .05);
            border: 1px solid rgba(255, 255, 255, .08);
            border-radius: 22px;
            padding: 22px;
            height: 100%;
        }

        .footer-card p,
        .footer-card a {
            color: rgba(255, 255, 255, .76);
            line-height: 1.9;
            margin: 0;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
            display: grid;
            gap: 12px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, .76);
            font-weight: 500;
        }

        .footer-links a:hover {
            color: #fff;
        }

        .social-links {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 18px;
        }

        .social-links a {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, .08);
            border: 1px solid rgba(255, 255, 255, .12);
            color: #fff;
            transition: .3s ease;
        }

        .social-links a:hover {
            background: var(--primary);
            transform: translateY(-3px);
            color: #fff;
        }

        .newsletter-form {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 14px;
        }

        .newsletter-form input {
            flex: 1;
            min-width: 220px;
            height: 50px;
            border: none;
            outline: none;
            border-radius: 14px;
            padding: 0 16px;
            background: #fff;
        }

        .newsletter-form button {
            height: 50px;
            border: none;
            border-radius: 14px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: #fff;
            padding: 0 20px;
            font-weight: 700;
        }

        .footer-bottom {
            margin-top: 36px;
            padding-top: 18px;
            border-top: 1px solid rgba(255, 255, 255, .08);
            text-align: center;
            color: rgba(255, 255, 255, .62);
            font-size: .94rem;
        }

        .footer-logo-link{
  display:inline-block;
  margin-bottom:16px;
}

.footer-logo-img{
  max-height:82px;
  width:auto;
  display:block;
  object-fit:contain;
}

@media (max-width: 767.98px){
  .footer-logo-img{
    max-height:62px;
  }
}