:root {
    --panel: #101722;
    --panel-2: #0f1620;
    --muted: #9aa4b2;
    --text: #e7edf5;
    --chip: #141c28;
    --chip-border: rgba(255,255,255,.06);
    --accent: #d4af37;
    --gold: #d1ad3a;
    --shadow: 0 10px 30px rgba(0,0,0,.35);
    --radius: 16px;
}

* {
    box-sizing: border-box
}

.blacktheme {
    background-color: #0f1115;
}

body {
    margin: 0;
    font-family: "Noto Sans", sans-serif;
    font-weight: 400;
    font-style: normal;
    background: radial-gradient(1200px 600px at 15% 0%, #0f1826 0%, var(--bg) 55%);
    color: var(--text);
}

.app {
    max-width: 100%;
    margin: 0;
    padding: 0 0 60px 0;
    position: relative;
    display: block;
}

.topbar {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin: 0;
    padding: 15px 0;
}

.headline {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.delivery.d-d {
    color: #2cb461;
    font-weight: 500;
    font-size: 16px;
    text-align: center;
    margin-bottom: 20px;
    margin-top: 20px;
    display: block;
}

.delivery {
    font-size: 14px;
    color: #d2d2d3;
    letter-spacing: .2px;
    margin-bottom: 5px;
    font-weight: 400;
}

.delivery b {
    color: #2cb461;
    font-weight: 400;
}

.brand {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.05;
    color: #FFF;
}

.search {
    position: relative;
    margin: 5px 0 14px;
}

.search input {
    width: 100%;
    border: 0;
    background: #181b22;
    color: #FFF;
    padding: 6px 5px 0px 23px;;
    border-radius: 5px;
    outline: none;
    font-size: 14px;
    font-weight: 400;
}

.search input::placeholder {
    color: rgba(231,237,245,.55);
}

.search svg {
    position: absolute;
    left: 14px;
    top: 34%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    opacity: .75;
}

.categories {
    display: grid;
    grid-template-columns: repeat(5, minmax(84px, 1fr));
    gap: 10px;
    margin: 10px 0 10px;
}

.cat {
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: transform .12s ease, border-color .12s ease;
    min-height: 92px;
    border: 0px;
    padding: 0;
    text-decoration: none;
    text-align: center;
    white-space: nowrap;
}

.cat:hover {
    transform: translateY(-2px);
    border-color: rgba(255,255,255,.14);
}

.cat .icon img {
    width: 35px;
    height: 35px;
}

.cat .icon {
    width: 100%;
    height: 40px;
    display: grid;
    place-items: center;
    background: #181b22;
    border-radius: 10px;
}
@media(max-width:767px){
    .cat .icon img {
    width: 25px;
    height: 25px;
}

.cat .icon {
    width: 100%;
    height: 30px;
    display: grid;
    place-items: center;
    background: #181b22;
    border-radius: 10px;
}
}
.cat .label {
    font-size: 13px;
    color: #FFF;
}

.grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.card {
    background: #151924;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    min-height: unset;
    margin-bottom: 25px;
}

.thumb {
    aspect-ratio: 16 / 10;
    background: #0a0f16;
    position: relative;
    overflow: hidden;
}

.thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.02);
}

.card-body {
    padding: 12px 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.title a{
    font-weight: 400;
    line-height: 24px;
    font-size: 16px;
    color: #FFF;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 50px;
    text-decoration:none;
}

.bottom {
    margin-top: auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}

.price {
    font-weight: 600;
    letter-spacing: .2px;
    color: #FFF;
}

.search {
    position: relative;
}

.bedsdiv {
    display: block;
    width: 100%;
    margin-bottom: 15px;
}

.bedsdiv h3 {
    font-size: 20px;
    color: #FFF;
    margin: 0 0 15px 0;
    display: block;
    font-weight: 500;
    clear: both;
}

.categorypage {
    display: block;
    width: 100%;
    position: relative;
    padding: 20px 0;
}

.searchdiv {
    position: relative;
    display: block;
    width: 100%;
}

.search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: #E7EDF5;
}

