
    /* RESET */
    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0
    }

    html {
      scroll-behavior: smooth;
      -webkit-font-smoothing: antialiased
    }

    body {
      background: #080808;
      color: #E8E4D8;
      font-family: 'DM Sans', sans-serif;
      overflow-x: hidden;
      padding-top: 62px
    }

    ::-webkit-scrollbar {
      width: 3px
    }

    ::-webkit-scrollbar-thumb {
      background: #C9A84C;
      border-radius: 2px
    }

    a {
      text-decoration: none;
      color: inherit
    }

    img {
      display: block;
      max-width: 100%
    }

    button,
    input,
    select,
    textarea {
      font-family: 'DM Sans', sans-serif
    }

    /* TOKENS */
    :root {
      --g: #C9A84C;
      --gd: rgba(201, 168, 76, .10);
      --gb: rgba(201, 168, 76, .18);
      --bg: #080808;
      --s1: #111;
      --s2: #161616;
      --s3: #1c1c1c;
      --br: rgba(201, 168, 76, .14);
      --tx: #E8E4D8;
      --mu: #575757;
      --r: .5rem
    }

    /* TOP NAV */
    .tnav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 9000;
      height: 62px;
      display: flex;
      align-items: center;
      padding: 0 1.5rem;
      background: rgba(8, 8, 8, .97);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--br)
    }

    .tnav-logo {
      flex-shrink: 0;
      margin-right: 1rem;
      display: flex;
      align-items: center
    }

    .tnav-logo img {
      height: 32px
    }

    .tnav-rule {
      width: 1px;
      height: 20px;
      background: var(--gb);
      flex-shrink: 0;
      margin-right: .5rem
    }

    .tnav-links {
      display: flex;
      align-items: center;
      gap: .05rem;
      overflow-x: auto;
      flex: 1;
      scrollbar-width: none
    }

    .tnav-links::-webkit-scrollbar {
      display: none
    }

    .tnl {
      display: flex;
      align-items: center;
      gap: .24rem;
      padding: .26rem .6rem;
      border-radius: 2rem;
      font-size: .71rem;
      color: var(--mu);
      border: 1px solid transparent;
      white-space: nowrap;
      flex-shrink: 0;
      transition: color .15s, background .15s, border-color .15s
    }

    .tnl:hover {
      color: var(--g);
      background: var(--gd);
      border-color: var(--gb)
    }

    .tnl.on {
      color: var(--g);
      background: var(--gd);
      border-color: var(--gb);
      font-weight: 600
    }

    .tnav-r {
      margin-left: auto;
      display: flex;
      align-items: center;
      gap: .5rem;
      flex-shrink: 0;
      padding-left: .75rem
    }

    .tnav-btn {
      background: none;
      border: none;
      color: var(--mu);
      cursor: pointer;
      font-size: .78rem;
      display: flex;
      align-items: center;
      gap: .28rem;
      padding: .28rem .52rem;
      border-radius: .28rem;
      transition: color .15s, background .15s
    }

    .tnav-btn:hover {
      color: var(--g);
      background: var(--gd)
    }

    .tnav-btn .badge {
      background: var(--g);
      color: var(--bg);
      font-size: .58rem;
      font-weight: 700;
      min-width: 16px;
      height: 16px;
      border-radius: 2rem;
      padding: 0 .28rem;
      display: inline-flex;
      align-items: center;
      justify-content: center
    }

    .tnav-ham {
      display: none;
      background: none;
      border: 1px solid var(--gb);
      color: var(--g);
      width: 34px;
      height: 34px;
      border-radius: 6px;
      cursor: pointer;
      font-size: 1rem;
      align-items: center;
      justify-content: center
    }

    /* MALL SUB-HEADER (category nav) */
    .mall-subnav {
      position: fixed;
      top: 62px;
      left: 0;
      right: 0;
      z-index: 8900;
      background: rgba(11, 11, 11, .97);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(201, 168, 76, .09);
      overflow-x: auto;
      scrollbar-width: none;
    }

    .mall-subnav::-webkit-scrollbar {
      display: none
    }

    .mall-subnav-in {
      display: flex;
      align-items: center;
      gap: .06rem;
      padding: .55rem 1.5rem;
      min-width: max-content;
    }

    .msnl {
      display: flex;
      align-items: center;
      gap: .28rem;
      padding: .26rem .62rem;
      border-radius: 2rem;
      font-size: .71rem;
      color: var(--mu);
      white-space: nowrap;
      transition: color .15s, background .15s;
      border: 1px solid transparent
    }

    .msnl:hover {
      color: var(--g);
      background: var(--gd)
    }

    .msnl.on {
      color: var(--g);
      background: var(--gd);
      border-color: var(--gb);
      font-weight: 600
    }

    body.has-subnav {
      padding-top: 100px
    }

    /* MOBILE DRAWER */
    .drawer {
      position: fixed;
      top: 0;
      right: -290px;
      width: 280px;
      height: 100vh;
      z-index: 9100;
      background: #0d0d0d;
      border-left: 1px solid var(--br);
      padding: 1.4rem 1.25rem;
      display: flex;
      flex-direction: column;
      transition: right .28s cubic-bezier(.4, 0, .2, 1);
      overflow-y: auto
    }

    .drawer.open {
      right: 0
    }

    .dov {
      position: fixed;
      inset: 0;
      z-index: 9050;
      background: rgba(0, 0, 0, .7);
      display: none
    }

    .dov.open {
      display: block
    }

    .d-x {
      background: none;
      border: none;
      color: var(--mu);
      font-size: 1.2rem;
      cursor: pointer;
      align-self: flex-end;
      margin-bottom: 1rem
    }

    .d-logo {
      height: 28px;
      margin-bottom: 1.1rem
    }

    .d-sec {
      font-size: .58rem;
      letter-spacing: .14em;
      color: var(--g);
      text-transform: uppercase;
      margin: .9rem 0 .35rem
    }

    .d-link {
      display: flex;
      align-items: center;
      gap: .55rem;
      padding: .55rem 0;
      font-size: .8rem;
      color: #777;
      border-bottom: 1px solid rgba(201, 168, 76, .06);
      transition: color .15s
    }

    .d-link:hover,
    .d-link.on {
      color: var(--g)
    }

    .d-sub {
      font-size: .62rem;
      color: #2e2e2e;
      padding: .75rem 0 0;
      line-height: 1.65
    }

    @media(max-width:860px) {

      .tnav-links,
      .tnav-rule {
        display: none
      }

      .tnav-ham {
        display: flex
      }
    }

    /* LAYOUT */
    .wrap {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 1.5rem
    }

    .wrap-sm {
      max-width: 900px;
      margin: 0 auto;
      padding: 0 1.5rem
    }

    .page-sec {
      padding: 4rem 0
    }

    .page-sec.sec-dark {
      background: linear-gradient(135deg, #0d0b04, #121008, #0d0b04);
      border-top: 1px solid var(--br);
      border-bottom: 1px solid var(--br)
    }

    .tc {
      text-align: center
    }

    .g-rule {
      height: 1px;
      border: none;
      background: linear-gradient(90deg, transparent, rgba(201, 168, 76, .28), transparent)
    }

    /* BREADCRUMB */
    .bc {
      display: flex;
      align-items: center;
      gap: .4rem;
      font-size: .72rem;
      color: var(--mu);
      padding: 1.1rem 0;
      flex-wrap: wrap
    }

    .bc a {
      color: var(--mu);
      transition: color .15s
    }

    .bc a:hover {
      color: var(--g)
    }

    .bc .sep {
      color: #333
    }

    .bc .cur {
      color: var(--tx)
    }

    /* TYPOGRAPHY */
    .eye {
      display: inline-block;
      font-size: .62rem;
      letter-spacing: .16em;
      color: var(--g);
      text-transform: uppercase;
      background: var(--gd);
      border: 1px solid var(--gb);
      padding: .17rem .72rem;
      border-radius: 2rem;
      margin-bottom: .82rem
    }

    .h1 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.2rem, 5vw, 4.5rem);
      font-weight: 700;
      line-height: 1.05
    }

    .h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.7rem, 3.5vw, 2.9rem);
      font-weight: 700;
      line-height: 1.08
    }

    .h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.25rem, 2.2vw, 1.9rem);
      font-weight: 700;
      line-height: 1.1
    }

    .h1 em,
    .h2 em,
    .h3 em {
      color: var(--g);
      font-style: normal
    }

    .gu {
      font-family: 'Hind Vadodara', sans-serif;
      font-weight: 700;
      color: var(--g);
      font-size: .82rem;
      margin: .25rem 0 .5rem
    }

    .gu-xl {
      font-family: 'Hind Vadodara', sans-serif;
      font-weight: 700;
      color: var(--g);
      font-size: clamp(1rem, 2vw, 1.7rem)
    }

    .sub {
      color: var(--mu);
      font-size: .88rem;
      line-height: 1.75;
      max-width: 510px;
      margin: 0 auto
    }

    .body-sm {
      font-size: .78rem;
      color: var(--mu);
      line-height: 1.65
    }

    .price {
      color: var(--g);
      font-weight: 700
    }

    /* TAGS */
    .tag {
      display: inline-block;
      font-size: .6rem;
      font-weight: 600;
      padding: .13rem .5rem;
      border-radius: 2rem;
      border: 1px solid
    }

    .t-g {
      background: var(--gd);
      border-color: var(--gb);
      color: var(--g)
    }

    .t-gr {
      background: rgba(76, 175, 125, .1);
      border-color: rgba(76, 175, 125, .25);
      color: #4CAF7D
    }

    .t-bl {
      background: rgba(91, 141, 239, .1);
      border-color: rgba(91, 141, 239, .25);
      color: #5B8DEF
    }

    .t-am {
      background: rgba(240, 165, 0, .1);
      border-color: rgba(240, 165, 0, .25);
      color: #F0A500
    }

    .t-dm {
      background: var(--s2);
      border-color: var(--br);
      color: var(--mu)
    }

    .t-rd {
      background: rgba(231, 76, 60, .1);
      border-color: rgba(231, 76, 60, .25);
      color: #E74C3C
    }

    /* BUTTONS */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: .38rem;
      border: none;
      padding: .65rem 1.55rem;
      border-radius: .3rem;
      font-weight: 700;
      font-size: .84rem;
      cursor: pointer;
      transition: opacity .18s
    }

    .btn-g {
      background: var(--g);
      color: var(--bg)
    }

    .btn-g:hover {
      opacity: .86
    }

    .btn-o {
      background: transparent;
      color: var(--g);
      border: 1px solid rgba(201, 168, 76, .35)
    }

    .btn-o:hover {
      background: var(--gd);
      border-color: var(--g)
    }

    .btn-sm {
      padding: .36rem .88rem;
      font-size: .74rem
    }

    .btn-xs {
      padding: .25rem .62rem;
      font-size: .68rem
    }

    .btn-full {
      width: 100%
    }

    .btn-icon {
      padding: .55rem;
      border-radius: .3rem
    }

    /* CARDS */
    .card {
      background: var(--s1);
      border: 1px solid var(--br);
      border-radius: var(--r);
      padding: 1.75rem
    }

    .card-sm {
      background: var(--s1);
      border: 1px solid var(--br);
      border-radius: var(--r);
      padding: 1.25rem
    }

    .ch {
      transition: transform .2s, box-shadow .2s, border-color .2s
    }

    .ch:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 36px rgba(0, 0, 0, .45);
      border-color: rgba(201, 168, 76, .32)
    }

    /* PRODUCT CARD */
    .pcard {
      background: var(--s1);
      border: 1px solid var(--br);
      border-radius: var(--r);
      overflow: hidden;
      position: relative;
      transition: transform .2s, box-shadow .2s, border-color .2s;
      display: flex;
      flex-direction: column
    }

    .pcard:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 36px rgba(0, 0, 0, .45);
      border-color: rgba(201, 168, 76, .3)
    }

    .pcard-img {
      width: 100%;
      aspect-ratio: 1;
      background: var(--s2);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2.8rem;
      border-bottom: 1px solid var(--br);
      position: relative;
      overflow: hidden
    }

    .pcard-img::after {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at center, rgba(201, 168, 76, .04), transparent 70%)
    }

    .pcard-body {
      padding: 1rem;
      flex: 1;
      display: flex;
      flex-direction: column
    }

    .pcard-subcat {
      font-size: .62rem;
      color: var(--mu);
      margin-bottom: .28rem;
      text-transform: uppercase;
      letter-spacing: .06em
    }

    .pcard-name {
      font-size: .84rem;
      font-weight: 600;
      line-height: 1.3;
      margin-bottom: .42rem;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden
    }

    .pcard-prices {
      display: flex;
      align-items: baseline;
      gap: .45rem;
      margin-bottom: .65rem
    }

    .pcard-price {
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--g)
    }

    .pcard-mrp {
      font-size: .75rem;
      color: #3a3a3a;
      text-decoration: line-through
    }

    .pcard-disc {
      font-size: .65rem;
      font-weight: 700;
      color: #4CAF7D;
      background: rgba(76, 175, 125, .1);
      border: 1px solid rgba(76, 175, 125, .2);
      padding: .06rem .36rem;
      border-radius: 2rem
    }

    .pcard-foot {
      display: flex;
      gap: .5rem;
      margin-top: auto;
      padding-top: .75rem
    }

    .pcard-badge {
      position: absolute;
      top: .65rem;
      left: .65rem;
      font-size: .6rem;
      font-weight: 700;
      padding: .12rem .45rem;
      border-radius: 2rem;
      z-index: 1
    }

    .pcard-wish {
      position: absolute;
      top: .65rem;
      right: .65rem;
      background: rgba(8, 8, 8, .7);
      border: 1px solid var(--br);
      width: 28px;
      height: 28px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: .85rem;
      transition: background .15s, border-color .15s;
      z-index: 1
    }

    .pcard-wish:hover,
    .pcard-wish.on {
      background: rgba(201, 168, 76, .15);
      border-color: var(--g)
    }

    /* PRODUCT GRIDS */
    .pgrid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
      gap: 1.1rem
    }

    .pgrid-5 {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: .9rem
    }

    .pgrid-4 {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1rem
    }

    .pgrid-3 {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1rem
    }

    @media(max-width:1100px) {
      .pgrid-5 {
        grid-template-columns: repeat(4, 1fr)
      }
    }

    @media(max-width:900px) {

      .pgrid-5,
      .pgrid-4 {
        grid-template-columns: repeat(3, 1fr)
      }
    }

    @media(max-width:680px) {

      .pgrid-5,
      .pgrid-4,
      .pgrid-3 {
        grid-template-columns: repeat(2, 1fr)
      }

      .pgrid {
        grid-template-columns: repeat(2, 1fr)
      }
    }

    @media(max-width:400px) {

      .pgrid-5,
      .pgrid-4,
      .pgrid-3,
      .pgrid {
        grid-template-columns: 1fr
      }
    }

    /* GRIDS */
    .g2 {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem
    }

    .g3 {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.25rem
    }

    .g4 {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.1rem
    }

    .ga {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      gap: 1.1rem
    }

    @media(max-width:860px) {
      .g4 {
        grid-template-columns: repeat(2, 1fr)
      }

      .g3 {
        grid-template-columns: repeat(2, 1fr)
      }
    }

    @media(max-width:540px) {

      .g2,
      .g3,
      .g4,
      .ga {
        grid-template-columns: 1fr
      }
    }

    /* SIDEBAR LAYOUT */
    .shop-layout {
      display: grid;
      grid-template-columns: 240px 1fr;
      gap: 1.5rem;
      align-items: start
    }

    @media(max-width:860px) {
      .shop-layout {
        grid-template-columns: 1fr
      }
    }

    .shop-sidebar {
      position: sticky;
      top: 110px
    }

    .sidebar-section {
      background: var(--s1);
      border: 1px solid var(--br);
      border-radius: var(--r);
      padding: 1.1rem;
      margin-bottom: .82rem
    }

    .sb-h {
      font-size: .61rem;
      letter-spacing: .11em;
      color: var(--g);
      text-transform: uppercase;
      margin-bottom: .78rem;
      padding-bottom: .3rem;
      border-bottom: 1px solid var(--br)
    }

    .sb-opt {
      display: flex;
      align-items: center;
      gap: .42rem;
      padding: .25rem 0;
      cursor: pointer
    }

    .sb-opt input {
      accent-color: var(--g);
      cursor: pointer
    }

    .sb-opt label {
      font-size: .75rem;
      color: var(--mu);
      cursor: pointer;
      flex: 1
    }

    .sb-cnt {
      font-size: .58rem;
      color: #333;
      background: var(--s2);
      padding: .04rem .32rem;
      border-radius: 2rem
    }

    .sb-link {
      display: block;
      font-size: .76rem;
      color: var(--mu);
      padding: .32rem 0;
      border-bottom: 1px solid rgba(201, 168, 76, .05);
      transition: color .15s;
      cursor: pointer
    }

    .sb-link:hover,
    .sb-link.on {
      color: var(--g)
    }

    .sb-link:last-child {
      border-bottom: none
    }

    /* TOOLBAR (filter bar above product grid) */
    .shop-toolbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: .65rem;
      padding: .85rem 0 1rem
    }

    .shop-count {
      font-size: .78rem;
      color: var(--mu)
    }

    .shop-count strong {
      color: var(--tx)
    }

    .shop-sort {
      background: var(--s1);
      border: 1px solid var(--br);
      color: var(--tx);
      padding: .36rem .68rem;
      border-radius: .3rem;
      font-size: .74rem;
      cursor: pointer
    }

    .shop-view {
      display: flex;
      gap: .28rem
    }

    .shop-view button {
      background: var(--s2);
      border: 1px solid var(--br);
      color: var(--mu);
      padding: .3rem .48rem;
      border-radius: .3rem;
      cursor: pointer;
      font-size: .78rem;
      transition: all .15s
    }

    .shop-view button.on {
      background: var(--gd);
      border-color: var(--gb);
      color: var(--g)
    }

    .search-in {
      background: var(--s1);
      border: 1px solid var(--br);
      border-radius: var(--r);
      display: flex;
      align-items: center;
      gap: .5rem;
      padding: .42rem .85rem;
      flex: 1;
      max-width: 340px
    }

    .search-in input {
      background: none;
      border: none;
      color: var(--tx);
      font-size: .82rem;
      outline: none;
      flex: 1;
      min-width: 0
    }

    .search-in .si {
      color: var(--mu);
      font-size: .85rem
    }

    /* PRODUCT DETAIL */
    .pd-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: start
    }

    @media(max-width:860px) {
      .pd-layout {
        grid-template-columns: 1fr
      }
    }

    .pd-gallery {
      position: sticky;
      top: 110px
    }

    .pd-main-img {
      width: 100%;
      aspect-ratio: 1;
      background: var(--s1);
      border: 1px solid var(--br);
      border-radius: var(--r);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 6rem;
      margin-bottom: .65rem;
      position: relative;
      overflow: hidden
    }

    .pd-thumbs {
      display: flex;
      gap: .55rem
    }

    .pd-thumb {
      width: 62px;
      height: 62px;
      background: var(--s1);
      border: 1px solid var(--br);
      border-radius: .35rem;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      cursor: pointer;
      transition: border-color .15s
    }

    .pd-thumb.on,
    .pd-thumb:hover {
      border-color: var(--g)
    }

    .pd-price-row {
      display: flex;
      align-items: baseline;
      gap: .65rem;
      margin: 1rem 0 .5rem
    }

    .pd-price {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.6rem;
      font-weight: 700;
      color: var(--g)
    }

    .pd-mrp {
      font-size: .9rem;
      color: #3a3a3a;
      text-decoration: line-through
    }

    .pd-disc {
      font-size: .78rem;
      font-weight: 700;
      color: #4CAF7D;
      background: rgba(76, 175, 125, .1);
      border: 1px solid rgba(76, 175, 125, .2);
      padding: .1rem .45rem;
      border-radius: 2rem
    }

    .pd-savings {
      font-size: .78rem;
      color: #4CAF7D
    }

    .pd-qty {
      display: flex;
      align-items: center;
      gap: 0;
      border: 1px solid var(--br);
      border-radius: .3rem;
      overflow: hidden;
      width: fit-content;
      margin: .85rem 0
    }

    .pd-qty button {
      background: var(--s2);
      border: none;
      color: var(--tx);
      width: 36px;
      height: 36px;
      cursor: pointer;
      font-size: 1.1rem;
      transition: background .15s
    }

    .pd-qty button:hover {
      background: var(--gd);
      color: var(--g)
    }

    .pd-qty span {
      width: 44px;
      text-align: center;
      font-size: .88rem;
      font-weight: 600;
      border-left: 1px solid var(--br);
      border-right: 1px solid var(--br);
      height: 36px;
      display: flex;
      align-items: center;
      justify-content: center
    }

    .pd-actions {
      display: flex;
      gap: .65rem;
      margin-top: 1rem;
      flex-wrap: wrap
    }

    .pd-meta {
      margin-top: 1.5rem;
      border-top: 1px solid var(--br);
      padding-top: 1.25rem
    }

    .pd-meta-row {
      display: flex;
      gap: .65rem;
      padding: .48rem 0;
      border-bottom: 1px solid rgba(201, 168, 76, .07);
      font-size: .78rem
    }

    .pd-meta-row:last-child {
      border-bottom: none
    }

    .pd-meta-k {
      color: var(--mu);
      min-width: 100px
    }

    .pd-meta-v {
      color: var(--tx)
    }

    .pd-tabs {
      display: flex;
      gap: 0;
      border-bottom: 1px solid var(--br);
      margin: 1.75rem 0 1.25rem
    }

    .pd-tab {
      background: none;
      border: none;
      border-bottom: 2px solid transparent;
      color: var(--mu);
      font-size: .8rem;
      padding: .55rem 1rem;
      cursor: pointer;
      transition: color .15s, border-color .15s;
      margin-bottom: -1px
    }

    .pd-tab.on {
      color: var(--g);
      border-bottom-color: var(--g);
      font-weight: 600
    }

    .pd-tab-body {
      font-size: .82rem;
      color: var(--mu);
      line-height: 1.78;
      display: none
    }

    .pd-tab-body.on {
      display: block
    }

    /* FORMS */
    .fg {
      display: flex;
      flex-direction: column;
      gap: .28rem
    }

    .fg label {
      font-size: .65rem;
      letter-spacing: .06em;
      color: var(--mu);
      text-transform: uppercase
    }

    .fg input,
    .fg select,
    .fg textarea {
      background: var(--s2);
      border: 1px solid var(--br);
      color: var(--tx);
      padding: .5rem .82rem;
      border-radius: .3rem;
      font-size: .82rem;
      outline: none;
      transition: border-color .2s
    }

    .fg input:focus,
    .fg select:focus,
    .fg textarea:focus {
      border-color: var(--g)
    }

    .fg select option {
      background: #161616
    }

    .fgrid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: .85rem
    }

    .fgrid .full {
      grid-column: 1/-1
    }

    .fsec {
      grid-column: 1/-1;
      font-size: .6rem;
      letter-spacing: .13em;
      color: var(--g);
      text-transform: uppercase;
      padding-bottom: .28rem;
      border-bottom: 1px solid var(--br);
      margin-top: .2rem
    }

    @media(max-width:540px) {
      .fgrid {
        grid-template-columns: 1fr
      }
    }

    /* CART */
    .cart-layout {
      display: grid;
      grid-template-columns: 1fr 340px;
      gap: 1.75rem;
      align-items: start
    }

    @media(max-width:860px) {
      .cart-layout {
        grid-template-columns: 1fr
      }
    }

    .cart-item {
      display: flex;
      gap: 1rem;
      padding: 1.1rem 0;
      border-bottom: 1px solid rgba(201, 168, 76, .08)
    }

    .cart-item:last-child {
      border-bottom: none
    }

    .ci-img {
      width: 80px;
      height: 80px;
      background: var(--s1);
      border: 1px solid var(--br);
      border-radius: .38rem;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      flex-shrink: 0
    }

    .ci-name {
      font-size: .85rem;
      font-weight: 600;
      line-height: 1.3;
      margin-bottom: .25rem
    }

    .ci-sub {
      font-size: .7rem;
      color: var(--mu)
    }

    .ci-price {
      font-size: .88rem;
      font-weight: 700;
      color: var(--g);
      margin: .35rem 0
    }

    .ci-qty {
      display: flex;
      align-items: center;
      gap: 0;
      border: 1px solid var(--br);
      border-radius: .28rem;
      overflow: hidden;
      width: fit-content
    }

    .ci-qty button {
      background: var(--s2);
      border: none;
      color: var(--tx);
      width: 28px;
      height: 28px;
      cursor: pointer;
      font-size: .95rem
    }

    .ci-qty span {
      width: 36px;
      text-align: center;
      font-size: .78rem;
      font-weight: 600;
      border-left: 1px solid var(--br);
      border-right: 1px solid var(--br);
      height: 28px;
      display: flex;
      align-items: center;
      justify-content: center
    }

    .ci-del {
      background: none;
      border: none;
      color: #444;
      cursor: pointer;
      font-size: .82rem;
      transition: color .15s;
      margin-left: auto
    }

    .ci-del:hover {
      color: #E74C3C
    }

    .order-summary {
      background: var(--s1);
      border: 1px solid var(--br);
      border-radius: var(--r);
      padding: 1.35rem;
      position: sticky;
      top: 110px
    }

    .os-row {
      display: flex;
      justify-content: space-between;
      padding: .48rem 0;
      font-size: .82rem;
      border-bottom: 1px solid rgba(201, 168, 76, .07)
    }

    .os-row:last-child {
      border-bottom: none
    }

    .os-row.total {
      font-weight: 700;
      color: var(--tx);
      font-size: .9rem
    }

    .os-row .ov {
      color: var(--g)
    }

    .os-row .saved {
      color: #4CAF7D
    }

    /* CHECKOUT */
    .checkout-layout {
      display: grid;
      grid-template-columns: 1fr 360px;
      gap: 1.75rem;
      align-items: start
    }

    @media(max-width:860px) {
      .checkout-layout {
        grid-template-columns: 1fr
      }
    }

    .step-bar {
      display: flex;
      align-items: center;
      gap: 0;
      margin-bottom: 2rem
    }

    .step {
      display: flex;
      align-items: center;
      gap: .45rem;
      font-size: .75rem;
      color: var(--mu)
    }

    .step .sn {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      border: 1px solid var(--br);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: .72rem;
      background: var(--s2)
    }

    .step.done .sn {
      background: var(--g);
      color: var(--bg);
      border-color: var(--g)
    }

    .step.active .sn {
      border-color: var(--g);
      color: var(--g);
      font-weight: 700
    }

    .step.active {
      color: var(--tx);
      font-weight: 600
    }

    .step-line {
      flex: 1;
      height: 1px;
      background: var(--br);
      margin: 0 .5rem
    }

    /* REVEAL */
    .rv {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity .55s ease, transform .55s ease
    }

    .rv.in {
      opacity: 1;
      transform: none
    }

    .d1 {
      transition-delay: .07s
    }

    .d2 {
      transition-delay: .13s
    }

    .d3 {
      transition-delay: .19s
    }

    .d4 {
      transition-delay: .25s
    }

    /* PAGINATION */
    .pgn {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: .38rem;
      padding: 2.5rem 0
    }

    .pgn-btn {
      background: var(--s1);
      border: 1px solid var(--br);
      color: var(--mu);
      width: 36px;
      height: 36px;
      border-radius: .3rem;
      cursor: pointer;
      font-size: .78rem;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all .15s
    }

    .pgn-btn:hover {
      border-color: var(--g);
      color: var(--g)
    }

    .pgn-btn.on {
      background: var(--g);
      border-color: var(--g);
      color: var(--bg);
      font-weight: 700
    }

    .pgn-btn:disabled {
      opacity: .35;
      cursor: default
    }

    /* FOOTER */
    .footer {
      background: #0d0d0d;
      border-top: 1px solid var(--br);
      padding: 4rem 0 0;
      margin-top: 5rem
    }

    .footer-in {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 1.5rem 3rem;
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
      gap: 2.5rem
    }

    .footer-logo {
      height: 32px;
      margin-bottom: .52rem
    }

    .footer-about {
      font-size: .75rem;
      color: #484848;
      line-height: 1.7;
      max-width: 230px;
      margin: .45rem 0
    }

    .footer-gu {
      font-family: 'Hind Vadodara', sans-serif;
      font-size: .69rem;
      color: var(--g);
      margin-bottom: .78rem
    }

    .footer-soc {
      display: flex;
      flex-wrap: wrap;
      gap: .35rem
    }

    .footer-soc a {
      font-size: .64rem;
      color: #484848;
      background: var(--s2);
      border: 1px solid rgba(201, 168, 76, .1);
      padding: .17rem .5rem;
      border-radius: 2rem;
      transition: color .15s, border-color .15s
    }

    .footer-soc a:hover {
      color: var(--g);
      border-color: rgba(201, 168, 76, .3)
    }

    .footer-col h4 {
      font-size: .61rem;
      letter-spacing: .12em;
      color: var(--g);
      text-transform: uppercase;
      margin-bottom: .8rem;
      padding-bottom: .3rem;
      border-bottom: 1px solid var(--br)
    }

    .footer-col a {
      display: block;
      font-size: .74rem;
      color: #484848;
      margin-bottom: .4rem;
      transition: color .15s
    }

    .footer-col a:hover {
      color: var(--g)
    }

    .footer-bot {
      max-width: 1280px;
      margin: 0 auto;
      padding: 1.1rem 1.5rem 1.75rem;
      border-top: 1px solid rgba(201, 168, 76, .08);
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: .5rem;
      font-size: .64rem;
      color: #2e2e2e
    }

    @media(max-width:1000px) {
      .footer-in {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 2rem
      }
    }

    @media(max-width:640px) {
      .footer-in {
        grid-template-columns: 1fr 1fr;
        gap: 1.75rem
      }

      .footer-bot {
        flex-direction: column;
        align-items: center
      }
    }

    /* UTILS */
    .mt1 {
      margin-top: .65rem
    }

    .mt2 {
      margin-top: 1.25rem
    }

    .mt3 {
      margin-top: 2rem
    }

    .mt4 {
      margin-top: 3rem
    }

    .mb1 {
      margin-bottom: .65rem
    }

    .mb2 {
      margin-bottom: 1.25rem
    }

    .mb3 {
      margin-bottom: 2rem
    }

    .flex {
      display: flex
    }

    .items-c {
      align-items: center
    }

    .flex-w {
      flex-wrap: wrap
    }

    .gap1 {
      gap: .5rem
    }

    .gap2 {
      gap: 1rem
    }

    .gap3 {
      gap: 1.5rem
    }

    .muted {
      color: var(--mu)
    }

    .gold {
      color: var(--g)
    }

    .empty-state {
      text-align: center;
      padding: 4rem 2rem;
      color: var(--mu)
    }

    .empty-state .ei {
      font-size: 3rem;
      margin-bottom: 1rem;
      opacity: .35
    }

    .trust-bar {
      display: flex;
      gap: 2rem;
      flex-wrap: wrap;
      justify-content: center;
      padding: 1.5rem 0;
      border-top: 1px solid var(--br);
      border-bottom: 1px solid var(--br);
      margin: 2rem 0
    }

    .trust-item {
      display: flex;
      align-items: center;
      gap: .5rem;
      font-size: .75rem;
      color: var(--mu)
    }

    .trust-item .ti {
      font-size: 1.1rem
    }

    .toast {
      position: fixed;
      bottom: 1.5rem;
      right: 1.5rem;
      z-index: 9999;
      background: #111;
      border: 1px solid var(--br);
      border-radius: .4rem;
      padding: .65rem 1.1rem;
      font-size: .78rem;
      color: var(--tx);
      max-width: 280px;
      animation: tslide .3s ease;
      display: none
    }

    .toast.show {
      display: flex;
      align-items: center;
      gap: .5rem
    }

    @keyframes tslide {
      from {
        opacity: 0;
        transform: translateY(10px)
      }

      to {
        opacity: 1;
        transform: none
      }
    }
  