    /* HELP FAB */
    .help-fab {
      position: fixed;
      bottom: 84px;
      right: 16px;
      z-index: 6000;
      display: flex;
      gap: 10px;
      flex-direction: column;
      align-items: flex-end;
    }

    .help-fab button {
      background: var(--saffron);
      color: white;
      border: none;
      padding: 12px 14px;
      border-radius: 999px;
      box-shadow: 0 6px 18px rgba(0, 0, 0, .18);
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 8px;
      font-weight: 700
    }

    .help-panel {
      position: fixed;
      right: 16px;
      bottom: 140px;
      z-index: 6001;
      background: white;
      border-radius: 12px;
      box-shadow: 0 12px 40px rgba(0, 0, 0, .15);
      overflow: hidden;
      min-width: 220px;
      display: none;
    }

    .help-panel .hp-row {
      padding: 12px 14px;
      display: flex;
      gap: 10px;
      align-items: center;
    }

    .help-panel .hp-row a {
      display: flex;
      align-items: center;
      gap: 8px;
      text-decoration: none;
      color: var(--text);
      font-weight: 600
    }

    .help-panel .hp-head {
      padding: 10px 14px;
      background: var(--ivory);
      font-weight: 700
    }

    @media (max-width:480px) {
      .help-fab {
        bottom: 74px;
        right: 12px
      }

      .help-panel {
        right: 12px;
        left: 12px;
        bottom: 84px;
        min-width: auto
      }
    }

    /* CHAT MODAL */
    .chat-modal {
      position: fixed;
      right: 16px;
      bottom: 140px;
      z-index: 7000;
      width: 320px;
      max-height: 70vh;
      background: white;
      color: var(--text);
      border-radius: 12px;
      box-shadow: 0 18px 50px rgba(0, 0, 0, .18);
      display: none;
      flex-direction: column;
      overflow: hidden;
    }

    .chat-modal .cm-head {
      padding: 10px 12px;
      background: var(--ivory);
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px
    }

    .chat-modal .cm-body {
      padding: 10px;
      overflow-y: auto;
      display: flex;
      flex-direction: column;
      gap: 8px;
      background: #fff9f7;
      flex: 1;
    }

    .chat-msg {
      max-width: 80%;
      padding: 8px 10px;
      border-radius: 10px;
      font-size: 0.9rem
    }

    .chat-msg.user {
      align-self: flex-end;
      background: var(--saffron);
      color: #fff
    }

    .chat-msg.admin {
      align-self: flex-start;
      background: #f1f1f1;
      color: var(--text)
    }

    .chat-input {
      display: flex;
      gap: 8px;
      padding: 8px;
      border-top: 1px solid #f0e6e0;
      background: white
    }

    .chat-input input {
      flex: 1;
      padding: 10px 12px;
      border-radius: 999px;
      border: 1px solid #eee
    }

    .chat-input button {
      background: var(--saffron);
      color: white;
      border: none;
      padding: 8px 14px;
      border-radius: 999px;
      cursor: pointer;
      font-weight: 600;
      transition: background 0.2s;
    }

    .chat-input button:hover {
      background: var(--saffron-deep);
    }

    .chat-input button:active {
      transform: scale(0.95);
    }

    .offer-toggle-slider:before {
      content: '';
      position: absolute;
      height: 18px;
      width: 18px;
      left: 3px;
      bottom: 3px;
      background-color: white;
      transition: .3s;
      border-radius: 50%;
    }

    @media (max-width:480px) {
      .chat-modal {
        right: 12px;
        left: 12px;
        bottom: 94px;
        width: auto;
        max-height: 60vh
      }
    }
    *,
    *::before,
    *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box
    }

    :root {
      --saffron: #e8602c;
      --saffron-deep: #b5451b;
      --gold: #d4a843;
      --gold-light: #f0cc6e;
      --rose: #c94070;
      --cream: #fdf6ee;
      --ivory: #fff9f3;
      --dark: #1c0f08;
      --text: #3d1f10;
      --muted: #8a6250;
      --shadow: rgba(232, 96, 44, .18);
      --green: #22c55e;
      --blue: #3b82f6
    }



    .category-filters {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: center;
      margin: 30px 0;
      padding: 0 20px
    }

    .category-btn {
      padding: 10px 20px;
      border: 2px solid var(--saffron);
      background: white;
      color: var(--saffron);
      border-radius: 25px;
      cursor: pointer;
      font-size: 14px;
      font-weight: 500;
      transition: all .3s
    }

    .category-btn:hover,
    .category-btn.active {
      background: var(--saffron);
      color: white;
      transform: scale(1.05)
    }

    .trending-section {
      background: linear-gradient(135deg, var(--saffron), var(--saffron-deep));
      color: white;
      padding: 40px 20px;
      text-align: center;
      margin: 20px 0
    }

    .trending-section h2 {
      font-size: 2rem;
      margin-bottom: 0;
      text-transform: uppercase;
      letter-spacing: 2px
    }

    .trending-head-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      margin-bottom: 10px;
      flex-wrap: wrap
    }

    .trending-slider-controls {
      display: inline-flex;
      align-items: center;
      gap: 8px
    }

    .trending-slider-controls button {
      width: 34px;
      height: 34px;
      border-radius: 9px;
      border: 1px solid rgba(255, 255, 255, .38);
      background: rgba(255, 255, 255, .15);
      color: #fff;
      cursor: pointer;
      transition: all .2s ease
    }

    .trending-slider-controls button:hover {
      background: rgba(255, 255, 255, .26)
    }

    .trending-products {
      display: flex;
      gap: 16px;
      margin-top: 20px;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      scroll-behavior: smooth;
      -webkit-overflow-scrolling: touch;
      padding: 4px 2px 10px
    }

    .trending-products::-webkit-scrollbar {
      height: 4px
    }

    .trending-products::-webkit-scrollbar-thumb {
      background: rgba(255, 255, 255, .45);
      border-radius: 99px
    }

    .trending-product-card {
      background: white;
      color: var(--text);
      padding: 0;
      border-radius: 10px;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      transition: all .3s;
      overflow: hidden;
      position: relative;
      min-width: 230px;
      max-width: 230px;
      flex: 0 0 auto;
      scroll-snap-align: start
    }

    .trending-product-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3)
    }

    .trending-img {
      width: 100%;
      height: 180px;
      background-size: cover;
      background-position: center;
      position: relative;
      overflow: hidden
    }

    .trending-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, .5);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity .3s
    }

    .trending-product-card:hover .trending-overlay {
      opacity: 1
    }

    .trending-btn {
      background: var(--saffron);
      color: white;
      border: none;
      padding: 10px 20px;
      border-radius: 5px;
      cursor: pointer;
      font-weight: 600;
      transition: all .2s
    }

    .trending-btn:hover {
      background: var(--saffron-deep);
      transform: scale(1.05)
    }

    .trending-badge {
      position: absolute;
      top: 10px;
      right: 10px;
      background: var(--saffron);
      color: white;
      padding: 5px 10px;
      border-radius: 5px;
      font-size: .7rem;
      font-weight: 700;
      z-index: 2
    }

    .trending-info {
      padding: 15px;
      display: flex;
      flex-direction: column;
      gap: 10px
    }

    .trending-name {
      font-size: .9rem;
      font-weight: 600;
      color: var(--text);
      text-align: center
    }

    .trending-price {
      font-size: 1rem;
      font-weight: 700;
      color: var(--saffron)
    }

    .trending-old {
      font-size: .8rem;
      text-decoration: line-through;
      color: var(--muted);
      margin-left: 5px;
      font-weight: 500
    }

    .trending-add {
      background: var(--gold);
      border: none;
      color: white;
      padding: 8px 12px;
      border-radius: 5px;
      cursor: pointer;
      font-weight: 600;
      transition: all .2s;
      align-self: center;
      width: 100%;
      max-width: 120px
    }

    .trending-add:hover {
      background: var(--gold-light);
      transform: scale(1.05)
    }

    @media (max-width: 768px) {
      .category-filters {
        gap: 8px
      }

      .category-btn {
        padding: 8px 15px;
        font-size: 12px
      }

      .trending-section h2 {
        font-size: 1.5rem
      }

      .trending-products {
        display: flex;
        gap: 12px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        padding: 4px 2px 12px;
        -webkit-overflow-scrolling: touch;
      }

      .trending-product-card {
        min-width: 78vw;
        max-width: 78vw;
        scroll-snap-align: start
      }

      .trending-img {
        height: 140px
      }

      .trending-info {
        padding: 12px;
        gap: 8px
      }

      .trending-name {
        font-size: .8rem
      }

      .trending-price {
        font-size: .9rem
      }

      .trending-add {
        padding: 6px 10px;
        font-size: .8rem
      }
    }

    html {
      scroll-behavior: smooth;
      -webkit-text-size-adjust: 100%
    }

    body {
      font-family: 'Outfit', sans-serif;
      background: var(--cream);
      color: var(--text);
      overflow-x: hidden
    }

    .loading {
      position: fixed;
      inset: 0;
      background: linear-gradient(135deg, var(--saffron-deep), var(--dark));
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      z-index: 9999;
      transition: opacity .9s, visibility .9s
    }

    .loading.hide {
      opacity: 0;
      visibility: hidden;
      pointer-events: none
    }

    .load-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 3rem;
      color: var(--gold-light);
      letter-spacing: 4px;
      animation: loadPulse 1.6s ease-in-out infinite
    }

    .load-sub {
      font-size: .72rem;
      letter-spacing: 6px;
      color: rgba(255, 255, 255, .5);
      text-transform: uppercase;
      margin-top: 6px
    }

    .load-bar {
      width: 180px;
      height: 2px;
      background: rgba(255, 255, 255, .15);
      border-radius: 2px;
      margin-top: 28px;
      overflow: hidden
    }

    .load-bar::after {
      content: '';
      display: block;
      height: 100%;
      width: 0;
      background: var(--gold-light);
      animation: loadFill 1.6s ease forwards .3s
    }

    @keyframes loadPulse {

      0%,
      100% {
        opacity: 1
      }

      50% {
        opacity: .6
      }
    }

    @keyframes loadFill {
      to {
        width: 100%
      }
    }

    header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      background: rgba(253, 246, 238, .97);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(232, 96, 44, .12);
      transition: box-shadow .3s
    }

    header.scrolled {
      box-shadow: 0 4px 32px rgba(180, 69, 27, .13)
    }

    nav {
      max-width: 1400px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: .85rem 5%
    }

    .logo-wrap {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
      cursor: pointer
    }

    .logo-mark {
      width: 46px;
      height: 46px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      overflow: hidden;
      background: transparent
    }

    .logo-mark img {
      width: 100%;
      height: 100%;
      object-fit: contain
    }

    .logo-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--saffron-deep);
      line-height: 1.1
    }

    .logo-tagline {
      font-size: .6rem;
      letter-spacing: 3px;
      color: var(--gold);
      font-weight: 600;
      text-transform: uppercase
    }

    .nav-links {
      display: flex;
      gap: 2rem;
      list-style: none
    }

    .nav-links a {
      color: var(--text);
      text-decoration: none;
      font-size: .87rem;
      font-weight: 500;
      position: relative;
      padding-bottom: 3px;
      transition: color .3s;
      cursor: pointer
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 1.5px;
      background: var(--saffron);
      transition: width .3s
    }

    .nav-links a:hover,
    .nav-links a.active-link {
      color: var(--saffron)
    }

    .nav-links a:hover::after,
    .nav-links a.active-link::after {
      width: 100%
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: .7rem
    }

    .search-bar {
      display: flex;
      align-items: center;
      background: var(--ivory);
      border: 1.5px solid rgba(232, 96, 44, .15);
      border-radius: 50px;
      padding: 6px 10px 6px 14px;
      gap: 8px;
      transition: all .3s;
      position: relative
    }

    .search-bar:focus-within {
      border-color: var(--saffron);
      box-shadow: 0 0 0 3px rgba(232, 96, 44, .08)
    }

    .search-bar input {
      border: none;
      background: none;
      outline: none;
      font-family: 'Outfit', sans-serif;
      font-size: .84rem;
      color: var(--text);
      width: 150px
    }

    .search-bar .search-icon {
      color: var(--muted);
      font-size: .84rem
    }

    .search-go-btn {
      border: none;
      outline: none;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--saffron), var(--gold));
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      flex-shrink: 0;
      transition: transform .2s ease, opacity .2s ease
    }

    .search-go-btn:hover {
      transform: translateY(-1px);
      opacity: .92
    }

    .search-go-btn i {
      font-size: .72rem
    }

    .icon-btn {
      width: 40px;
      height: 40px;
      background: var(--ivory);
      border: 1.5px solid rgba(232, 96, 44, .15);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all .3s;
      position: relative
    }

    .icon-btn:hover {
      background: var(--saffron);
      border-color: var(--saffron)
    }

    .icon-btn:hover i {
      color: white
    }

    .icon-btn i {
      color: var(--saffron);
      font-size: 1rem;
      transition: color .3s
    }

    .cart-count {
      position: absolute;
      top: -6px;
      right: -6px;
      background: var(--rose);
      color: white;
      width: 19px;
      height: 19px;
      border-radius: 50%;
      font-size: .63rem;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center
    }

    .cart-count.pop {
      animation: pop .3s ease
    }

    @keyframes pop {

      0%,
      100% {
        transform: scale(1)
      }

      50% {
        transform: scale(1.5)
      }
    }

    .user-nav-btn {
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 8px 14px;
      background: linear-gradient(135deg, var(--saffron), var(--gold));
      color: white;
      border-radius: 50px;
      text-decoration: none;
      font-size: .78rem;
      font-weight: 700;
      border: none;
      cursor: pointer;
      transition: all .3s;
      white-space: nowrap;
      font-family: 'Outfit', sans-serif;
      max-width: 140px;
      overflow: hidden
    }

    .user-nav-btn:hover {
      transform: translateY(-1px);
      box-shadow: 0 6px 20px var(--shadow)
    }

    .user-nav-btn .user-name-short {
      max-width: 80px;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap
    }

    .login-nav-btn {
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 8px 16px;
      background: linear-gradient(135deg, var(--dark), #3a1208);
      color: rgba(255, 255, 255, .9);
      border-radius: 50px;
      border: 1.5px solid rgba(212, 168, 67, .3);
      font-size: .78rem;
      font-weight: 700;
      cursor: pointer;
      transition: all .3s;
      white-space: nowrap;
      font-family: 'Outfit', sans-serif
    }

    .login-nav-btn:hover {
      border-color: rgba(212, 168, 67, .7);
      transform: translateY(-1px)
    }

    .login-nav-btn i {
      color: var(--gold-light)
    }

    .admin-nav-btn {
      display: none;
      align-items: center;
      gap: 6px;
      padding: 8px 14px;
      background: linear-gradient(135deg, var(--dark), #3a1208);
      color: rgba(255, 255, 255, .85);
      border-radius: 50px;
      text-decoration: none;
      font-size: .78rem;
      font-weight: 700;
      border: 1.5px solid rgba(212, 168, 67, .3);
      transition: all .3s;
      white-space: nowrap
    }

    .admin-nav-btn i {
      color: var(--gold-light);
      font-size: .78rem
    }

    .admin-nav-btn:hover {
      border-color: rgba(212, 168, 67, .7);
      color: white;
      transform: translateY(-1px)
    }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 6px;
      background: none;
      border: none
    }

    .hamburger span {
      width: 24px;
      height: 2.5px;
      background: var(--saffron);
      border-radius: 3px;
      transition: all .35s cubic-bezier(.22, 1, .36, 1);
      display: block
    }

    .hamburger.active span:nth-child(1) {
      transform: translateY(7.5px) rotate(45deg)
    }

    .hamburger.active span:nth-child(2) {
      opacity: 0;
      transform: scaleX(0)
    }

    .hamburger.active span:nth-child(3) {
      transform: translateY(-7.5px) rotate(-45deg)
    }

    .mob-overlay {
      position: fixed;
      inset: 0;
      background: rgba(28, 15, 8, .65);
      backdrop-filter: blur(5px);
      z-index: 1050;
      opacity: 0;
      visibility: hidden;
      transition: all .35s
    }

    .mob-overlay.open {
      opacity: 1;
      visibility: visible
    }

    .mob-drawer {
      position: fixed;
      top: 0;
      right: -320px;
      width: 290px;
      max-width: 85vw;
      height: 100dvh;
      background: var(--ivory);
      z-index: 1060;
      display: flex;
      flex-direction: column;
      box-shadow: -8px 0 40px rgba(0, 0, 0, .2);
      transition: right .4s cubic-bezier(.22, 1, .36, 1);
      overflow-y: auto
    }

    .mob-drawer.open {
      right: 0
    }

    .mob-header {
      background: linear-gradient(135deg, var(--saffron-deep), var(--dark));
      padding: 1.2rem 1.4rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-shrink: 0
    }

    .mob-header .mob-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.3rem;
      color: var(--gold-light);
      font-weight: 700
    }

    .mob-search {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: .9rem 1rem;
      border-bottom: 1px solid rgba(46, 30, 10, .12)
    }

    .mob-search input {
      flex: 1;
      background: #fff;
      border: 1.5px solid rgba(232, 96, 44, .18);
      border-radius: 12px;
      padding: 10px 12px;
      outline: none;
      font-family: 'Outfit', sans-serif;
      font-size: .84rem;
      color: var(--text)
    }

    .mob-search input:focus {
      border-color: var(--saffron)
    }

    .mob-search button {
      border: none;
      border-radius: 10px;
      padding: 10px 14px;
      font-size: .78rem;
      font-weight: 700;
      color: #fff;
      background: linear-gradient(135deg, var(--saffron), var(--gold));
      cursor: pointer;
      font-family: 'Outfit', sans-serif;
      white-space: nowrap
    }

    .mob-front-search-wrap {
      display: none;
      padding: .7rem 1rem .45rem;
      background: #fff;
      border-bottom: 1px solid rgba(232, 96, 44, .12);
      position: sticky;
      top: 72px;
      z-index: 1001
    }

    .logo-location-wrap {
      display: flex;
      align-items: center;
      gap: .75rem
    }

    .location-pill {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      border: 1.5px solid rgba(232, 96, 44, .2);
      background: var(--ivory);
      border-radius: 999px;
      padding: 7px 12px;
      color: var(--text);
      font-size: .74rem;
      font-weight: 600;
      cursor: pointer;
      white-space: nowrap
    }

    .location-pill-text {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      line-height: 1.05
    }

    .location-pill-text strong {
      font-size: .73rem;
      font-weight: 700
    }

    .location-pill-text small {
      font-size: .62rem;
      color: var(--muted)
    }

    .location-pill i {
      color: var(--saffron)
    }

    .header-search-row {
      width: 100%;
      padding: 0 5% .85rem;
      border-top: 1px solid rgba(232, 96, 44, .09)
    }

    .header-search-row .search-bar {
      width: 100%;
      display: flex
    }

    .header-search-row .search-bar input {
      width: 100%
    }

    .flip-banner {
      padding-top: 14px
    }

    .banner-carousel {
      position: relative;
      border-radius: 18px;
      overflow: hidden;
      box-shadow: 0 8px 30px rgba(0, 0, 0, .08);
      width: 100%;
      aspect-ratio: 3.2 / 1;
      min-height: 220px;
      max-height: 380px;
    }

    .banner-track {
      display: flex;
      width: 100%;
      height: 100%;
      transition: transform .5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .banner-slide {
      flex: 0 0 100%;
      width: 100%;
      height: 100%;
      color: #fff;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: .45rem;
      padding: clamp(16px, 4vw, 36px) clamp(20px, 5vw, 48px);
      background-size: cover;
      background-position: center center;
      background-repeat: no-repeat;
    }

    .banner-slide h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.65rem;
      line-height: 1.1
    }

    .banner-slide p {
      font-size: .88rem;
      max-width: 280px;
      opacity: .92
    }

    .banner-dots {
      position: absolute;
      left: 50%;
      bottom: 10px;
      transform: translateX(-50%);
      display: flex;
      gap: 7px
    }

    .banner-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      border: none;
      background: rgba(255, 255, 255, .5);
      cursor: pointer
    }

    .banner-dot.active {
      background: rgba(255, 255, 255, .95)
    }

    .bottom-nav {
      display: none
    }

    .bottom-nav .bottom-link {
      border: none;
      background: none
    }

    .mob-front-search {
      display: flex;
      align-items: center;
      gap: 8px
    }

    .mob-front-search input {
      flex: 1;
      background: #fff;
      border: 1.5px solid rgba(232, 96, 44, .18);
      border-radius: 12px;
      padding: 10px 12px;
      outline: none;
      font-family: 'Outfit', sans-serif;
      font-size: .84rem;
      color: var(--text)
    }

    .mob-front-search input:focus {
      border-color: var(--saffron)
    }

    .mob-front-search button {
      border: none;
      border-radius: 10px;
      padding: 10px 14px;
      font-size: .78rem;
      font-weight: 700;
      color: #fff;
      background: linear-gradient(135deg, var(--saffron), var(--gold));
      cursor: pointer;
      font-family: 'Outfit', sans-serif;
      white-space: nowrap
    }

    .mob-close {
      background: rgba(255, 255, 255, .15);
      border: none;
      color: white;
      width: 32px;
      height: 32px;
      border-radius: 8px;
      cursor: pointer;
      font-size: 1rem;
      display: flex;
      align-items: center;
      justify-content: center
    }

    .mob-nav {
      list-style: none;
      padding: .8rem 0;
      flex: 1
    }

    .mob-nav li {
      border-bottom: 1px solid rgba(232, 96, 44, .07)
    }

    .mob-nav a {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: .9rem 1.4rem;
      color: var(--text);
      text-decoration: none;
      font-size: .9rem;
      font-weight: 500;
      transition: all .2s;
      cursor: pointer
    }

    .mob-nav a .nav-ic {
      width: 32px;
      height: 32px;
      border-radius: 8px;
      background: rgba(232, 96, 44, .08);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0
    }

    .mob-nav a .nav-ic i {
      color: var(--saffron);
      font-size: .82rem
    }

    .mob-footer-info {
      padding: 1.2rem 1.4rem;
      border-top: 1px solid rgba(232, 96, 44, .1)
    }

    .mob-contact-line {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: .78rem;
      color: var(--muted);
      margin-bottom: .55rem
    }

    .mob-contact-line i {
      color: var(--saffron);
      width: 14px;
      text-align: center
    }

    .mob-contact-line a {
      color: var(--muted);
      text-decoration: none
    }

    .hero {
      margin-top: 72px;
      min-height: 88vh;
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, #f5e6d3 0%, #f0dcc8 50%, #e8d5c4 100%);
      background-image:
        url('https://images.unsplash.com/photo-1607082348824-0a96f2a4b9da?w=400&h=400&fit=crop&q=80'),
        url('https://images.unsplash.com/photo-1505740420928-5e560c06d30e?w=400&h=400&fit=crop&q=80'),
        url('https://images.unsplash.com/photo-1556228578-8c89e6adf883?w=400&h=400&fit=crop&q=80'),
        url('https://images.unsplash.com/photo-1563959959885-91619c87ba07?w=400&h=400&fit=crop&q=80'),
        url('https://images.unsplash.com/photo-1492707892657-8d71f7614141?w=400&h=400&fit=crop&q=80'),
        url('https://images.unsplash.com/photo-1527959021e0-3a2360b034d5?w=400&h=400&fit=crop&q=80'),
        url('https://images.unsplash.com/photo-1503387762519-52582b8440bb?w=400&h=400&fit=crop&q=80'),
        url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?w=400&h=400&fit=crop&q=80'),
        url('https://images.unsplash.com/photo-1572635196237-14b3f281503f?w=400&h=400&fit=crop&q=80'),
        url('https://images.unsplash.com/photo-1509631179647-0177331693ae?w=400&h=400&fit=crop&q=80'),
        url('https://images.unsplash.com/photo-1553062407-98eeb64c6a62?w=400&h=400&fit=crop&q=80'),
        url('https://images.unsplash.com/photo-1525048553597-7c8fb3ce338d?w=400&h=400&fit=crop&q=80'),
        url('https://images.unsplash.com/photo-1572635196237-14b3f281503f?w=400&h=400&fit=crop&q=80'),
        url('https://images.unsplash.com/photo-1485846234645-a62644f84728?w=400&h=400&fit=crop&q=80'),
        url('https://images.unsplash.com/photo-1505740420928-5e560c06d30e?w=400&h=400&fit=crop&q=80'),
        url('https://images.unsplash.com/photo-1572365992253-3cb3e56dd362?w=400&h=400&fit=crop&q=80');
      background-size:
        180px 180px,
        160px 160px,
        200px 200px,
        170px 170px,
        190px 190px,
        150px 150px,
        180px 180px,
        160px 160px,
        175px 175px,
        185px 185px,
        170px 170px,
        195px 195px,
        155px 155px,
        180px 180px,
        165px 165px,
        175px 175px;
      background-position:
        5% 20%,
        75% 10%,
        85% 75%,
        15% 75%,
        50% 50%,
        90% 40%,
        20% 50%,
        70% 80%,
        35% 15%,
        65% 45%,
        10% 60%,
        80% 15%,
        45% 70%,
        75% 60%,
        25% 35%,
        95% 85%;
      background-repeat: no-repeat;
      background-attachment: fixed
    }

    .hero-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(100deg, rgba(28, 15, 8, .93) 0%, rgba(58, 26, 8, .86) 48%, rgba(28, 15, 8, .45) 100%)
    }

    .hero-pattern {
      position: absolute;
      inset: 0;
      background-image: radial-gradient(circle at 20% 50%, rgba(212, 168, 67, .08) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(232, 96, 44, .1) 0%, transparent 40%);
      z-index: 1;
      pointer-events: none
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 620px;
      padding: 3rem 5%
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(212, 168, 67, .15);
      border: 1px solid rgba(212, 168, 67, .35);
      padding: 7px 16px;
      border-radius: 50px;
      margin-bottom: 1.5rem;
      animation: fadeUp .7s ease .2s both
    }

    .hero-badge i {
      color: var(--gold);
      font-size: .75rem
    }

    .hero-badge span {
      font-size: .72rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--gold-light);
      font-weight: 600
    }

    .hero h1 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.5rem, 6vw, 4.8rem);
      color: white;
      line-height: 1.15;
      margin-bottom: 1.4rem;
      animation: fadeUp .7s ease .4s both
    }

    .hero h1 em {
      color: var(--gold-light);
      font-style: italic;
      display: block
    }

    .hero-desc {
      color: rgba(255, 255, 255, .65);
      font-size: 1rem;
      line-height: 1.7;
      margin-bottom: 2.2rem;
      animation: fadeUp .7s ease .6s both;
      max-width: 480px
    }

    .hero-btns {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      animation: fadeUp .7s ease .8s both
    }

    .hero-stats {
      display: flex;
      gap: 2.5rem;
      margin-top: 2.5rem;
      animation: fadeUp .7s ease 1s both
    }

    .hero-stat-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2rem;
      font-weight: 700;
      color: var(--gold-light);
      line-height: 1
    }

    .hero-stat-label {
      font-size: .7rem;
      color: rgba(255, 255, 255, .5);
      letter-spacing: 1px;
      margin-top: 4px
    }

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(28px)
      }

      to {
        opacity: 1;
        transform: translateY(0)
      }
    }

    .btn-primary {
      padding: 13px 28px;
      background: linear-gradient(135deg, var(--saffron), var(--saffron-deep));
      color: white;
      text-decoration: none;
      border-radius: 50px;
      font-weight: 600;
      font-size: .9rem;
      border: none;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: all .3s;
      box-shadow: 0 6px 24px var(--shadow)
    }

    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 32px var(--shadow)
    }

    .btn-gold {
      padding: 12px 24px;
      background: linear-gradient(135deg, var(--gold), #c49030);
      color: var(--dark);
      font-weight: 700;
      font-size: .88rem;
      border-radius: 50px;
      border: none;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 7px;
      transition: all .3s;
      text-decoration: none
    }

    .btn-gold:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(212, 168, 67, .4)
    }

    .marquee-bar {
      background: linear-gradient(135deg, var(--saffron-deep), var(--dark));
      padding: 12px 0;
      overflow: hidden
    }

    .marquee-track {
      display: flex;
      gap: 3rem;
      animation: marquee 28s linear infinite;
      white-space: nowrap
    }

    .marquee-item {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-shrink: 0
    }

    .marquee-item i {
      color: var(--gold);
      font-size: .7rem
    }

    .marquee-item span {
      font-size: .75rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .7);
      font-weight: 500
    }

    @keyframes marquee {
      to {
        transform: translateX(-50%)
      }
    }

    .section-wrap {
      max-width: 1400px;
      margin: 0 auto;
      padding: 80px 5%
    }

    .sec-header {
      text-align: center;
      margin-bottom: 3.5rem
    }

    .sec-eyebrow {
      display: inline-block;
      font-size: .72rem;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--saffron);
      font-weight: 600;
      margin-bottom: .8rem
    }

    .sec-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.8rem, 4vw, 3rem);
      color: var(--dark);
      line-height: 1.2
    }

    .sec-title span {
      color: var(--saffron)
    }

    .sec-line {
      width: 50px;
      height: 3px;
      background: linear-gradient(90deg, var(--saffron), var(--gold));
      margin: 1rem auto 0;
      border-radius: 2px
    }

    .sec-subtitle {
      color: var(--muted);
      font-size: .92rem;
      margin-top: .8rem;
      max-width: 520px;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.7
    }

    .cat-section {
      background: var(--ivory)
    }

    .cat-grid {
      display: flex;
      gap: .85rem;
      overflow-x: auto;
      padding: .2rem .1rem .35rem;
      scroll-snap-type: x proximity;
      -webkit-overflow-scrolling: touch
    }

    .cat-grid::-webkit-scrollbar {
      height: 5px
    }

    .cat-grid::-webkit-scrollbar-thumb {
      background: rgba(232, 96, 44, .25);
      border-radius: 99px
    }

    .cat-card {
      min-width: 122px;
      max-width: 122px;
      flex: 0 0 auto;
      background: #fff;
      border-radius: 14px;
      padding: .9rem .55rem .75rem;
      text-align: center;
      cursor: pointer;
      scroll-snap-align: start;
      transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
      box-shadow: 0 4px 12px rgba(0, 0, 0, .05);
      border: 1.5px solid rgba(232, 96, 44, .12)
    }

    .cat-card:hover,
    .cat-card.active {
      transform: translateY(-3px);
      border-color: var(--saffron);
      box-shadow: 0 10px 24px rgba(232, 96, 44, .18)
    }

    .cat-icon {
      width: 56px;
      height: 56px;
      border-radius: 16px;
      background: linear-gradient(150deg, rgba(232, 96, 44, .12), rgba(212, 168, 67, .08));
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto .62rem;
      border: 1px solid rgba(232, 96, 44, .12);
      transition: all .25s ease
    }

    .cat-card:hover .cat-icon,
    .cat-card.active .cat-icon {
      background: linear-gradient(135deg, var(--saffron), var(--gold));
      border-color: transparent
    }

    .cat-icon i {
      color: var(--saffron);
      font-size: 1.15rem;
      transition: color .25s ease
    }

    .cat-card:hover .cat-icon i,
    .cat-card.active .cat-icon i {
      color: #fff
    }

    .cat-name {
      font-weight: 600;
      font-size: .76rem;
      color: var(--text);
      line-height: 1.25
    }

    .cat-count {
      font-size: .64rem;
      color: var(--muted);
      margin-top: 2px;
      line-height: 1.2
    }

    .products-bg {
      background: var(--cream)
    }

    .filter-sort-row {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1.8rem;
      flex-wrap: wrap
    }

    .res-count {
      color: var(--muted);
      font-size: .85rem;
      margin-right: auto
    }

    .res-count strong {
      color: var(--saffron)
    }

    .sort-sel {
      padding: 9px 14px;
      border: 2px solid rgba(232, 96, 44, .15);
      border-radius: 50px;
      font-family: 'Outfit', sans-serif;
      font-size: .84rem;
      color: var(--text);
      background: white;
      appearance: none;
      -webkit-appearance: none;
      padding-right: 28px;
      outline: none;
      cursor: pointer
    }

    .sort-sel:focus {
      border-color: var(--saffron)
    }

    .prod-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
      gap: 1.5rem;
      position: relative;
      z-index: 1;
      overflow: visible
    }

    .prod-card {
      background: white;
      border-radius: 18px;
      overflow: hidden;
      box-shadow: 0 4px 18px rgba(0, 0, 0, .06);
      transition: all .4s cubic-bezier(.175, .885, .32, 1.275);
      position: relative;
      cursor: pointer
    }

    .prod-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 50px rgba(232, 96, 44, .18)
    }

    .prod-badge {
      position: absolute;
      top: 12px;
      left: 12px;
      z-index: 2;
      padding: 4px 10px;
      border-radius: 50px;
      font-size: .63rem;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase
    }

    .badge-sale {
      background: #ef4444;
      color: white
    }

    .badge-new {
      background: #22c55e;
      color: white;
      animation: badgePulse 2s ease-in-out infinite
    }

    .badge-popular {
      background: var(--gold);
      color: var(--dark)
    }

    .badge-trending {
      background: var(--rose);
      color: white
    }

    @keyframes badgePulse {

      0%,
      100% {
        opacity: 1
      }

      50% {
        opacity: .65
      }
    }

    .wish-btn {
      position: absolute;
      top: 12px;
      right: 12px;
      z-index: 2;
      width: 34px;
      height: 34px;
      background: rgba(255, 255, 255, .92);
      border: none;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all .3s
    }

    .wish-btn:hover {
      background: var(--rose)
    }

    .wish-btn:hover i {
      color: white
    }

    .wish-btn i {
      color: var(--rose);
      font-size: .85rem;
      transition: color .3s
    }

    .prod-img {
      height: auto;
      aspect-ratio: 4 / 3;
      background-size: cover;
      background-position: center;
      transition: transform .5s;
      position: relative;
      overflow: hidden
    }

    .prod-card:hover .prod-img {
      transform: scale(1.05)
    }

    .prod-img-overlay {
      position: absolute;
      inset: 0;
      background: rgba(232, 96, 44, .85);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity .4s
    }

    .prod-card:hover .prod-img-overlay {
      opacity: 1
    }

    .prod-img-overlay button {
      background: white;
      color: var(--saffron);
      border: none;
      padding: 9px 20px;
      border-radius: 50px;
      font-family: 'Outfit', sans-serif;
      font-size: .82rem;
      font-weight: 700;
      cursor: pointer;
      transition: all .3s
    }

    .prod-img-overlay button:hover {
      background: var(--saffron);
      color: white
    }

    .prod-body {
      padding: 1.1rem
    }

    .prod-cat {
      font-size: .68rem;
      color: var(--saffron);
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      margin-bottom: .35rem
    }

    .prod-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: .3rem;
      line-height: 1.3
    }

    .prod-brand {
      font-size: .72rem;
      color: var(--muted);
      margin-bottom: .35rem;
      font-style: italic
    }

    .prod-meta-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: .5rem;
      margin-bottom: .45rem
    }

    .prod-rating {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font-size: .68rem;
      color: var(--muted);
      font-weight: 600
    }

    .prod-rating-badge {
      display: inline-flex;
      align-items: center;
      gap: 3px;
      padding: 2px 7px;
      border-radius: 999px;
      background: rgba(34, 197, 94, .12);
      color: #166534;
      font-weight: 700;
      line-height: 1
    }

    .prod-rating-badge i {
      font-size: .58rem
    }

    .prod-meta-row .prod-cat {
      margin-bottom: 0
    }

    .prod-desc {
      font-size: .78rem;
      color: var(--muted);
      line-height: 1.5;
      margin-bottom: .9rem
    }

    .prod-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: .5rem
    }

    .prod-price-wrap {
      display: flex;
      flex-direction: column
    }

    .prod-price {
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--saffron-deep)
    }

    .prod-old-price {
      font-size: .72rem;
      color: var(--muted);
      text-decoration: line-through
    }

    .prod-save {
      font-size: .65rem;
      color: var(--green);
      font-weight: 600
    }

    .prod-delivery-chip {
      font-size: .64rem;
      margin-top: 4px;
      display: inline-flex;
      align-items: center;
      gap: 4px;
      color: var(--muted);
      background: rgba(232, 96, 44, .06);
      border: 1px solid rgba(232, 96, 44, .12);
      border-radius: 999px;
      padding: 2px 8px
    }

    .prod-delivery-chip i {
      font-size: .6rem
    }

    .prod-delivery-chip.free {
      background: rgba(34, 197, 94, .08);
      border-color: rgba(34, 197, 94, .18);
      color: #166534;
      font-weight: 600
    }

    .add-to-cart {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--saffron), var(--gold));
      border: none;
      color: white;
      cursor: pointer;
      font-size: 1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all .3s;
      flex-shrink: 0;
      touch-action: manipulation
    }

    .add-to-cart:active {
      transform: scale(.88)
    }

    .skel-card {
      background: white;
      border-radius: 18px;
      overflow: hidden;
      box-shadow: 0 4px 18px rgba(0, 0, 0, .06)
    }

    .skel-img {
      height: 210px;
      background: linear-gradient(90deg, #f0e8e0 25%, #f8f0e8 50%, #f0e8e0 75%);
      background-size: 200% 100%;
      animation: shimmer 1.4s infinite
    }

    .skel-body {
      padding: 1.1rem
    }

    .skel-line {
      height: 10px;
      border-radius: 5px;
      background: linear-gradient(90deg, #f0e8e0 25%, #f8f0e8 50%, #f0e8e0 75%);
      background-size: 200% 100%;
      animation: shimmer 1.4s infinite;
      margin-bottom: 8px
    }

    .skel-line.short {
      width: 60%
    }

    .skel-line.tiny {
      width: 40%;
      height: 8px
    }

    @keyframes shimmer {
      0% {
        background-position: 200% 0
      }

      100% {
        background-position: -200% 0
      }
    }

    .no-results {
      text-align: center;
      padding: 4rem;
      grid-column: 1/-1
    }

    .no-results i {
      font-size: 3.5rem;
      color: rgba(232, 96, 44, .2);
      display: block;
      margin-bottom: 1rem
    }

    .no-results p {
      color: var(--muted)
    }

    .pagination {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: .5rem;
      margin-top: 3rem;
      flex-wrap: wrap
    }

    .page-btn {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      border: 2px solid rgba(232, 96, 44, .15);
      background: white;
      color: var(--text);
      font-size: .88rem;
      cursor: pointer;
      transition: all .3s;
      display: flex;
      align-items: center;
      justify-content: center
    }

    .page-btn.active {
      background: linear-gradient(135deg, var(--saffron), var(--gold));
      border-color: transparent;
      color: white;
      box-shadow: 0 4px 16px var(--shadow)
    }

    .page-btn:disabled {
      opacity: .4;
      cursor: not-allowed
    }

    #parlour-visit {
      background: linear-gradient(135deg, #1c0f08 0%, #3a1208 40%, #1c0f08 100%);
      position: relative;
      overflow: hidden
    }

    #parlour-visit::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url('https://images.unsplash.com/photo-1560066984-138daaa7a70f?w=1200') center/cover no-repeat;
      opacity: .18
    }

    #parlour-visit::after {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 60% 50%, rgba(212, 168, 67, .15) 0%, transparent 70%);
      pointer-events: none
    }

    .parlour-inner {
      max-width: 1400px;
      margin: 0 auto;
      padding: 80px 5%;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
      position: relative;
      z-index: 2
    }

    .parlour-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(212, 168, 67, .15);
      border: 1px solid rgba(212, 168, 67, .4);
      padding: 7px 16px;
      border-radius: 50px;
      margin-bottom: 1.4rem
    }

    .parlour-eyebrow i {
      color: var(--gold);
      font-size: .75rem
    }

    .parlour-eyebrow span {
      font-size: .7rem;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--gold-light);
      font-weight: 700
    }

    .parlour-heading {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.2rem, 5vw, 4rem);
      color: white;
      line-height: 1.15;
      margin-bottom: 1.2rem;
      font-weight: 700
    }

    .parlour-heading strong {
      display: block;
      background: linear-gradient(135deg, var(--gold-light), var(--gold), #e8a020);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      font-size: 1.15em
    }

    .parlour-desc {
      color: rgba(255, 255, 255, .65);
      font-size: 1rem;
      line-height: 1.75;
      margin-bottom: 2rem;
      max-width: 460px
    }

    .parlour-services {
      display: flex;
      flex-wrap: wrap;
      gap: .6rem;
      margin-bottom: 2.2rem
    }

    .parlour-tag {
      padding: 6px 14px;
      background: rgba(232, 96, 44, .12);
      border: 1px solid rgba(232, 96, 44, .25);
      border-radius: 50px;
      font-size: .77rem;
      color: rgba(255, 255, 255, .75);
      font-weight: 500
    }

    .parlour-cta-group {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      align-items: center
    }

    .btn-parlour-main {
      padding: 14px 30px;
      background: linear-gradient(135deg, var(--gold), #c49030);
      color: var(--dark);
      font-weight: 800;
      font-size: .93rem;
      border-radius: 50px;
      border: none;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      transition: all .3s;
      box-shadow: 0 8px 32px rgba(212, 168, 67, .4)
    }

    .btn-parlour-main:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 48px rgba(212, 168, 67, .55)
    }

    .btn-parlour-call {
      padding: 14px 26px;
      background: linear-gradient(135deg, var(--saffron), var(--saffron-deep));
      color: white;
      font-weight: 700;
      font-size: .9rem;
      border-radius: 50px;
      border: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      text-decoration: none;
      transition: all .3s
    }

    .btn-parlour-call:hover {
      opacity: .88;
      transform: translateY(-3px)
    }

    .parlour-image-side {
      position: relative
    }

    .parlour-deco-ring {
      position: absolute;
      top: -30px;
      right: -30px;
      width: 160px;
      height: 160px;
      border-radius: 50%;
      border: 2px solid rgba(212, 168, 67, .2);
      pointer-events: none
    }

    .parlour-deco-ring::after {
      content: '';
      position: absolute;
      top: 20px;
      left: 20px;
      right: 20px;
      bottom: 20px;
      border-radius: 50%;
      border: 1px solid rgba(212, 168, 67, .15)
    }

    .parlour-img-frame {
      width: 100%;
      aspect-ratio: 4/5;
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 24px 80px rgba(0, 0, 0, .5);
      position: relative
    }

    .parlour-img-frame img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform .7s ease
    }

    .parlour-img-frame:hover img {
      transform: scale(1.05)
    }

    .parlour-img-frame::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(28, 15, 8, .7) 0%, transparent 50%);
      pointer-events: none
    }

    .parlour-img-badge {
      position: absolute;
      bottom: 20px;
      left: 20px;
      right: 20px;
      background: rgba(255, 255, 255, .1);
      backdrop-filter: blur(12px);
      border: 1px solid rgba(255, 255, 255, .15);
      border-radius: 14px;
      padding: 14px 18px;
      display: flex;
      align-items: center;
      gap: 12px;
      z-index: 3
    }

    .parlour-img-badge-icon {
      width: 42px;
      height: 42px;
      border-radius: 12px;
      background: linear-gradient(135deg, var(--saffron), var(--gold));
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0
    }

    .parlour-img-badge-icon i {
      color: white;
      font-size: 1.1rem
    }

    .parlour-img-badge-text strong {
      display: block;
      color: white;
      font-size: .88rem;
      font-weight: 700
    }

    .parlour-img-badge-text span {
      color: rgba(255, 255, 255, .6);
      font-size: .75rem
    }

    .why-bg {
      background: linear-gradient(135deg, var(--dark), #2d1208)
    }

    .why-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
      gap: 1.5rem
    }

    .why-card {
      background: rgba(255, 255, 255, .04);
      border: 1px solid rgba(255, 255, 255, .07);
      border-radius: 18px;
      padding: 2rem;
      text-align: center;
      transition: all .4s
    }

    .why-card:hover {
      background: rgba(255, 255, 255, .08);
      transform: translateY(-6px)
    }

    .why-icon {
      width: 64px;
      height: 64px;
      border-radius: 18px;
      background: linear-gradient(135deg, rgba(232, 96, 44, .2), rgba(212, 168, 67, .15));
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.2rem
    }

    .why-icon i {
      color: var(--gold);
      font-size: 1.5rem
    }

    .why-card h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.1rem;
      color: white;
      margin-bottom: .5rem
    }

    .why-card p {
      font-size: .82rem;
      color: rgba(255, 255, 255, .5);
      line-height: 1.6
    }



    .brands-bg {
      background: var(--ivory)
    }

    .brands-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 1.1rem;
      justify-content: center;
      align-items: center
    }

    .brand-pill {
      padding: 10px 22px;
      background: white;
      border: 2px solid rgba(232, 96, 44, .12);
      border-radius: 50px;
      font-size: .82rem;
      font-weight: 600;
      color: var(--muted);
      transition: all .3s;
      box-shadow: 0 2px 10px rgba(0, 0, 0, .04)
    }

    .brand-pill:hover {
      border-color: var(--saffron);
      color: var(--saffron);
      transform: translateY(-3px);
      box-shadow: 0 8px 24px var(--shadow)
    }

    .festive-offers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 1.25rem;
    }

    .festive-offer-card {
      background: white;
      border-radius: 18px;
      overflow: hidden;
      border: 1px solid rgba(232, 96, 44, .12);
      box-shadow: 0 6px 22px rgba(0, 0, 0, .05);
      display: flex;
      flex-direction: column;
      height: 100%;
      transition: transform .28s var(--ease, cubic-bezier(.2, .9, .25, 1)), box-shadow .28s;
    }

    .festive-offer-media {
      width: 100%;
      aspect-ratio: 2.1 / 1;
      height: auto;
      min-height: 150px;
      position: relative;
      overflow: hidden;
      border-top-left-radius: 18px;
      border-top-right-radius: 18px;
    }

    .festive-offer-media::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(28, 15, 8, 0) 0%, rgba(28, 15, 8, .26) 100%);
    }

    .festive-offer-content {
      padding: 1rem 1.1rem 1.15rem;
      display: flex;
      flex-direction: column;
      gap: .55rem;
      flex-grow: 1;
    }

    .festive-offer-badge {
      display: inline-flex;
      align-self: flex-start;
      padding: 5px 12px;
      border-radius: 999px;
      background: rgba(232, 96, 44, .09);
      color: var(--saffron-deep);
      font-size: .72rem;
      font-weight: 800;
      letter-spacing: .02em;
      text-transform: uppercase;
    }

    .festive-offer-content h3 {
      margin: 0;
      font-size: 1.15rem;
      color: var(--text);
      line-height: 1.3;
    }

    .festive-offer-content p {
      margin: 0;
      color: var(--muted);
      font-size: .88rem;
      line-height: 1.45;
    }

    .festive-offer-cta {
      display: inline-flex;
      align-items: center;
      gap: .45rem;
      margin-top: auto;
      color: var(--saffron-deep);
      font-weight: 800;
      text-decoration: none;
    }

    .festive-offer-cta::after {
      content: '→';
      font-size: .95em;
    }

    /* Mobile: present offers as a horizontal swipeable slider */
    @media (max-width: 767px) {
      .festive-offers-grid {
        display: flex;
        gap: 14px;
        overflow-x: auto;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
      }

      .festive-offer-card {
        min-width: 86vw;
        max-width: 86vw;
        flex: 0 0 auto;
        scroll-snap-align: center;
        margin: 0;
      }

      .festive-offer-media {
        aspect-ratio: 2.1 / 1;
        min-height: 140px;
        height: auto;
      }

      /* hide native scrollbar for a cleaner look */
      .festive-offers-grid::-webkit-scrollbar {
        display: none;
      }

      .festive-offers-grid {
        -ms-overflow-style: none;
        scrollbar-width: none;
      }
    }

    /* Enhanced visuals */
    .festive-offer-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 16px 36px rgba(36, 36, 36, 0.1);
    }

    .festive-off-img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
      object-position: center;
    }

    .festive-offer-badge {
      background: rgba(255, 255, 255, 0.85);
      padding: 6px 12px;
      border-radius: 999px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
      font-weight: 800;
    }

    .festive-offer-cta {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      padding: 8px 12px;
      border-radius: 10px;
      background: var(--saffron-deep);
      color: white;
      text-decoration: none;
      font-weight: 800;
      box-shadow: 0 6px 18px rgba(232, 96, 44, 0.14);
    }

    /* Entrance animation */
    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(8px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .reveal {
      animation: fadeUp .5s ease both;
    }

    /* Pagination dots */
    .offer-dots {
      display: flex;
      gap: .45rem;
      justify-content: center;
      margin-top: .7rem
    }

    .offer-dot {
      width: 9px;
      height: 9px;
      border-radius: 99px;
      background: rgba(0, 0, 0, 0.18);
      border: none;
      padding: 0;
      cursor: pointer
    }

    .offer-dot.active {
      background: var(--saffron-deep);
      box-shadow: 0 6px 14px rgba(181, 69, 27, 0.12);
    }

    .contact-section {
      background: var(--cream);
      position: relative;
      overflow: hidden
    }

    .contact-top-strip {
      background: linear-gradient(135deg, var(--dark) 0%, #2d1208 100%);
      padding: 0
    }

    .contact-strip-inner {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr;
      min-height: 420px
    }

    .contact-map-side {
      position: relative;
      overflow: hidden
    }

    .contact-map-side iframe {
      width: 100%;
      height: 100%;
      min-height: 380px;
      border: none;
      display: block;
      filter: grayscale(15%) contrast(1.1);
      opacity: .85
    }

    .contact-map-side::after {
      content: '';
      position: absolute;
      right: 0;
      top: 0;
      bottom: 0;
      width: 60px;
      background: linear-gradient(to right, transparent, #1c0f08);
      pointer-events: none
    }

    .contact-info-strip {
      padding: 3rem 3rem 3rem 2.5rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 1.2rem
    }

    .contact-strip-heading {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.8rem, 3vw, 2.6rem);
      color: white;
      line-height: 1.2;
      margin-bottom: .3rem
    }

    .contact-strip-heading span {
      color: var(--gold-light);
      font-style: italic
    }

    .contact-strip-sub {
      font-size: .88rem;
      color: rgba(255, 255, 255, .5);
      line-height: 1.6;
      margin-bottom: .5rem
    }

    .contact-info-row {
      display: flex;
      align-items: flex-start;
      gap: 1rem
    }

    .contact-info-icon {
      width: 42px;
      height: 42px;
      border-radius: 11px;
      background: rgba(232, 96, 44, .15);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0
    }

    .contact-info-icon i {
      color: var(--saffron);
      font-size: .95rem
    }

    .contact-info-text h5 {
      font-size: .68rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--saffron);
      font-weight: 700;
      margin-bottom: 2px
    }

    .contact-info-text p,
    .contact-info-text a {
      font-size: .86rem;
      color: rgba(255, 255, 255, .75);
      text-decoration: none;
      display: block;
      line-height: 1.5;
      transition: color .3s
    }

    .contact-info-text a:hover {
      color: var(--gold-light)
    }

    .contact-strip-social {
      display: flex;
      gap: .6rem;
      flex-wrap: wrap;
      margin-top: .5rem
    }

    .csoc-btn {
      padding: 9px 16px;
      border-radius: 50px;
      font-size: .78rem;
      font-weight: 700;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: all .3s;
      border: none;
      cursor: pointer;
      font-family: 'Outfit', sans-serif
    }

    .csoc-ig {
      background: linear-gradient(135deg, #e1306c, #833ab4);
      color: white
    }

    .csoc-ig:hover {
      opacity: .88;
      transform: translateY(-2px)
    }

    .csoc-call {
      background: var(--saffron);
      color: white
    }

    .csoc-call:hover {
      background: var(--saffron-deep);
      transform: translateY(-2px)
    }

    .csoc-email {
      background: var(--gold);
      color: var(--dark)
    }

    .csoc-email:hover {
      transform: translateY(-2px)
    }

    .contact-form-area {
      max-width: 1400px;
      margin: 0 auto;
      padding: 70px 5%;
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 4rem;
      align-items: start
    }

    .contact-form-card {
      background: white;
      border-radius: 24px;
      padding: 2.5rem;
      box-shadow: 0 12px 60px rgba(180, 69, 27, .1);
      border: 1px solid rgba(232, 96, 44, .07);
      position: relative
    }

    .contact-form-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--saffron), var(--gold), var(--rose));
      border-radius: 24px 24px 0 0
    }

    .contact-form-card h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.8rem;
      color: var(--dark);
      margin-bottom: .4rem
    }

    .contact-form-card .form-intro {
      font-size: .85rem;
      color: var(--muted);
      margin-bottom: 1.6rem;
      line-height: 1.6
    }

    .form-group {
      margin-bottom: 1rem
    }

    .form-group label {
      display: block;
      font-size: .8rem;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 5px;
      letter-spacing: .3px
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
      width: 100%;
      padding: 11px 14px;
      border: 2px solid rgba(232, 96, 44, .12);
      border-radius: 11px;
      font-family: 'Outfit', sans-serif;
      font-size: 15px;
      color: var(--text);
      background: #fdf9f5;
      outline: none;
      transition: border-color .3s;
      appearance: none;
      -webkit-appearance: none
    }

    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
      border-color: var(--saffron);
      background: white;
      box-shadow: 0 0 0 3px rgba(232, 96, 44, .07)
    }

    .form-group textarea {
      min-height: 100px;
      resize: vertical
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem
    }

    .form-actions {
      display: flex;
      gap: .8rem;
      flex-wrap: wrap;
      margin-top: 1.2rem
    }

    .form-actions .btn-primary {
      flex: 1;
      justify-content: center;
      min-width: 130px;
      padding: 13px 20px
    }

    .form-note {
      font-size: .73rem;
      color: var(--muted);
      margin-top: .8rem;
      display: flex;
      align-items: center;
      gap: 5px
    }

    .form-note i {
      color: var(--green);
      font-size: .75rem
    }

    .contact-quick-cards {
      display: flex;
      flex-direction: column;
      gap: 1.2rem
    }

    .cq-card {
      background: white;
      border-radius: 18px;
      padding: 1.4rem 1.6rem;
      box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
      border: 1.5px solid rgba(232, 96, 44, .07);
      transition: all .35s;
      text-decoration: none;
      display: block;
      cursor: pointer
    }

    .cq-card:hover {
      transform: translateY(-4px);
      border-color: var(--saffron);
      box-shadow: 0 12px 36px var(--shadow)
    }

    .cq-card-head {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: .8rem
    }

    .cq-card.phone-card {
      background: linear-gradient(180deg, #fff, #fffaf6);
      border-color: rgba(232, 96, 44, .12)
    }

    .cq-card.phone-card:hover {
      box-shadow: 0 16px 42px rgba(232, 96, 44, .14)
    }

    .cq-phone-head {
      display: flex;
      flex-direction: column;
      gap: .1rem
    }

    .cq-card-label {
      display: inline-flex;
      align-items: center;
      width: fit-content;
      padding: 4px 10px;
      border-radius: 999px;
      background: rgba(232, 96, 44, .08);
      color: var(--saffron-deep);
      font-size: .68rem;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      font-family: 'Inter', sans-serif
    }

    .cq-card.phone-card .cq-card-title,
    .cq-card.phone-card .cq-card-sub,
    .cq-card.phone-card .cq-card-value,
    .cq-card.phone-card .cq-phone-number,
    .cq-card.phone-card .cq-phone-action {
      font-family: 'Inter', sans-serif
    }

    .cq-phone-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      padding-top: .2rem;
      flex-wrap: wrap
    }

    .cq-phone-number {
      font-size: 1.03rem;
      font-weight: 800;
      color: var(--dark);
      letter-spacing: .01em;
      line-height: 1.3;
      word-break: break-word
    }

    .cq-phone-action {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: .45rem .8rem;
      border-radius: 999px;
      background: rgba(34, 197, 94, .08);
      border: 1px solid rgba(34, 197, 94, .15);
      color: #166534;
      font-size: .72rem;
      font-weight: 700;
      white-space: nowrap
    }

    .cq-phone-action i {
      font-size: .72rem
    }

    .cq-card-icon {
      width: 48px;
      height: 48px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0
    }

    .cq-card-icon.call {
      background: linear-gradient(135deg, var(--saffron), var(--saffron-deep))
    }

    .cq-card-icon.ig {
      background: linear-gradient(135deg, #e1306c, #833ab4)
    }

    .cq-card-icon.loc {
      background: linear-gradient(135deg, var(--dark), #4a2010)
    }

    .cq-card-icon.pay {
      background: linear-gradient(135deg, #072654, #1a4a9b)
    }

    .cq-card-icon i {
      color: white;
      font-size: 1.15rem
    }

    .cq-card-title {
      font-weight: 700;
      font-size: .92rem;
      color: var(--dark)
    }

    .cq-card-sub {
      font-size: .75rem;
      color: var(--muted)
    }

    .cq-card-value {
      font-size: .88rem;
      color: var(--text);
      font-weight: 500;
      line-height: 1.5
    }

    .cq-card-badge {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      background: rgba(34, 197, 94, .1);
      border: 1px solid rgba(34, 197, 94, .2);
      color: var(--green);
      font-size: .68rem;
      font-weight: 700;
      letter-spacing: 1px;
      padding: 3px 9px;
      border-radius: 50px;
      margin-top: .5rem
    }

    .hours-card {
      background: linear-gradient(135deg, var(--dark), #2d1208);
      border-radius: 18px;
      padding: 1.4rem 1.6rem;
      border: 1px solid rgba(212, 168, 67, .15)
    }

    .hours-card .hours-title {
      font-family: 'Cormorant Garamond', serif;
      color: var(--gold-light);
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
      gap: 8px
    }

    .hours-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: .5rem 0;
      border-bottom: 1px solid rgba(255, 255, 255, .06);
      font-size: .82rem
    }

    .hours-row:last-child {
      border-bottom: none
    }

    .hours-row .day {
      color: rgba(255, 255, 255, .55)
    }

    .hours-row .time {
      color: var(--gold-light);
      font-weight: 600
    }

    .pay-overlay {
      position: fixed;
      inset: 0;
      background: rgba(15, 10, 5, .82);
      backdrop-filter: blur(8px);
      z-index: 3500;
      opacity: 0;
      visibility: hidden;
      transition: all .35s;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 1rem
    }

    .pay-overlay.open {
      opacity: 1;
      visibility: visible
    }

    .pay-modal {
      background: white;
      border-radius: 28px;
      width: 100%;
      max-width: 520px;
      max-height: 92vh;
      overflow-y: auto;
      box-shadow: 0 40px 100px rgba(0, 0, 0, .4);
      transform: scale(.9) translateY(20px);
      transition: transform .4s cubic-bezier(.175, .885, .32, 1.275)
    }

    .pay-overlay.open .pay-modal {
      transform: scale(1) translateY(0)
    }

    .pay-modal-head {
      background: linear-gradient(135deg, #072654, #1a3a7a);
      padding: 1.4rem 1.6rem;
      border-radius: 28px 28px 0 0;
      display: flex;
      align-items: center;
      justify-content: space-between
    }

    .pay-modal-head h3 {
      color: white;
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.4rem;
      display: flex;
      align-items: center;
      gap: 10px
    }

    .pay-modal-head h3 i {
      color: #60a5fa
    }

    .pay-modal-close {
      background: rgba(255, 255, 255, .12);
      border: none;
      color: white;
      width: 34px;
      height: 34px;
      border-radius: 9px;
      cursor: pointer;
      font-size: 1rem;
      display: flex;
      align-items: center;
      justify-content: center
    }

    .pay-modal-body {
      padding: 1.8rem
    }

    .pay-order-strip {
      background: linear-gradient(135deg, rgba(232, 96, 44, .06), rgba(212, 168, 67, .05));
      border: 1.5px solid rgba(232, 96, 44, .12);
      border-radius: 16px;
      padding: 1.1rem 1.3rem;
      margin-bottom: 1.6rem;
      display: flex;
      align-items: center;
      gap: 1rem
    }

    .pay-order-img {
      width: 64px;
      height: 64px;
      border-radius: 12px;
      background-size: cover;
      background-position: center;
      flex-shrink: 0
    }

    .pay-order-details h4 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--dark)
    }

    .pay-order-details .pay-order-brand {
      font-size: .72rem;
      color: var(--muted);
      font-style: italic;
      margin-bottom: 3px
    }

    .pay-order-details .pay-order-total {
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--saffron-deep)
    }

    .pay-order-details .pay-order-qty {
      font-size: .74rem;
      color: var(--muted)
    }

    .pay-qty-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 1.4rem;
      background: #fdf9f5;
      border-radius: 12px;
      padding: .8rem 1.1rem
    }

    .pay-qty-label {
      font-size: .84rem;
      font-weight: 700;
      color: var(--text)
    }

    .pay-qty-ctrl {
      display: flex;
      align-items: center;
      gap: .5rem
    }

    .pay-qty-ctrl button {
      width: 34px;
      height: 34px;
      border-radius: 9px;
      border: 2px solid rgba(232, 96, 44, .2);
      background: white;
      color: var(--saffron);
      font-weight: 700;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      transition: all .2s
    }

    .pay-qty-ctrl button:hover {
      background: var(--saffron);
      color: white;
      border-color: var(--saffron)
    }

    .pay-qty-ctrl span {
      font-size: 1rem;
      font-weight: 700;
      min-width: 28px;
      text-align: center;
      color: var(--dark)
    }

    .pay-section-label {
      font-size: .72rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      font-weight: 700;
      color: var(--saffron);
      margin-bottom: .7rem;
      display: flex;
      align-items: center;
      gap: 6px
    }

    .pay-input {
      width: 100%;
      padding: 11px 14px;
      border: 2px solid rgba(232, 96, 44, .15);
      border-radius: 11px;
      font-family: 'Outfit', sans-serif;
      font-size: .9rem;
      color: var(--text);
      background: #fdf9f5;
      outline: none;
      margin-bottom: .8rem;
      transition: border-color .3s
    }

    .pay-input:focus {
      border-color: var(--saffron);
      background: white;
      box-shadow: 0 0 0 3px rgba(232, 96, 44, .07)
    }

    .pay-input-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: .7rem
    }

    .pay-methods {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: .6rem;
      margin-bottom: 1.4rem
    }

    .pay-method-tab {
      padding: .8rem .5rem;
      border: 2px solid rgba(232, 96, 44, .15);
      border-radius: 13px;
      text-align: center;
      cursor: pointer;
      transition: all .3s;
      background: white
    }

    .pay-method-tab:hover {
      border-color: var(--saffron)
    }

    .pay-method-tab i {
      display: block;
      font-size: 1.3rem;
      margin-bottom: .35rem
    }

    .pay-method-tab span {
      font-size: .72rem;
      font-weight: 700;
      color: var(--text);
      display: block
    }

    .pay-method-tab small {
      font-size: .62rem;
      color: var(--muted)
    }

    .tab-cod i {
      color: #22c55e
    }

    .pay-method-tab.active.tab-cod {
      border-color: #22c55e;
      background: rgba(34, 197, 94, .05)
    }

    .pay-panel {
      display: none
    }

    .pay-panel.active {
      display: block
    }

    .upi-id-box {
      background: #f8f4ff;
      border: 2px solid #e9d5ff;
      border-radius: 12px;
      padding: 1rem;
      margin-bottom: 1rem
    }

    .upi-id-box p {
      font-size: .75rem;
      color: #7c3aed;
      font-weight: 600;
      margin-bottom: 4px
    }

    .upi-id-val {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px
    }

    .upi-id-val span {
      font-size: 1rem;
      font-weight: 700;
      color: var(--dark);
      font-family: monospace
    }

    .copy-btn {
      padding: 6px 12px;
      background: #7c3aed;
      color: white;
      border: none;
      border-radius: 8px;
      font-size: .72rem;
      font-weight: 700;
      cursor: pointer;
      font-family: 'Outfit', sans-serif;
      transition: all .2s
    }

    .copy-btn.copied {
      background: #22c55e
    }

    .cod-info {
      background: linear-gradient(135deg, rgba(34, 197, 94, .07), rgba(34, 197, 94, .03));
      border: 2px solid rgba(34, 197, 94, .2);
      border-radius: 14px;
      padding: 1.2rem;
      margin-bottom: 1rem
    }

    .cod-info-row {
      display: flex;
      align-items: flex-start;
      gap: .8rem;
      margin-bottom: .7rem
    }

    .cod-info-row:last-child {
      margin-bottom: 0
    }

    .cod-info-row i {
      color: #22c55e;
      margin-top: 2px;
      flex-shrink: 0;
      width: 16px
    }

    .cod-info-row p {
      font-size: .82rem;
      color: var(--text);
      line-height: 1.5
    }

    .pay-divider {
      border: none;
      border-top: 1px solid rgba(232, 96, 44, .1);
      margin: 1.2rem 0
    }

    .pay-total-final {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1.2rem
    }

    .pay-total-final span {
      font-size: .9rem;
      color: var(--muted)
    }

    .pay-total-final strong {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--saffron-deep)
    }

    .btn-pay-now {
      width: 100%;
      padding: 15px;
      border: none;
      border-radius: 50px;
      font-family: 'Outfit', sans-serif;
      font-size: 1rem;
      font-weight: 800;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      transition: all .3s;
      letter-spacing: .3px
    }

    .btn-pay-upi {
      background: linear-gradient(135deg, #5f259f, #8b5cf6);
      color: white;
      box-shadow: 0 8px 28px rgba(95, 37, 159, .35)
    }

    .btn-pay-upi:hover {
      transform: translateY(-3px);
      box-shadow: 0 14px 40px rgba(95, 37, 159, .45)
    }

    .btn-pay-cod {
      background: linear-gradient(135deg, #16a34a, #15803d);
      color: white;
      box-shadow: 0 8px 28px rgba(22, 163, 74, .3)
    }

    .btn-pay-cod:hover {
      transform: translateY(-3px)
    }

    /* Razorpay removed — payment UI simplified to COD/UPI */

    .pay-secure-note {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      margin-top: .8rem;
      font-size: .72rem;
      color: var(--muted)
    }

    .pay-secure-note i {
      color: var(--green)
    }

    .pay-success {
      text-align: center;
      padding: 2.5rem 1.5rem
    }

    .pay-success .succ-icon {
      font-size: 4rem;
      color: var(--green);
      display: block;
      margin-bottom: 1rem;
      animation: successPop .5s cubic-bezier(.175, .885, .32, 1.275)
    }

    @keyframes successPop {
      from {
        transform: scale(0)
      }

      to {
        transform: scale(1)
      }
    }

    .pay-success h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2rem;
      color: var(--dark);
      margin-bottom: .4rem
    }

    .pay-success p {
      color: var(--muted);
      font-size: .9rem;
      line-height: 1.7
    }

    .pay-success-actions {
      display: flex;
      gap: .8rem;
      margin-top: 1.4rem;
      justify-content: center;
      flex-wrap: wrap
    }

    .buy-overlay {
      position: fixed;
      inset: 0;
      background: rgba(28, 15, 8, .78);
      backdrop-filter: blur(6px);
      z-index: 3000;
      opacity: 0;
      visibility: hidden;
      transition: all .3s;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 1rem
    }

    .buy-overlay.open {
      opacity: 1;
      visibility: visible
    }

    .buy-modal {
      background: white;
      border-radius: 24px;
      width: 100%;
      max-width: 460px;
      max-height: 90vh;
      overflow-y: auto;
      box-shadow: 0 30px 80px rgba(0, 0, 0, .3);
      transform: scale(.9);
      transition: transform .3s cubic-bezier(.175, .885, .32, 1.275)
    }

    .buy-overlay.open .buy-modal {
      transform: scale(1)
    }

    .buy-modal-head {
      background: linear-gradient(135deg, var(--saffron-deep), var(--dark));
      padding: 1.3rem 1.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-radius: 24px 24px 0 0
    }

    .buy-modal-head h3 {
      font-family: 'Cormorant Garamond', serif;
      color: white;
      font-size: 1.3rem
    }

    .buy-modal-close {
      background: rgba(255, 255, 255, .15);
      border: none;
      color: white;
      width: 32px;
      height: 32px;
      border-radius: 8px;
      cursor: pointer;
      font-size: 1rem;
      display: flex;
      align-items: center;
      justify-content: center
    }

    .buy-modal-body {
      padding: 1.5rem
    }

    .buy-prod-row {
      display: flex;
      gap: 1rem;
      align-items: center;
      background: var(--cream);
      border-radius: 14px;
      padding: 1rem;
      margin-bottom: 1.3rem
    }

    .buy-prod-img {
      width: 72px;
      height: 72px;
      border-radius: 10px;
      background-size: cover;
      background-position: center;
      flex-shrink: 0
    }

    .buy-prod-info h4 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--dark)
    }

    .buy-prod-info .buy-price {
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--saffron-deep);
      margin-top: 3px
    }

    .buy-qty-row-old {
      display: flex;
      align-items: center;
      gap: .8rem;
      margin-bottom: 1.1rem
    }

    .buy-qty-ctrl-old {
      display: flex;
      align-items: center;
      gap: .5rem
    }

    .buy-qty-ctrl-old button {
      width: 32px;
      height: 32px;
      border-radius: 8px;
      border: 2px solid rgba(232, 96, 44, .2);
      background: white;
      color: var(--saffron);
      font-weight: 700;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem
    }

    .buy-qty-ctrl-old span {
      font-size: 1rem;
      font-weight: 700;
      min-width: 28px;
      text-align: center;
      color: var(--dark)
    }

    .buy-divider {
      border: none;
      border-top: 1px solid rgba(232, 96, 44, .1);
      margin: 1rem 0
    }

    .buy-actions {
      display: flex;
      flex-direction: column;
      gap: .8rem
    }

    .buy-actions .btn-primary {
      justify-content: center;
      width: 100%;
      font-size: 1rem;
      padding: 14px
    }

    .btn-pay-main {
      width: 100%;
      padding: 14px;
      background: linear-gradient(135deg, #072654, #1a4a9b);
      color: white;
      border: none;
      border-radius: 50px;
      font-family: 'Outfit', sans-serif;
      font-size: 1rem;
      font-weight: 700;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      transition: all .3s
    }

    .btn-pay-main:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 28px rgba(7, 38, 84, .4)
    }

    .cart-overlay {
      position: fixed;
      inset: 0;
      background: rgba(28, 15, 8, .65);
      backdrop-filter: blur(4px);
      z-index: 2000;
      opacity: 0;
      visibility: hidden;
      transition: all .3s
    }

    .cart-overlay.open {
      opacity: 1;
      visibility: visible
    }

    .cart-drawer {
      position: fixed;
      top: 0;
      right: -110%;
      width: min(420px, 100vw);
      height: 100vh;
      height: 100dvh;
      background: var(--ivory);
      z-index: 9999 !important;
      display: flex;
      flex-direction: column;
      transition: right .4s cubic-bezier(.22, 1, .36, 1);
      box-shadow: -10px 0 60px rgba(0, 0, 0, .15)
    }

    .cart-drawer.open {
      right: 0
    }

    .cart-head {
      padding: 1.3rem 1.5rem;
      background: linear-gradient(135deg, var(--saffron-deep), var(--dark));
      color: white;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-shrink: 0
    }

    .cart-head h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.3rem
    }

    .cart-close-btn {
      background: rgba(255, 255, 255, .15);
      border: none;
      color: white;
      width: 32px;
      height: 32px;
      border-radius: 8px;
      cursor: pointer;
      font-size: 1rem;
      display: flex;
      align-items: center;
      justify-content: center
    }

    .cart-list {
      flex: 1;
      min-height: 0;
      overflow-y: auto;
      padding: 1.1rem;
      -webkit-overflow-scrolling: touch
    }

    .cart-empty-msg {
      text-align: center;
      padding: 3rem 1rem;
      color: var(--muted)
    }

    .cart-empty-msg i {
      font-size: 3rem;
      color: rgba(232, 96, 44, .2);
      display: block;
      margin-bottom: 1rem
    }

    .cart-item {
      display: flex;
      gap: 1rem;
      align-items: center;
      padding: 1rem 0;
      border-bottom: 1px solid rgba(232, 96, 44, .1)
    }

    .cart-item-img {
      width: 58px;
      height: 58px;
      border-radius: 10px;
      background-size: cover;
      background-position: center;
      flex-shrink: 0
    }

    .cart-item-info {
      flex: 1;
      min-width: 0
    }

    .cart-item-name {
      font-weight: 600;
      font-size: .86rem;
      color: var(--dark);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis
    }

    .cart-item-price {
      color: var(--saffron);
      font-weight: 700;
      font-size: .88rem;
      margin-top: 2px
    }

    .cart-item-qty {
      display: flex;
      align-items: center;
      gap: 6px;
      margin-top: 5px
    }

    .qty-btn {
      width: 24px;
      height: 24px;
      border-radius: 6px;
      border: 1.5px solid rgba(232, 96, 44, .25);
      background: white;
      color: var(--saffron);
      cursor: pointer;
      font-size: .8rem;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all .2s
    }

    .qty-btn:active {
      background: var(--saffron);
      color: white
    }

    .qty-num {
      font-size: .84rem;
      font-weight: 600;
      min-width: 18px;
      text-align: center
    }

    .cart-item-del {
      background: #fff0ed;
      border: none;
      color: var(--saffron);
      width: 29px;
      height: 29px;
      border-radius: 7px;
      cursor: pointer;
      font-size: .78rem;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: all .3s
    }

    .cart-item-del:active {
      background: var(--saffron);
      color: white
    }

    .cart-foot {
      padding: 1.3rem 1.5rem;
      padding-bottom: calc(1.3rem + env(safe-area-inset-bottom) + 15px);
      border-top: 2px solid rgba(232, 96, 44, .1);
      background: var(--ivory);
      flex-shrink: 0;
      position: sticky;
      bottom: 0;
      z-index: 10
    }

    .cart-total-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: .5rem
    }

    .cart-total-row span:first-child {
      color: var(--muted);
      font-size: .87rem
    }

    .cart-total-row strong {
      font-size: 1.3rem;
      color: var(--saffron-deep)
    }

    .checkout-btn {
      width: 100%;
      padding: 13px;
      background: linear-gradient(135deg, #072654, #1a4a9b);
      color: white;
      border: none;
      border-radius: 50px;
      font-family: 'Outfit', sans-serif;
      font-size: .93rem;
      font-weight: 700;
      cursor: pointer;
      transition: all .3s;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px
    }

    .checkout-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(7, 38, 84, .3)
    }

    .toast {
      position: fixed;
      bottom: 90px;
      left: 50%;
      transform: translateX(-50%) translateY(20px);
      background: var(--dark);
      color: white;
      padding: 11px 22px;
      border-radius: 50px;
      font-size: .86rem;
      font-weight: 500;
      opacity: 0;
      pointer-events: none;
      z-index: 5000;
      transition: all .4s;
      display: flex;
      align-items: center;
      gap: 8px;
      max-width: 90vw;
      text-align: center
    }

    .toast.show {
      opacity: 1;
      transform: translateX(-50%) translateY(0)
    }

    .toast i {
      color: var(--gold);
      flex-shrink: 0
    }

    footer {
      background: var(--dark);
      color: rgba(255, 255, 255, .6);
      padding: 4rem 5% 1.5rem
    }

    .footer-inner {
      max-width: 1400px;
      margin: 0 auto
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1.2fr;
      gap: 3rem;
      margin-bottom: 3rem
    }

    .footer-brand .foot-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.8rem;
      font-weight: 700;
      color: var(--gold-light);
      margin-bottom: .4rem
    }

    .footer-brand .foot-sub {
      font-size: .65rem;
      letter-spacing: 3px;
      color: var(--saffron);
      text-transform: uppercase;
      margin-bottom: 1rem
    }

    .footer-brand p {
      font-size: .83rem;
      line-height: 1.7;
      max-width: 280px
    }

    .foot-social {
      display: flex;
      gap: .65rem;
      margin-top: 1.2rem;
      flex-wrap: wrap
    }

    .foot-soc-link {
      width: 36px;
      height: 36px;
      border-radius: 10px;
      background: rgba(255, 255, 255, .06);
      color: rgba(255, 255, 255, .55);
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      font-size: .9rem;
      transition: all .3s
    }

    .foot-soc-link:hover {
      background: var(--saffron);
      color: white
    }

    .footer-col h4 {
      color: white;
      font-size: .87rem;
      font-weight: 600;
      margin-bottom: 1rem;
      letter-spacing: .5px
    }

    .foot-links {
      list-style: none
    }

    .foot-links li {
      margin-bottom: .5rem
    }

    .foot-links a {
      color: rgba(255, 255, 255, .5);
      text-decoration: none;
      font-size: .82rem;
      transition: color .3s;
      display: flex;
      align-items: center;
      gap: 5px;
      cursor: pointer
    }

    .foot-links a:hover {
      color: var(--gold-light)
    }

    .foot-links i {
      font-size: .6rem;
      color: var(--saffron)
    }

    .footer-contact .cont-row {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      margin-bottom: .85rem;
      font-size: .81rem
    }

    .footer-contact .cont-row i {
      color: var(--saffron);
      width: 14px;
      text-align: center;
      margin-top: 2px;
      flex-shrink: 0
    }

    .footer-contact .cont-row a {
      color: rgba(255, 255, 255, .55);
      text-decoration: none;
      transition: color .3s
    }

    .footer-contact .cont-row a:hover {
      color: var(--gold-light)
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, .07);
      padding-top: 1.5rem;
      text-align: center;
      font-size: .76rem;
      color: rgba(255, 255, 255, .3)
    }

    .footer-bottom a {
      color: rgba(255, 255, 255, .3);
      text-decoration: none
    }

    .mob-cta {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(135deg, var(--saffron-deep), var(--dark));
      padding: 10px 14px;
      display: none;
      align-items: center;
      justify-content: space-between;
      z-index: 1400;
      box-shadow: 0 -4px 20px rgba(0, 0, 0, .25);
      gap: .5rem
    }

    .mob-cta a {
      color: white;
      text-decoration: none;
      font-weight: 600;
      font-size: .82rem;
      display: flex;
      align-items: center;
      gap: 6px;
      flex: 1;
      justify-content: center;
      white-space: nowrap
    }

    .mob-cta-sep {
      width: 1px;
      height: 22px;
      background: rgba(255, 255, 255, .25)
    }

    .mob-cta-close {
      background: rgba(255, 255, 255, .15);
      border: none;
      color: white;
      width: 26px;
      height: 26px;
      border-radius: 6px;
      cursor: pointer;
      font-size: .78rem;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0
    }

    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity .7s ease, transform .7s ease
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0)
    }

    .animate-in {
      opacity: 0;
      transform: translateY(18px) scale(.985);
      transition: opacity .55s ease, transform .55s cubic-bezier(.22, 1, .36, 1);
      transition-delay: var(--stagger-delay, 0ms)
    }

    .animate-in.visible {
      opacity: 1;
      transform: translateY(0) scale(1)
    }

    .js-no-observer .animate-in,
    .js-no-observer .reveal {
      opacity: 1 !important;
      transform: none !important;
    }

    button,
    a,
    .cat-card,
    .bottom-link,
    .prod-card {
      touch-action: manipulation;
    }

    .hero-bg {
      animation: heroDrift 24s ease-in-out infinite alternate
    }

    .hero-pattern {
      animation: heroGlow 9s ease-in-out infinite
    }

    @keyframes heroDrift {
      from {
        transform: scale(1) translate3d(0, 0, 0)
      }

      to {
        transform: scale(1.04) translate3d(-1.2%, 1%, 0)
      }
    }

    @keyframes heroGlow {

      0%,
      100% {
        opacity: .9
      }

      50% {
        opacity: 1
      }
    }

    @media (prefers-reduced-motion: reduce) {

      .animate-in,
      .reveal,
      .hero-bg,
      .hero-pattern {
        animation: none !important;
        transition: none !important;
        transform: none !important;
        opacity: 1 !important
      }
    }

    .auth-overlay {
      position: fixed;
      inset: 0;
      background: rgba(28, 15, 8, 0.85);
      backdrop-filter: blur(10px);
      z-index: 4000;
      opacity: 0;
      visibility: hidden;
      transition: all 0.35s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 1rem;
    }

    .auth-overlay.open {
      opacity: 1;
      visibility: visible;
    }

    .auth-modal {
      background: white;
      border-radius: 28px;
      width: 100%;
      max-width: 440px;
      max-height: min(650px, 90vh);
      overflow: hidden;
      box-shadow: 0 40px 100px rgba(0, 0, 0, 0.25);
      transform: scale(0.9) translateY(20px);
      transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.35s ease;
      position: relative;
      background-color: #ffffff;
      border: 1px solid rgba(230, 126, 34, 0.08);
      display: flex;
      flex-direction: column;
    }

    .auth-overlay.open .auth-modal {
      transform: scale(1) translateY(0);
    }

    /* Full-screen on mobile */
    @media (max-width: 768px) {
      .auth-overlay {
        padding: 0;
      }
      .auth-modal {
        max-width: 100%;
        height: 100%;
        max-height: 100%;
        border-radius: 0;
        border: none;
      }
    }

    .auth-panel {
      display: none;
      opacity: 0;
      transform: translateY(15px);
      transition: opacity 0.3s ease, transform 0.3s ease;
      flex-direction: column;
      padding: 2.2rem 2rem;
      width: 100%;
      height: 100%;
      box-sizing: border-box;
      overflow-y: auto;
    }

    .auth-panel.active {
      display: flex;
      opacity: 1;
      transform: translateY(0);
    }

    /* Welcome Composition CSS */
    .auth-welcome-composition {
      position: relative;
      height: 180px;
      margin: 1rem auto 1.5rem;
      width: 100%;
      max-width: 320px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .auth-welcome-circle {
      position: absolute;
      width: 110px;
      height: 110px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(245, 176, 65, 0.2) 0%, rgba(230, 126, 34, 0.1) 70%, transparent 100%);
      animation: pulseGlow 3s infinite ease-in-out;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .auth-welcome-circle img {
      width: 70px;
      height: auto;
      filter: drop-shadow(0 8px 16px rgba(230, 126, 34, 0.15));
    }

    .auth-welcome-badge {
      position: absolute;
      background: white;
      box-shadow: 0 10px 25px rgba(230, 126, 34, 0.12);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1.5px solid rgba(230, 126, 34, 0.08);
      transition: all 0.3s ease;
    }

    .auth-welcome-badge i {
      font-size: 1.1rem;
      background: linear-gradient(135deg, #E67E22, #F5B041);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .badge-1 { width: 46px; height: 46px; top: 15px; left: 45px; animation: floatAnim1 4s infinite ease-in-out; }
    .badge-2 { width: 50px; height: 50px; top: 35px; right: 40px; animation: floatAnim2 4.5s infinite ease-in-out; }
    .badge-3 { width: 44px; height: 44px; bottom: 20px; left: 55px; animation: floatAnim3 3.8s infinite ease-in-out; }
    .badge-4 { width: 48px; height: 48px; bottom: 35px; right: 50px; animation: floatAnim4 4.2s infinite ease-in-out; }

    @keyframes pulseGlow {
      0%, 100% { transform: scale(1); opacity: 0.8; }
      50% { transform: scale(1.15); opacity: 1; }
    }

    @keyframes floatAnim1 {
      0%, 100% { transform: translateY(0) rotate(0deg); }
      50% { transform: translateY(-8px) rotate(5deg); }
    }
    @keyframes floatAnim2 {
      0%, 100% { transform: translateY(0) rotate(0deg); }
      50% { transform: translateY(8px) rotate(-7deg); }
    }
    @keyframes floatAnim3 {
      0%, 100% { transform: translateY(0) rotate(0deg); }
      50% { transform: translateY(-6px) rotate(-5deg); }
    }
    @keyframes floatAnim4 {
      0%, 100% { transform: translateY(0) rotate(0deg); }
      50% { transform: translateY(7px) rotate(6deg); }
    }

    /* Screen Headers */
    .auth-header {
      text-align: center;
      margin-bottom: 1.8rem;
      position: relative;
    }

    .auth-header h2 {
      font-size: 1.8rem;
      font-weight: 700;
      color: #2C1A10;
      margin-bottom: 0.5rem;
      line-height: 1.25;
      font-family: 'Outfit', sans-serif;
    }

    .auth-header p {
      font-size: 0.9rem;
      color: #8A6250;
      line-height: 1.5;
    }

    .auth-header.welcome-header h2 {
      font-size: 1.9rem;
      background: linear-gradient(135deg, #2C1A10 40%, #E67E22);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      margin-top: 0.5rem;
    }

    /* Form Styles */
    .auth-form-body {
      display: flex;
      flex-direction: column;
      gap: 1.1rem;
    }

    .auth-input-group {
      display: flex;
      flex-direction: column;
      gap: 5px;
    }

    .auth-input-group label {
      font-size: 0.8rem;
      font-weight: 700;
      color: #2C1A10;
      letter-spacing: 0.3px;
    }

    .auth-input-wrap {
      position: relative;
      display: flex;
      align-items: center;
    }

    .auth-input-wrap i.field-icon {
      position: absolute;
      left: 15px;
      color: #8A6250;
      font-size: 0.95rem;
      pointer-events: none;
    }

    .auth-input {
      width: 100%;
      padding: 12.5px 14px 12.5px 44px;
      padding-left: 44px !important;
      border: 2px solid rgba(230, 126, 34, 0.12);
      border-radius: 12px;
      font-family: 'Outfit', sans-serif;
      font-size: 0.9rem;
      color: #2C1A10;
      background: #FFF8F0;
      outline: none;
      transition: all 0.3s ease;
    }

    .auth-input::placeholder {
      color: #b5988b;
    }

    .auth-input:focus {
      border-color: #E67E22;
      background: white;
      box-shadow: 0 0 0 4px rgba(230, 126, 34, 0.08);
    }

    /* Validation Errors */
    .auth-input.input-error {
      border-color: #dc2626;
      background: #fff5f5;
    }
    .auth-input.input-error:focus {
      box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.08);
    }

    /* Password visibility toggle button */
    .auth-password-toggle {
      position: absolute;
      right: 14px;
      background: none;
      border: none;
      color: #8A6250;
      font-size: 0.95rem;
      cursor: pointer;
      padding: 4px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: color 0.2s ease;
    }

    .auth-password-toggle:hover {
      color: #E67E22;
    }

    /* Checkboxes & Links Row */
    .auth-options-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: 0.25rem;
    }

    .auth-checkbox-label {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.8rem;
      color: #8A6250;
      cursor: pointer;
      user-select: none;
      font-weight: 500;
    }

    .auth-checkbox-label input[type="checkbox"] {
      width: 16px;
      height: 16px;
      accent-color: #E67E22;
      cursor: pointer;
      border-radius: 4px;
    }

    /* Buttons */
    .btn-auth-primary {
      width: 100%;
      padding: 14px;
      border: none;
      border-radius: 50px;
      font-family: 'Outfit', sans-serif;
      font-size: 0.95rem;
      font-weight: 700;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
      background: linear-gradient(135deg, #E67E22, #F5B041);
      color: white;
      box-shadow: 0 4px 15px rgba(230, 126, 34, 0.25);
    }

    .btn-auth-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(230, 126, 34, 0.35);
    }

    .btn-auth-primary:active {
      transform: translateY(0);
    }

    .btn-auth-google {
      width: 100%;
      padding: 13.5px;
      border: 1.5px solid #dadce0;
      border-radius: 50px;
      font-family: 'Outfit', sans-serif;
      font-size: 0.9rem;
      font-weight: 600;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      background: white;
      color: #3c4043;
      transition: all 0.25s ease;
      box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    }

    .btn-auth-google:hover {
      background: #fdfaf7;
      border-color: rgba(230, 126, 34, 0.25);
      box-shadow: 0 4px 12px rgba(230, 126, 34, 0.08);
      transform: translateY(-1px);
    }

    .btn-auth-google img {
      width: 18px;
      height: 18px;
    }

    .auth-footer-link {
      text-align: center;
      margin-top: 1.25rem;
      font-size: 0.85rem;
      color: #8A6250;
    }

    .auth-footer-link a {
      color: #E67E22;
      text-decoration: none;
      font-weight: 700;
      transition: opacity 0.2s ease;
    }

    .auth-footer-link a:hover {
      opacity: 0.85;
      text-decoration: underline;
    }

    /* Dividers */
    .auth-divider {
      display: flex;
      align-items: center;
      gap: 12px;
      margin: 1.25rem 0;
    }

    .auth-divider hr {
      flex: 1;
      border: none;
      border-top: 1.5px dashed rgba(230, 126, 34, 0.15);
    }

    .auth-divider span {
      font-size: 0.75rem;
      color: #b5988b;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    /* Back & Close navigation control buttons */
    .auth-nav-controls {
      position: absolute;
      top: 18px;
      left: 18px;
      right: 18px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      z-index: 10;
      pointer-events: none;
    }

    .auth-back-btn, .auth-close-btn {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: white;
      border: 1px solid rgba(230, 126, 34, 0.08);
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      color: #8A6250;
      font-size: 0.95rem;
      transition: all 0.25s ease;
      pointer-events: auto;
    }

    .auth-back-btn:hover, .auth-close-btn:hover {
      color: #E67E22;
      border-color: rgba(230, 126, 34, 0.2);
      transform: scale(1.05);
    }

    /* Legal Footer */
    .auth-legal-footer {
      text-align: center;
      margin-top: 1.6rem;
      font-size: 0.72rem;
      color: #b5988b;
      line-height: 1.5;
    }

    .auth-legal-footer a {
      color: #8A6250;
      text-decoration: underline;
      font-weight: 500;
    }

    .auth-legal-footer a:hover {
      color: #E67E22;
    }

    /* Success Panel Custom Classes */
    .auth-success-circle {
      width: 86px;
      height: 86px;
      border-radius: 50%;
      background: rgba(34, 197, 94, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 1.5rem auto 1.5rem;
      border: 2px solid rgba(34, 197, 94, 0.25);
      animation: successPulse 2s infinite ease-in-out;
    }

    .auth-success-circle i {
      font-size: 2.2rem;
      color: #22c55e;
    }

    @keyframes successPulse {
      0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.2); }
      50% { transform: scale(1.06); box-shadow: 0 0 0 10px rgba(34, 197, 94, 0); }
    }

    /* Common errors/success display inside modal panels */
    .auth-panel-alert {
      background: rgba(239, 68, 68, 0.06);
      border: 1.5px solid rgba(239, 68, 68, 0.18);
      border-radius: 12px;
      padding: 10px 14px;
      font-size: 0.78rem;
      color: #dc2626;
      margin-bottom: 1.1rem;
      display: none;
      align-items: flex-start;
      gap: 8px;
      line-height: 1.4;
    }

    .auth-panel-alert.show {
      display: flex;
    }

    .auth-panel-alert i {
      margin-top: 2px;
      flex-shrink: 0;
    }

    .auth-panel-alert.alert-success {
      background: rgba(34, 197, 94, 0.06);
      border-color: rgba(34, 197, 94, 0.18);
      color: #16a34a;
    }

    .seller-portal-strip {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      margin: 0 0 12px;
    }

    .seller-portal-link {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      text-decoration: none;
      border: 1.5px solid rgba(181, 69, 27, .26);
      border-radius: 12px;
      padding: 10px 12px;
      font-size: .78rem;
      font-weight: 700;
      color: var(--saffron-deep);
      background: #fff8f1;
      transition: all .2s;
    }

    .seller-portal-link:hover {
      transform: translateY(-1px);
      border-color: var(--saffron);
      box-shadow: 0 8px 20px rgba(181, 69, 27, .14);
    }

    .profile-overlay {
      position: fixed;
      inset: 0;
      background: rgba(28, 15, 8, .65);
      backdrop-filter: blur(4px);
      z-index: 2500;
      opacity: 0;
      visibility: hidden;
      transition: all .3s
    }

    .profile-overlay.open {
      opacity: 1;
      visibility: visible
    }

    .profile-drawer {
      position: fixed;
      top: 0;
      right: -420px;
      width: min(400px, 100vw);
      height: 100dvh;
      background: var(--ivory);
      z-index: 2501;
      display: flex;
      flex-direction: column;
      transition: right .4s cubic-bezier(.22, 1, .36, 1);
      box-shadow: -10px 0 60px rgba(0, 0, 0, .15);
      overflow-y: auto
    }

    .profile-drawer.open {
      right: 0
    }

    .profile-head {
      background: linear-gradient(135deg, var(--saffron-deep), var(--dark));
      padding: 0;
      flex-shrink: 0;
      position: relative;
      overflow: hidden
    }

    .profile-head::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 80% 20%, rgba(212, 168, 67, .2) 0%, transparent 60%)
    }

    .profile-head-inner {
      padding: 1.4rem 1.5rem;
      position: relative;
      z-index: 1;
      display: flex;
      align-items: flex-start;
      justify-content: space-between
    }

    .profile-avatar {
      width: 56px;
      height: 56px;
      border-radius: 16px;
      background: linear-gradient(135deg, var(--saffron), var(--gold));
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.6rem;
      font-weight: 700;
      color: white;
      box-shadow: 0 4px 16px rgba(0, 0, 0, .3);
      margin-bottom: .8rem
    }

    .profile-user-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.4rem;
      font-weight: 700;
      color: white;
      line-height: 1.1;
      margin-bottom: 3px
    }

    .profile-user-email {
      font-size: .78rem;
      color: rgba(255, 255, 255, .6)
    }

    .profile-member-badge {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      background: rgba(212, 168, 67, .2);
      border: 1px solid rgba(212, 168, 67, .35);
      padding: 3px 10px;
      border-radius: 50px;
      font-size: .65rem;
      color: var(--gold-light);
      font-weight: 700;
      letter-spacing: 1px;
      margin-top: .5rem
    }

    .profile-close-btn {
      background: rgba(255, 255, 255, .12);
      border: none;
      color: white;
      width: 34px;
      height: 34px;
      border-radius: 9px;
      cursor: pointer;
      font-size: 1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background .2s;
      flex-shrink: 0
    }

    .profile-close-btn:hover {
      background: rgba(255, 255, 255, .25)
    }

    .profile-section-title {
      font-size: .7rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      font-weight: 700;
      color: var(--saffron);
      padding: 1.2rem 1.5rem .6rem;
      border-bottom: 1px solid rgba(232, 96, 44, .1);
      display: flex;
      align-items: center;
      gap: 8px
    }

    .order-list {
      padding: .5rem
    }

    .order-card {
      background: white;
      border-radius: 14px;
      padding: 1rem 1.1rem;
      margin-bottom: .8rem;
      border: 1.5px solid rgba(232, 96, 44, .08);
      box-shadow: 0 2px 10px rgba(0, 0, 0, .04);
      transition: all .3s
    }

    .order-card:hover {
      border-color: rgba(232, 96, 44, .2);
      box-shadow: 0 6px 20px var(--shadow)
    }

    .order-card-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: .6rem
    }

    .order-id {
      font-size: .68rem;
      font-family: monospace;
      color: var(--muted)
    }

    .order-status {
      padding: 3px 9px;
      border-radius: 50px;
      font-size: .65rem;
      font-weight: 700;
      letter-spacing: .5px;
      text-transform: uppercase
    }

    .status-pending {
      background: rgba(234, 179, 8, .1);
      color: #a16207;
      border: 1px solid rgba(234, 179, 8, .25)
    }

    .status-confirmed {
      background: rgba(34, 197, 94, .1);
      color: #15803d;
      border: 1px solid rgba(34, 197, 94, .25)
    }

    .status-out_for_delivery {
      background: rgba(249, 115, 22, .1);
      color: #c2410c;
      border: 1px solid rgba(249, 115, 22, .25)
    }

    .status-out_of_delivery {
      background: rgba(239, 68, 68, .1);
      color: #b91c1c;
      border: 1px solid rgba(239, 68, 68, .25)
    }

    .status-delivered {
      background: rgba(59, 130, 246, .1);
      color: #1d4ed8;
      border: 1px solid rgba(59, 130, 246, .25)
    }

    .status-paid {
      background: rgba(34, 197, 94, .1);
      color: #15803d;
      border: 1px solid rgba(34, 197, 94, .25)
    }

    .order-items-preview {
      font-size: .8rem;
      color: var(--text);
      line-height: 1.5;
      margin-bottom: .5rem
    }

    .order-items-preview span {
      color: var(--muted)
    }

    .order-card-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: .5rem;
      border-top: 1px solid rgba(232, 96, 44, .07)
    }

    .order-total-label {
      font-size: .78rem;
      color: var(--muted)
    }

    .order-total-amount {
      font-size: 1rem;
      font-weight: 700;
      color: var(--saffron-deep)
    }

    .order-date {
      font-size: .7rem;
      color: var(--muted)
    }

    .order-payment-badge {
      font-size: .65rem;
      color: var(--muted);
      display: flex;
      align-items: center;
      gap: 4px
    }

    .order-empty {
      text-align: center;
      padding: 2.5rem 1rem;
      color: var(--muted)
    }

    .order-empty i {
      font-size: 2.5rem;
      color: rgba(232, 96, 44, .15);
      display: block;
      margin-bottom: .8rem
    }

    .order-empty p {
      font-size: .85rem
    }

    .orders-loading {
      text-align: center;
      padding: 2rem;
      color: var(--muted);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      font-size: .85rem
    }

    .profile-logout-btn {
      margin: 1rem 1.5rem 1.5rem;
      width: calc(100% - 3rem);
      padding: 12px;
      background: rgba(239, 68, 68, .08);
      border: 1.5px solid rgba(239, 68, 68, .2);
      border-radius: 50px;
      color: #dc2626;
      font-family: 'Outfit', sans-serif;
      font-size: .88rem;
      font-weight: 700;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      transition: all .3s
    }

    .profile-logout-btn:hover {
      background: rgba(239, 68, 68, .15);
      border-color: rgba(239, 68, 68, .4)
    }

    /* Search dropdown scrollbar */
    #searchDropdown::-webkit-scrollbar {
      width: 4px
    }

    #searchDropdown::-webkit-scrollbar-thumb {
      background: rgba(232, 96, 44, .2);
      border-radius: 2px
    }

    #mobSearchDropdown::-webkit-scrollbar {
      width: 4px
    }

    #mobSearchDropdown::-webkit-scrollbar-thumb {
      background: rgba(232, 96, 44, .2);
      border-radius: 2px
    }

    @media(max-width:1080px) {
      .contact-strip-inner {
        grid-template-columns: 1fr
      }

      .contact-map-side {
        min-height: 280px
      }

      .contact-map-side::after {
        display: none
      }

      .trending-section {
        position: relative;
      }

      .trending-slider-controls {
        position: absolute;
        top: 8px;
        right: 8px;
        z-index: 3;
      }

      .trending-products::-webkit-scrollbar {
        height: 0
      }

      .contact-form-area {
        grid-template-columns: 1fr;
        gap: 2.5rem
      }
    }

    @media(max-width:960px) {
      .hamburger {
        display: flex
      }

      .logo-tagline {
        display: none
      }

      .nav-links,
      .nav-actions .search-bar {
        display: none !important
      }

      .location-pill {
        font-size: .68rem;
        padding: 6px 10px
      }

      .header-search-row {
        padding: 0 4% .7rem
      }

      .header-search-row .search-bar input {
        font-size: .8rem
      }

      .header-search-row .search-bar {
        display: flex !important
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem
      }

      .mob-cta,
      .mob-front-search-wrap {
        display: none !important
      }

      body {
        padding-bottom: 74px
      }

      .toast {
        bottom: 88px
      }

      .cat-grid {
        gap: .72rem;
        padding-bottom: .5rem
      }

      .cat-card {
        min-width: 110px;
        max-width: 110px
      }

      .bottom-nav {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        background: rgba(253, 246, 238, .98);
        border-top: 1px solid rgba(232, 96, 44, .15);
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        backdrop-filter: blur(10px)
      }

      .bottom-link {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        min-height: 62px;
        color: var(--muted);
        font-size: .68rem;
        font-weight: 600;
        position: relative;
        cursor: pointer
      }

      .bottom-link i {
        font-size: 1rem;
        color: var(--saffron)
      }

      .bottom-link.active {
        color: var(--saffron-deep)
      }

      .bottom-link.active::after {
        content: '';
        position: absolute;
        top: 0;
        left: 24%;
        right: 24%;
        height: 2px;
        border-radius: 2px;
        background: var(--saffron)
      }

      .bottom-cart-count {
        position: absolute;
        top: 8px;
        right: 22%;
        min-width: 16px;
        height: 16px;
        padding: 0 4px;
        border-radius: 999px;
        background: var(--rose);
        color: #fff;
        font-size: .62rem;
        font-weight: 700;
        display: flex;
        align-items: center;
        justify-content: center
      }

      .parlour-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem
      }

      .parlour-image-side {
        max-width: 420px;
        margin: 0 auto
      }

      .admin-nav-btn span {
        display: none
      }

      .admin-nav-btn {
        padding: 8px 10px;
        border-radius: 12px
      }

      .user-nav-btn .user-name-short {
        display: none
      }
    }

    @media(max-width:640px) {
      nav {
        padding: .7rem 4%
      }

      .section-wrap,
      .contact-form-area {
        padding: 46px 4%
      }

      .sec-header {
        margin-bottom: 2rem
      }

      .hero {
        min-height: 66vh;
        margin-top: 68px
      }

      .hero-content {
        padding: 2rem 4%
      }

      .hero-badge {
        margin-bottom: 1rem
      }

      .hero h1 {
        font-size: clamp(2rem, 8.2vw, 2.8rem);
        margin-bottom: .9rem
      }

      .hero-desc {
        font-size: .9rem;
        margin-bottom: 1.2rem;
        line-height: 1.55
      }

      .hero-btns {
        gap: .55rem
      }

      .hero-btns .btn-primary,
      .hero-btns .btn-gold {
        padding: 10px 16px;
        font-size: .78rem
      }

      .hero-stats {
        display: none
      }

      /* show marquee and recommended on mobile */
      .marquee-bar,
      #history {
        display: block !important;
      }

      .filter-sort-row {
        gap: .6rem;
        margin-bottom: 1rem;
        flex-direction: column;
        align-items: stretch
      }

      .res-count {
        margin-right: 0
      }

      .sort-sel {
        width: 100%
      }

      .cat-card {
        min-width: 102px;
        max-width: 102px;
        padding: .75rem .48rem .65rem
      }

      .cat-icon {
        width: 50px;
        height: 50px;
        border-radius: 14px
      }

      .cat-count {
        display: none
      }

      .prod-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: .75rem
      }

      .prod-img {
        height: 156px
      }

      .prod-img-overlay {
        opacity: 1;
        justify-content: flex-end;
        align-items: flex-end;
        padding: 10px;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0) 48%, rgba(0, 0, 0, .45) 100%);
      }

      .prod-img-overlay button {
        padding: 8px 14px;
      }

      .prod-body {
        padding: .8rem
      }

      .prod-name {
        font-size: 1rem
      }

      .prod-desc {
        margin-bottom: .65rem;
        font-size: .74rem
      }

      .prod-meta-row {
        margin-bottom: .35rem
      }

      .prod-rating {
        font-size: .64rem
      }

      .prod-delivery-chip {
        font-size: .61rem;
        padding: 2px 7px
      }

      .footer-grid {
        grid-template-columns: 1fr
      }

      .form-row {
        grid-template-columns: 1fr
      }

      .contact-info-strip {
        padding: 2rem 1.5rem
      }

      .pay-methods {
        grid-template-columns: 1fr
      }

      .pay-input-row {
        grid-template-columns: 1fr
      }
    }

    ::-webkit-scrollbar {
      width: 6px
    }

    ::-webkit-scrollbar-track {
      background: var(--cream)
    }

    ::-webkit-scrollbar-thumb {
      background: rgba(232, 96, 44, .2);
      border-radius: 3px
    }

    ::-webkit-scrollbar-thumb:hover {
      background: var(--saffron)
    }

    /* ══ MOBILE TOUCH SUPPORT ══ */
    button,
    [role="button"],
    .btn,
    a,
    input[type="button"],
    input[type="submit"] {
      touch-action: manipulation;
      -webkit-user-select: none;
      user-select: none;
      -webkit-tap-highlight-color: transparent;
    }

    button:active,
    [role="button"].active,
    .btn.active {
      opacity: 0.85;
      transform: scale(0.98);
    }

    input[type="text"],
    input[type="email"],
    input[type="password"],
    input[type="tel"],
    input[type="search"],
    textarea,
    select {
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
      border-radius: 8px;
      font-size: 16px;
    }

    input[type="text"]:focus,
    input[type="email"]:focus,
    input[type="password"]:focus,
    input[type="tel"]:focus,
    input[type="search"]:focus,
    textarea:focus {
      outline: none;
      border-color: var(--saffron) !important;
      box-shadow: 0 0 0 3px rgba(232, 96, 44, 0.1) !important;
    }

    @media (max-width: 768px) {

      button,
      [role="button"],
      .btn,
      .card,
      .cat-card {
        min-height: 44px;
        min-width: 44px;
      }

      input[type="text"],
      input[type="email"],
      input[type="password"],
      input[type="tel"],
      input[type="search"],
      textarea {
        min-height: 44px;
        padding: 10px 12px !important;
      }
    }

    /* Additional mobile optimizations */
    @media (max-width: 900px) {

      html,
      body {
        -webkit-text-size-adjust: 100%;
      }

      body {
        overflow-x: hidden;
      }

      img {
        max-width: 100%;
        height: auto;
        display: block;
      }

      .header-search-row {
        padding: 8px 4%;
      }

      .header-search-row .search-bar {
        max-width: 100%;
      }

      .header-search-row .search-bar input {
        width: 100%;
        font-size: 16px;
      }

      .trending-product-card {
        min-width: 190px;
        max-width: 220px;
      }

      .trending-img {
        height: 150px;
      }

      .cat-card {
        min-width: 100px;
        max-width: 110px;
      }

      .banner-slide {
        background-size: cover;
        background-position: center;
      }

      .reveal {
        transition-duration: .55s;
      }

      .animate-in {
        transition-duration: .5s;
      }
    }