.btn {
    border: none;
    background: #d4af37;
    color: #0f1115;
    font-weight: 700;
    padding: 10px 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: filter .12s ease, transform .12s ease;
    min-width: 86px;
}

.btn:hover {
    background: #FFF;
    color: #d4af37;
}

.hero {
    border-radius: 8px;
    overflow: hidden;
    border: 0;
    box-shadow: none;
    background: #070a10;
}

.hero img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
}

.name {
    margin: 0 0 15px 0;
    font-size: 30px;
    font-weight: 600;
    line-height: 46px;
    color: #FFF;
    display: block;
}

.price_details {
    font-size: 26px;
    font-weight: 600;
    color: #effd70;
    margin: 0 0 15px 0;
    display: block;
}

.delivery {
}

.delivery b {
    color: var(--accent);
}

.specs {
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 8px 14px;
    background: #181c21;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 28px rgba(0,0,0,.3);
    margin-bottom: 30px;
}

.spec-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 18px;
}

.spec .k {
    font-size: 14px;
    color: #a6a8b1;
    margin-bottom: 4px;
}

.spec .v {
    font-size: 16px;
    font-weight: 600;
    color: #d2d2d3;
}

.section-title {
    margin: 0 0 10px 0;
    font-size: 24px;
    font-weight: 600;
    color: #FFF;
}

.details p {
    color: #FFF;
    line-height: 26px;
    font-size: 14px;
    margin-bottom: 20px;
    font-weight: 300;
}

.cta {
    display: flex;
    justify-content: center;
}

.btndetails {
    letter-spacing: 0.5px;
    width: 100%;
    border: none;
    background: var(--gold);
    color: #0f1115;
    font-weight: 700;
    text-align: center;
    font-size: clamp(20px, 5vw, 44px);
    padding: 10px 18px;
    text-decoration: none;
    border-radius: 10px;
    box-shadow: 0 16px 40px rgba(0,0,0,.45);
    cursor: pointer;
    transition: transform .12s ease, filter .12s ease;
    font-size: 28px;
}

.btndetails:hover {
    transform: translateY(-1px);
    filter: brightness(1.05);
}

.btndetails:active {
    transform: translateY(0px);
}

.page-title {
    font-size: clamp(22px, 4.6vw, 42px);
    font-weight: 500;
    letter-spacing: .2px;
    margin: 8px 0 16px;
    color: rgba(233,239,247,.95);
}

.detailspage {
    display: block;
    width: 100%;
    position: relative;
    padding: 20px 0px;
}

.titlemain {
    display: block;
}

.titlemain h1 {
    margin: 0 0 15px 0;
    font-size: 30px;
    font-weight: 400;
    line-height: 46px;
    color: #FFF;
    display: block;
}

.delivery.details_d {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 20px;
    display: block;
}

.container.conthalf {
    max-width: 720px;
    margin: auto;
    padding: 16px;
}

.success {
    color: #2cb461;
    font-size: 16px;
    margin-bottom: 16px;
}

h1.cartspage {
    font-size: 20px;
    margin-bottom: 15px;
    color: #FFF;
    display: block;
}

.card_cart {
    background: #181c21;
    border: 1px solid #ccc;
    border-radius: 16px;
    padding: 8px;
    margin-bottom: 16px;
}

.item.card_cart {
    display: flex;
    gap: 0px;
}

.item.card_cart img {
    width: 200px;
    height: 140px;
    border-radius: 10px;
    object-fit: cover;
    margin-right: 20px;
}

.card_cart .item-title {
    font-size: 15px;
    font-weight: 500;
    color: #FFF;
    margin-bottom: 6px;
}

.card_cart .item-meta {
    font-size: 13px;
    color: #9aa4b2;
    font-weight: 600;
    margin-bottom: 6px;
}

