    :root {
      --bg: #030303;
      --bg-soft: #0b0b0b;
      --panel: #090909;
      --panel-2: #111;
      --line: rgba(255, 255, 255, 0.12);
      --text: #f2eee7;
      --muted: #c1bdb8;
      --gold: #e8c98d;
      --gold-soft: #f3dfb8;
      --red: #ca0001;
      --red-dark: #9e0505;
      --magenta: #b31c79;
      --shadow: rgba(0, 0, 0, 0.7);
      --max: 720px;
      --header-height: 66px;
      --sticky-height: 72px;
      --serif: Georgia, "Times New Roman", serif;
      --sans: Arial, Helvetica, sans-serif;
      --border: rgba(255, 255, 255, 0.13);
      --gradstart: #e9d082;
      --gradend: #c28e45;
    }

    * { box-sizing: border-box; }

    html {
      background: #000;
      color: var(--text);
      font-family: var(--sans);
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      background:
        radial-gradient(circle at 50% 20%, rgba(80, 0, 45, 0.18), transparent 28%),
        linear-gradient(180deg, #050505 0%, #000 100%);
        font-size:16px;
    }

    div#container {
      border-bottom: 1px solid #2a2a2a;
      padding-bottom:40px;
    }

    h1 { font-size:26px; }
    h2 { font-size:22px; }
    h3 { font-size:20px; }
    h4 { font-size:18px; }
    h5 { font-size:16px; }
    h6 { font-size:16px; }

    button,
    input { font: inherit; }

    .flex { display: flex; }

    strong {
      font-weight:600;
    }

    p {
      font-size:16px;
    }

    article header {
      padding-left:20px;
      padding-right:20px;
      line-height:1.5;
    }
    .entry-content {
      padding:20px;
    }

    .entry-content p {
      margin-bottom:30px;
      line-height:26px;
    }

    .entry-content a {
      color: #ddc086;
    }

    article.page h1 {
      font-size:26px;
      margin-top:30px;
      margin-bottom:15px;
      text-align:center;
    }

    article.page h2,h3,h4,h5,h6 {
      margin-bottom:15px;
      line-height:1.5;
    }

    .site-shell {
      width: min(100%, var(--max));
      margin: 0 auto;
      min-height: 100vh;
      background: #000;
      box-shadow: 0 0 40px rgba(0, 0, 0, 0.8);
      overflow: hidden;
      position: relative;
      padding-bottom: var(--sticky-height);
    }

    .topbar {
      height: var(--header-height);
      display: grid;
      grid-template-columns: 60px 1fr 60px;
      align-items: center;
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(8, 8, 8, 0.94);
      border-bottom: 1px solid var(--line);
      backdrop-filter: blur(8px);
    }

    .menu-btn,
    .cart-btn {
      appearance: none;
      border: 0;
      background: none;
      color: #eee;
      min-height: var(--header-height);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
    }

    .hamburger,
    .hamburger::before,
    .hamburger::after {
      display: block;
      width: 24px;
      height: 2px;
      background: #ddd;
      position: relative;
    }

    .hamburger::before,
    .hamburger::after {
      content: "";
      position: absolute;
      left: 0;
    }

    .hamburger::before { top: -8px; }
    .hamburger::after { top: 8px; }

    .brand {
      text-align: center;
      font-family: var(--serif);
      letter-spacing: 0.16em;
      color: var(--gold);
      font-size: 1.42rem;
      line-height: 1;
      display:inline-block;
      text-decoration:none;
      width:100%;
    }

    .cart-wrap { position: relative; }
    .cart-icon { font-size: 1.55rem; line-height: 1; }
    .cart-icon img {
      display: block;
      width: 24px;
      height: 24px;
    }
    .cart-count {
      position: absolute;
      top: 13px;
      right: 10px;
      min-width: 18px;
      height: 18px;
      padding: 0 5px;
      border-radius: 999px;
      background: var(--red);
      color: #fff;
      font-size: 0.75rem;
      display: grid;
      place-items: center;
    }

    .mobile-drawer {
      display: none;
      position: absolute;
      inset: var(--header-height) auto auto 50%;
      transform: translateX(-50%);
      width: min(100%, var(--max));
      background: rgba(9, 9, 9, 0.98);
      z-index: 45;
      border-bottom: 1px solid var(--line);
      padding: 24px 24px;
    }

    .mobile-drawer.is-open { display: block; }
    .mobile-drawer a {
      display: block;
      color: var(--text);
      text-decoration: none;
      padding: 13px 0;
      border-bottom: 1px solid rgba(255,255,255,0.08);
      font-family: var(--serif);
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    /* General Pages */
    #container {
      min-height: calc(100vh - 200px);
    }

    article.post {
      header.header {
        text-align:center;
        padding-top:30px;
        padding-bottom:30px;
      }
    }

    body.error404 {

      div.entry-content {
        p {
          text-align:center;
        }
      }
      form.search-form {
        display:none;
      }
    }

    /* Product Related*/

    .hero {
      padding:8px 0px;
      background:
        linear-gradient(180deg, #000 0%, #000 70%, rgba(255,255,255,0.02) 100%);
    }

    .product-art {
      display: grid;
      place-items: center;
      min-height: 255px;
      padding-top: 12px;
    }

    .lighthouse-icon {
      width: 158px;
      height: auto;
      filter: drop-shadow(0 0 20px rgba(179, 28, 121, 0.28));
    }

    .thumb-row {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin: 2px 0 15px;
    }

    .thumb {
      width: 48px;
      height: 37px;
      background: #111;
      border: 1px solid rgba(255,255,255,0.16);
      padding: 2px;
      cursor: pointer;
      opacity: 0.75;
      display: grid;
      place-items: center;
    }

    .thumb.is-active {
      border-color: var(--red);
      opacity: 1;
    }

    .thumb img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
      border: 1px solid #404040;
    }

    .product-panel {
      padding: 18px 24px 22px;
      background:
        radial-gradient(circle at 50% 0%, rgba(255,255,255,0.06), transparent 46%),
        linear-gradient(180deg, #0b0b0b 0%, #060606 100%);
      box-shadow: inset 0 14px 24px rgba(255,255,255,0.02);
      text-align:center;
    }

    .eyebrow {
      margin: 0 0 12px;
      color: var(--red);
      font-family: var(--serif);
      text-transform: uppercase;
      letter-spacing: 0.12em;
      font-size: 1.5rem;
      line-height: 1.25;
      text-shadow: 0 0 16px rgba(237, 34, 27, 0.18);
    }

    .tagline {
      margin: 0 0 18px;
      color: var(--text);
      font-size: 1.08rem;
      line-height: 1.45;
    }

    .price-row {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 18px;
      margin: 18px 0 22px;
    }

    .price-main {
      color: var(--gold);
      font-family: var(--serif);
      font-size: 1.75rem;
      letter-spacing: 0.05em;
      white-space: nowrap;
      border-right: 1px solid #ccc;
      padding-right: 20px;
    }

    .price-divider {
      width: 1px;
      height: 45px;
      background: rgba(255,255,255,0.3);
    }

    .compare-wrap {
      color: var(--muted);
      font-size: 1rem;
      line-height: 1.4;
      padding-left: 5px;
    }

    .compare-price { text-decoration: line-through; }
    .save { color: var(--gold); }

    .cta {
      width: 100%;
      min-height: 45px;
      border: 0;
      border-radius: 2px;
      background: linear-gradient(180deg, #f3342d 0%, #c70707 100%);
      color: #fff;
      font-family: var(--sans);
      font-size: 1.08rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.22), 0 8px 20px rgba(130,0,0,0.25);
      cursor: pointer;
      max-width:520px;
    }

    .cta:hover { filter: brightness(1.08); }
    .cta:active { transform: translateY(1px); }

    .shopify-note {
      margin: 9px auto 0;
      display: table;
      background: #000;
      padding: 2px 7px;
      color: #d8d1ca;
      text-transform: uppercase;
      letter-spacing: 0.02em;
      font-size: 0.72rem;
    }

    .trust-row {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 9px 18px;
      margin: 8px 0 0;
      color: #ddd;
      font-size: 0.95rem;
      margin-top:15px;
    }

    .trust-row span::before {
      content: "✓";
      color: var(--gold);
      margin-right: 7px;
      font-weight: bold;
    }

    .accordion {
      border-top: 1px solid var(--line);
      background: #060606;
      margin-top:30px;
      margin-bottom:50px;
    }

    .acc-item { border-bottom: 1px solid var(--line); }

    .acc-trigger {
      width: 100%;
      min-height: 55px;
      padding: 0 24px;
      border: 0;
      background: transparent;
      color: var(--text);
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-family: var(--serif);
      font-size: 1.3rem;
      letter-spacing: 0.04em;
      cursor: pointer;
      text-align: left;
    }

    .acc-icon {
      font-family: var(--sans);
      font-size: 1.8rem;
      font-weight: 200;
      line-height: 1;
      transition: transform 180ms ease;
    }

    .acc-item.is-open .acc-icon { transform: rotate(45deg); }

    .acc-content {
      display: none;
      padding: 0 24px 18px;
      color: var(--muted);
      line-height: 1.55;
      font-size: 0.95rem;

      p, ul { font-size:14px; margin-bottom:20px; }
      ul {
        list-style:disc;
        margin-left:15px;
      }

      h3 {
        font-size:16px;
        font-weight:600;
      }
    }

    .acc-item.is-open .acc-content { display: block; }

    .sticky-buy {
      position: fixed;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      z-index: 60;
      width: min(100%, var(--max));
      padding: 9px 18px 14px;
      background: rgba(9,9,9,0.96);
      border-top: 1px solid var(--line);
      backdrop-filter: blur(8px);
      box-shadow: 0 -14px 35px rgba(0,0,0,0.7);
    }

    .sticky-inner {
      display: grid;
      grid-template-columns: 100px 1fr;
      gap: 10px;
      align-items: center;
      background: #141414;
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: 7px;
      padding: 4px;
    }

    .sticky-price {
      text-align: center;
      color: var(--text);
      font-family: var(--serif);
      font-size: 1rem;
    }

    .sticky-inner .cta {
      min-height: 38px;
      font-size: 1rem;
    }

    .bundle-section,
    .starter-section,
    .benefits-section {
      padding: 0 22px 22px;
      background: #050505;
    }

    .ben-top {
      justify-content: center;
      align-items:center;
      gap:10px;
      margin-bottom:5px;
    }

    .bundle-card {
      border: 1px solid rgba(255,255,255,0.16);
      background:
        radial-gradient(circle at 50% 0%, rgba(255,255,255,0.05), transparent 40%),
        #070707;
      padding: 0 12px 16px;
    }

    .section-ribbon {
      display: table;
      margin: 0 auto 13px;
      transform: translateY(-1px);
      background: #000;
      color: var(--text);
      font-family: var(--serif);
      font-size: 0.87rem;
      text-transform: uppercase;
      padding: 4px 11px;
      letter-spacing: 0.02em;
      text-align: center;
      padding-top: 0px;
      margin-top: -6px;
    }

    .bundle-product {
      display: grid;
      grid-template-columns: 62px 1fr auto;
      gap: 10px;
      align-items: center;
      padding: 7px 0 12px;
      border-bottom: 1px solid rgba(255,255,255,0.09);
    }

    .bundle-product img {
      width: 58px;
      height: 58px;
      object-fit: contain;
    }

    .bundle-title {
      font-size: 1rem;
      margin-bottom: 7px;
    }

    .bundle-sub {
      color: var(--text);
      font-size: 0.85rem;
      line-height: 1.2;
    }

    .bundle-price {
      color: var(--text);
      font-size: 0.95rem;
      line-height:1;
      text-align: right;
      height:53px;
    }

    .bundle-first-price {
      margin-bottom:5px;
    }

    .bundle-total {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 12px;
      align-items: end;
      padding: 10px 0 14px;
      margin-bottom:10px;

      div {
        height:25px;
      }

      strong {
        margin-bottom:5px;
      }
    }

    .bundle-total strong {
      display: block;
      color: var(--red);
      font-size: 1.38rem;
      letter-spacing: 0.02em;
      text-align: right;
    }

    .bundle-total span:last-child {
      color: var(--gold);
      display: block;
      text-align: right;
      font-size: 0.95rem;
    }

    .bundle-card .cta {
      width: 68%;
      margin: 0 auto;
      display: block;
      min-height: 42px;
      font-family: var(--sans);
      font-weight: 700;
      font-size: 0.95rem;
    }

    .starter-card {
      border: 1px solid rgba(255,255,255,0.08);
      background: linear-gradient(180deg, #080808, #030303);
      padding: 16px 20px 12px;
      text-align: center;
    }

    .starter-card h2 {
      margin: 0 0 8px;
      font-family: var(--serif);
      font-weight: 400;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      font-size: 1.18rem;
    }

    .starter-card p {
      margin: 0;
      color: var(--muted);
      font-size: 0.97rem;
    }

    .starter-card::after {
      content: "";
      display: block;
      height: 1px;
      margin-top: 14px;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.16), transparent);
    }

    .benefits-section {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 18px 10px;
      text-align: center;
      padding-top: 8px;
    }

    .benefit-icon {
      color: var(--gold);
      font-size: 1.35rem;
      img {
        width:21px;
        height:21px;
      }
    }

    .benefit-title {
      font-family: var(--serif);
      font-size: 0.98rem;
      margin-bottom: 0px;
      height:24px;
    }

    .benefit-text {
      color: var(--muted);
      font-size: 0.8rem;
      line-height: 1.35;
    }

    .benefit-wide { grid-column: 1 / -1; }

    .second-product { padding-top: 24px; }

    /* Single Product */
  .single-product__container {
    flex-direction: column;
    padding:0px;
  }

  /* Collections /Home */
  .collection-heading {
    text-align:center;
    margin-top:20px;
    margin-bottom:40px;
    h2 {
      font-size:34px;
      margin-bottom:20px;
    }
  }

  .product-card {
    background: #1b1b1b;
    border: 1px solid #dfc288;
  }
  .product-card__price {
    color: #ccc;
    margin-top: 10px;
    margin-bottom:0px !important;
  }
  .product-card .product-card__details .product-card__title {
    color: #fff;
    line-height: 24px;
  }

  .product-card .product-card__details {
    padding: 20px 10px;
  }

  /* Bundle List Items */
  .bundle-product-ilist {
    display: flex;
    justify-content: center;
    gap: 40px;
  }

  .bpitemslabel {
    text-align:left;
  }

  .post-edit-link { display:none; }
  a.white-link {
    color: #ddd;
    text-decoration:none;
  }
  a.white-link:hover {
    color: var(--gold);
  }

  .btn a {
    background: #ddc086;
    color: #111;
    padding: 10px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
  }

  .btn a:hover {
    background: #a30405;
    color: #ddd;
  }

  /* Fancy Bundle Box */
  .goldgradText {
      background: #E9D082;
      background: linear-gradient(to bottom, #E9D082 0%, #C28E45 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
  }
  .redgradText {
      background: #ca0001;
      background: linear-gradient(to bottom, #ca0001 0%, #9e0505 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
  }

  .ksbdl-badge img{
      max-width:100px;
      max-height:100px;
  }

  .ksbdl-li-ico img {
     width:40px;
     height:40px;
  }

  .ksbdl-vi-ico img {
    width:30px;
    height:30px;
  }

  .ksbundle, .bundle-items-v2 {
    h2 {
      color:var(--red);
      font-size:20px;
      text-align:center;
      font-weight:600;
      display:flex;
      align-items:center;
      justify-content:center;
    }

    h2:before {
      content:" ";
      display:inline-block;
      border-bottom:1px solid var(--red);
      width:15%;
      margin-right:4%
    }

    h2:after {
      content:" ";
      display:inline-block;
      border-bottom:1px solid var(--red);
      width:15%;
      margin-left:4%;
    }
  }

  .ksbundle .ksbdl-subtext {
    text-align:center;
    margin-top:20px;
    margin-bottom:20px;
    font-size:30px;
    font-weight:600;
    line-height:1.1;
    font-family:var(--serif);
    letter-spacing:0.15rem;

    .bsubtB {
      margin-top:8px;
    }
  }

  .ksbdl-body {
    border:1px solid #ccc;
    border-radius:20px;
    padding:15px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
  }

  .ksbdl-offer-details {
    gap:20px;
    margin-bottom:20px;
    align-items: center;

    .ksbdl-line-items {
      flex-basis:100%;
    }

    .ksbdl-lineitem {
      padding:10px;
      gap:10px;
      align-items:center;
      justify-content: space-between;

      .ksbdl-li-text {
        flex-basis:100%;
      }
    }

    .ksbdl-mainitem {
      border-bottom:1px dotted #ccc;
    }

    .ksbdl-addons .ksbdl-li-text {
      font-size:14px;
      line-height: 20px;
    }

    .hitext {
      color:var(--gradstart);
    }
  }
  .ksbdl-offer-details:hover, .toy-product-title:hover {
    background: #161515;
    cursor:pointer;
  }

  .toy-product-title {
    padding:10px;
  }

  .ksbdl-prices {
    margin-bottom:15px;
    justify-content: space-around;
    border: 1px solid #333;
    padding: 10px;
    border-radius: 10px;

    .ksbdl-priceitem {
      text-align:center;
      > div {
        margin-bottom:10px;
      }
      > div:last-child {
        margin-bottom:0px;
      }
    }

    .pricei-head {
      font-size:13px;
    }
    .pricei-bigprice {
      font-size:36px;
      font-weight:600;
      line-height:1;
    }
    .pricei-oldprice {
      font-size:13px;
      color:#555;
      text-decoration: line-through;
    }
  }

  .ksbdl-button {
    margin-bottom:30px;
    font-family:var(--sans);
  }

  .ksbdl-value-items {
    justify-content: space-between;
    gap:20px;
    align-items: center;
    flex-wrap:wrap;
  }

  .ksbdl-value-items {
    justify-content:center;
    align-items:center;

    .ksbdl-value-item {
      gap:10px;
    }
  }


  /* Bundle Items on Bundle Page */
  .bndlitems {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    margin-top:30px;

    .ksbdl-lineitem {
      justify-content: space-between;
      gap:20px;
      margin-top:10px;
      align-items:center;
    }
    .ksbdl-li-text {
      flex-basis: 100%;
      text-align:left;
      line-height:1.2;
    }
  }

  .crosssell-prices {
      display: flex;
      gap: 12px;
      justify-content: center;
      div {
        height:unset;
      }
      strong {
        text-align:center;
      }
  }

  .crosssell-line-price {
    height:unset;
  }

  .crosssell-orig-price {
    text-decoration: line-through;
  }


  .ksbdl-prices {
    margin-top:30px;
    max-width:520px;
    margin-left:auto;
    margin-right:auto;
  }

  /* Bundle Items below main title on Bundle product page */
  .bundle-items-v2 {
    p {font-size:14px;}

    h2 {
      font-size:20px;
      margin-bottom:20px;
    }

    h2:before, h2:after {
      border-bottom:1px solid #E9D082;
      width:10%;
    }

    .redplus {
      color:var(--red);
      font-size:18px;
      font-weight:600;
      margin-top:5px;
      margin-bottom:5px;
    }

    .items-subtext {
      margin-top:20px;
      max-width:500px;
      margin-left:auto;
      margin-right:auto;
      p {
        line-height:1.3
      }
    }

    .spectext {
      margin-top:5px;
      font-size:13px;
      font-weight:600;
    }
  }

  /* Footer */
  .site-footer {
    background: #090909;
    color: var(--muted);
    text-align: center;
    font-size: 0.9rem;
    padding:40px 20px;
    /* justify-content: space-between;
    align-items: center; */

    nav {
      margin-bottom:20px;
    }

    ul {
      display:flex;
      gap:15px;
      justify-content: center;
    }

    ul li { 
      a {
        color:#fff;
        text-decoration:none;
        font-size:12px;
      }
    }

    
    #copyright, #footer-menu {
      display:block;
    }
    #copyright {
      font-size:10px;
    }
  }

  li.current-menu-item a {
    opacity:0.7
  }

  @media (min-width: 700px) {
    :root { --max: 740px; }
  }

  @media (max-width: 640px) {
      .ksbdl-offer-details {
        flex-wrap: wrap;
        justify-content: center;
      }

      /* Bundle Items on Bundle Page */
      .ksbdl-li-text {
        br {
          display:none;
        }
      }

      .ksbdl-value-items {
        justify-content: left;
        padding-left: 10%;
      }

      .ksbundle {
        & h2 {
          color: var(--red);
          font-size: 16px;
        }
      }