.card_cart .price {
    font-size: 20px;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 10px;
}

.address-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 10px;
}

input, textarea {
    width: 100%;
    background: #0f1320;
    border: 1px solid #22283a;
    color: #FFF;
    padding: 10px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 15px;
}

textarea {
    resize: none;
}

.address-text {
    font-size: 14px;
    color: #FFF;
    line-height: 1.5;
    margin-bottom: 20px;
    font-weight: 400;
}

.btn-outline {
    background: none;
    border: 1px solid #FFF;
    color: #FFF;
    padding: 4px 14px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    margin-bottom: 15px;
    font-weight: 300;
}

.cta-cart {
    width: 100%;
    background: var(--gold);
    border: none;
    border-radius: 14px;
    padding: 8px 16px;
    font-size: 30px;
    font-weight: 700;
    cursor: pointer;
    color: #FFF;
    text-decoration: none;
    display: block;
    margin-top: 25px;
    text-align: center;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: #0f1115;
}

.hidden {
    display: none;
}

.address-text strong {
    display: block;
    margin-bottom: 10px;
}

.charge_fr.total {
    font-size: 16px;
    color: #FFF;
}

.charge_fr {
    display: flex;
    justify-content: space-between;
    font-size: 15px;
    margin-bottom: 8px;
    color: #9aa4b2;
    font-weight: 600;
}

.qty {
    display: flex;
    align-items: center;
    justify-content: left;
    gap: clamp(15px, 1vw, 20px);
    padding: 10px 0;
}

.qty-btn {
    width: 30px;
    height: 30px;
    border-radius: 4px;
    border: 1px solid #ccc;
    background: rgba(16,23,34,.55);
    color: #FFF;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    display: grid;
    place-items: center;
    cursor: pointer;
    user-select: none;
    transition: transform .12s ease, background .12s ease, opacity .12s ease;
}

.qty-btn:hover {
    transform: translateY(-1px);
    background: rgba(16,23,34,.7);
}

.qty-btn:active {
    transform: translateY(0px);
}

.qty-num {
    min-width: 15px;
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    color: rgba(255,255,255,.92);
    letter-spacing: 0;
}

.qty-btn[disabled] {
    opacity: .45;
    cursor: not-allowed;
    transform: none;
}

.tabs {
    display: flex;
    background: var(--card);
    border-radius: 14px;
    border: 1px solid var(--border);
    overflow: hidden;
    margin-bottom: 16px;
}

.tab {
    flex: 1;
    text-align: center;
    padding: 12px;
    font-size: 15px;
    cursor: pointer;
    color: var(--muted);
    background: #151924;
}

.tab.active {
    background: var(--gold);
    color: #000;
    font-weight: 600;
}

.order-card {
    background: #151924;
    border: 1px solid #22283a;
    border-radius: 16px;
    padding: 14px;
    margin-bottom: 14px;
}

.order-id {
    font-size: 13px;
    color: var(--muted);
    font-weight: 400;
    margin-bottom: 6px;
}

.order-item {
    font-size: 14px;
    font-weight: 500;
    margin: 0 0 6px 0;
}

.order-status {
    font-size: 14px;
    color: #2cb461;
    margin-bottom: 6px;
}

.order-status.delivered {
    color: #9aa0b2;
}

.order-price {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
}

.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #0f1320;
    border-top: 1px solid #22283a;
    display: flex;
    justify-content: space-around;
    padding: 8px 0;
    z-index: 100;
}

.footer-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 11px;
    color: #9aa0b2;
    cursor: pointer;
    text-decoration: none;
}

.footer-item span {
    font-size: 18px;
    margin-bottom: 2px;
}
.footer-item svg { margin-bottom:2px; }
.footer-item.active, .footer-item.active svg {
    color: #d4af37;
}

.logo {

  text-align:center;

  font-size:22px;

  font-weight:700;

  margin-bottom:6px;
  color: #FFF;

}
.label {

font-size:14px;

color:var(--muted);

margin-bottom: 10px;
}
.btn.secondary {

  background:none;

  border:1px solid #22283a;

  color:#FFF;

  margin-top:10px;

}

 

/* OTP */

.otp-row {

  display:flex;

  gap:10px;

}

 

.otp-row input {

  text-align:center;

  font-size:18px;

}
.pd24{ padding:24px; }
.max420{padding: 16px; margin: auto;    width: 100%;
    max-width: 420px;}
.centerdiv {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}
 

/* Helper */

.helper a.terms{ color:var(--muted);}
.helper {

  text-align:center;

  font-size:13px;

  color:var(--muted);

  margin-top:14px;

}

 .w100{ width:100%; }
 
.btn.chat {
    background: none;
    border: 1px solid #22283a;
    color: #ffffff;
    font-weight: 500;
}
.customersu .call, .customersu .chat{margin-bottom:15px;font-weight: 600;}
.call, .chat{
    padding: 12px 10px !important;
}
.sub {

  text-align:center;

  font-size:14px;

  color:var(--muted);

  margin-bottom:20px;

}

.dot{position:relative;padding-left: 20px;font-weight: 500;font-size: 14px;margin-bottom: 15px;}
.dot:before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #4cd964;
    left: 0;
    top: 5px;
}.info {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
}
.customersu {
      background: #151924;
    border: 1px solid #22283a;
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 16px;
}
.padd16{ padding:16px; }
.contentpage .card p{
    font-size: 14px;
    color: #9aa0b2;
    line-height: 1.7;
    margin: 0;
    }
.contentpage h1{}
.contentpage h2{
    font-size: 18px;
    margin: 0 0 15px 0;
    font-weight: 500;
}
.contentpage p{
    font-size: 14px;
    color: #9aa0b2;
    line-height: 1.7;
}
.contentpage ul{
    padding-left: 18px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}
.contentpage ul li{
    font-size: 14px;
    color: #9aa0b2;
    line-height: 1.7;
}
.thankyou .card{
      width:100%;
      max-width:420px;
      background:rgba(16,23,34,.65);
      backdrop-filter: blur(12px);
      border-radius:var(--radius);
      padding:28px 22px 26px;
      text-align:center;
      box-shadow:var(--shadow);
      border:1px solid rgba(255,255,255,.08);
    }

    /* Success icon */
    .thankyou .icon-wrap{
      width:88px;
      height:88px;
      border-radius:50%;
      background:rgba(46,229,123,.15);
      display:grid;
      place-items:center;
      margin:0 auto 18px;
    }

    .thankyou .icon-wrap svg{
      width:42px;
      height:42px;
      stroke:var(--accent);
    }

   .thankyou h1{
      font-size: 30px;
      margin: 0 0 10px;
      font-weight:800;
      color: #FFF;
    }

    .thankyou .subtitle{
      color:var(--muted);
      font-size: 14px;
      line-height:1.5;
      margin-bottom:20px;
    }

    .thankyou .order-box{
      background:rgba(0,0,0,.25);
      border-radius:14px;
      padding:14px 16px;
      margin-bottom:22px;
      border:1px dashed rgba(255,255,255,.18);
    }

    .thankyou .order-box div{
      display:flex;
      justify-content:space-between;
      font-size:14px;
      margin:6px 0;
    }

    .thankyou .order-box span{
      color:var(--muted);
    }

    .thankyou .order-box strong{
      color:#fff;
    }

    .thankyou .actions{
      display:flex;
      flex-direction:column;
      gap:12px;
    }

    .thankyou .btn{
      border:none;
      border-radius:14px;
      padding:14px;
      font-size:16px;
      font-weight:800;
      cursor:pointer;
      transition: transform .12s ease, filter .12s ease;
    }

    .thankyou .btn-primary{
      background:var(--gold);
      color:#1a1402;
    }

    .thankyou .btn-secondary{
      background:transparent;
      color:#fff;
      border:1px solid rgba(255,255,255,.35);
    }

    .thankyou .btn:hover{ transform:translateY(-1px); }
    .thankyou .btn:active{ transform:translateY(0); }

    @media (max-width:420px){
      .thankyou .card{ padding:24px 18px; }
    }
/* Responsive tweaks */
@media (max-width: 820px) {
    .brand {
        font-size:26px;
    }

    .categories {
        grid-template-columns: repeat(5, minmax(70px, 1fr));
    }
}

@media (max-width: 767px) {
    .cta-cart {
        font-size:20px;
        padding: 10px 15px;
    }

    .item.card_cart img {
        width: 90px;
        height: 90px;
        margin-right: 10px;
    }

    .card_cart .item-title {
        font-size: 14px;
    }

    .qty {
        padding: 5px 0px;
    }

    .titlemain h1 {
        font-size: 18px;
        margin: 0 0 15px 0;
        line-height: 26px;
    }

    .spec-grid {
        gap: 14px 0px;
    }

    .price_details {
        font-size: 18px;
    }

    .delivery.details_d {
    }

    .spec .k {
        font-size: 12px;
        margin-bottom: 0;
    }

    .spec .v {
        font-size: 12px;
    }

    .section-title {
        font-size: 16px;
        margin-bottom: 5px;
    }

    .details p {
        font-size: 12px;
        line-height: 16px;
    }

    .btndetails {
        font-size: 24px;
        padding: 10px 10px;
    }

    .name {
        font-size: 18px;
        line-height: 24px;
    }

    .hero {
        margin-bottom: 20px;
    }

    .btn {
        padding: 6px 12px;
        min-width: 65px;
        font-size: 16px;
    }

    .price {
        font-size: 12px;
        font-weight: 500;
    }

    .thumb img {
        width: 100%;
        height: 120px;
        object-fit: cover;
        display: block;
        object-position: center;
    }

    .categories {
        gap: 6px;
    }

    .cat .label {
        font-size: 10px;
    }

    .title {
        font-size: 10px;
        line-height: 16px;
        min-height: 30px;
    }

    .card-body {
        padding: 10px 7px 10px;
    }

    .grid {
        gap: 8px;
    }

    .brand {
        font-size: 14px;
    }

    .categories {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }

    .grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        /* cards stack on small screens */
    }

    .card {
        min-height: unset;
    }
}
.input-style{
  width:100%;
     background: #0f1320;
    border: 1px solid #22283a;
  color:#fff;
  padding: 12px 14px;
  font-size:14px;
  border-radius:8px;
  outline:none;
  margin-bottom: 15px;
}

.input-style option{
  background:#000;
  color:#fff;
}
/*******************************  Category  ***************************/
/* Category section */
.category-section{
  padding:16px 16px 6px;
}

.category-title{
  font-size:16px;
  font-weight:600;
  margin-bottom:4px;
}

.category-sub{
  font-size:13px;
  color:var(--muted);
  margin-bottom:14px;
}

/* Scroll container */
.category-list{
  display:flex;
  gap:12px;
  overflow-x:auto;
  padding-bottom:6px;
}

.category-list::-webkit-scrollbar{
  display:none;
}

/* Category pill */
.category-item {
padding: 12px 20px;
background: var(--card);
border: 1px solid var(--border);
border-radius: 999px;
font-size: 14px;
white-space: nowrap;
cursor: pointer;
transition: all .2s ease;
flex-shrink: 0;
}

.category-item:hover{
  border-color:var(--accent);
}

.category-item.active{
  background:rgba(212,175,55,0.12);
  border-color:var(--accent);
  color:var(--accent);
}
@media (prefers-reduced-motion: reduce) {
    * {
        transition: none !important;
    }
}
