:root {
      --red:       #D0021B;
      --red-dark:  #A50015;
      --charcoal:  #1C1C1E;
      --steel:     #3A3A3C;
      --silver:    #8E8E93;
      --mist:      #F2F2F7;
      --white:     #FFFFFF;
      --border:    #E5E5EA;
      --radius:    16px;
      --shadow-sm: 0 2px 8px rgba(0,0,0,.06);
      --shadow-md: 0 8px 24px rgba(0,0,0,.10);
      --shadow-lg: 0 16px 48px rgba(0,0,0,.13);
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    body {
      font-family: "Lato", sans-serif;
      background: var(--mist);
      min-height: 100vh;
      color: var(--charcoal);
    }

.popup-overlay1{
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.6);
    justify-content:center;
    align-items:center;
    z-index:9999;
}

.popup-box1{
    /* width:90%;
    max-width:900px; */
           width: 50%;
    max-height:85vh;
    overflow-y:auto;
    background:#fff;
    border-radius:15px;
    padding:25px;
    position:relative;
    box-shadow:0 5px 25px rgba(0,0,0,.3);
}

.popup-close1{
      position: absolute;
    top: 15px;
    right: 9px;
    font-size: 16px;
    cursor: pointer;
    width: 30px;
    text-align: center;
    height: 30px;
    line-height: 30px;
    border-radius: 100%;
    background: #ddd;
    font-weight: bold;
	
}

#popupBody{
      display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
  .nav-logo img {
      width: 95px;
      margin-top: 8px;
  }
    /* ── TOP NAV ─────────────────────────────────────────────────────── */
    .topnav {
      background: var(--white);
      border-bottom: 1px solid var(--border);
      padding: 0 24px;
      height: 100px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      position: sticky;
      top: 0;
      z-index: 100;
      box-shadow: var(--shadow-sm);
    }

    .nav-left {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .nav-avatar {
      width: 40px; height: 40px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--charcoal), var(--steel));
      display: flex; align-items: center; justify-content: center;
      color: var(--white);
      font-weight: 700;
      font-size: 15px;
      flex-shrink: 0;
      border: 2px solid var(--border);
    }

    .nav-greeting {
      line-height: 1.2;
    }

    .nav-hello {
      font-size: 11px;
      color: var(--silver);
      font-weight: 400;
      text-transform: uppercase;
      letter-spacing: .8px;
    }

    .nav-name {
      font-family: 'Rajdhani', sans-serif;
      font-size: 17px;
      font-weight: 700;
      color: var(--charcoal);
    }

    .nav-right {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .nav-lang {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 13px;
      font-weight: 500;
      color: var(--steel);
      background: var(--mist);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 6px 10px;
      cursor: pointer;
      transition: background .2s;
    }
    .nav-lang:hover { background: var(--border); }
    .nav-lang svg { width:14px; height:14px; }

    .nav-logo {
      font-family: 'Rajdhani', sans-serif;
      font-size: 22px;
      font-weight: 700;
      color: var(--charcoal);
    }
    .nav-logo span { color: var(--red); }

    /* ── PAGE BODY ───────────────────────────────────────────────────── */
    .page {
    
      margin: 0 auto;
      padding: 24px 20px 80px;
    }

    /* ── BANNER ──────────────────────────────────────────────────────── */
    .banner-wrap {
      position: relative;
      border-radius: var(--radius);
      overflow: hidden;
      margin-bottom: 24px;
      box-shadow: var(--shadow-md);
      animation: fadeUp .5s ease both;
    }

    .banner-slider {
      display: flex;
      transition: transform .5s cubic-bezier(.22,1,.36,1);
    }

    .banner-slide {
      min-width: 100%;
      height: 200px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }

  

    .banner-content {
      text-align: center;
      color: var(--white);
      position: relative;
      z-index: 2;
      padding: 20px;
    }

    .banner-tag {
      display: inline-block;
      background: rgba(255,255,255,.18);
      border: 1px solid rgba(255,255,255,.28);
      backdrop-filter: blur(8px);
      border-radius: 100px;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: 4px 12px;
      margin-bottom: 10px;
    }

    .banner-title {
      font-family: 'Rajdhani', sans-serif;
      font-size: 28px;
      font-weight: 700;
      line-height: 1.1;
      margin-bottom: 6px;
    }

    .banner-sub {
      font-size: 13px;
      opacity: .8;
    }

    /* Gear decoration */
    .banner-gear {
      position: absolute;
      right: -30px; top: -30px;
      width: 160px; height: 160px;
      border-radius: 50%;
      border: 30px solid rgba(255,255,255,.06);
      pointer-events: none;
    }
    .banner-gear2 {
      position: absolute;
      left: -20px; bottom: -40px;
      width: 120px; height: 120px;
      border-radius: 50%;
      border: 20px solid rgba(255,255,255,.05);
      pointer-events: none;
    }

    /* Dots */
    .banner-dots {
      position: absolute;
      bottom: 12px; left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 6px;
      z-index: 3;
    }

    .dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: rgba(255,255,255,.4);
      cursor: pointer;
      transition: all .3s;
    }
    .dot.active {
      width: 20px;
      border-radius: 3px;
      background: var(--white);
    }

    /* ── SECTION TITLE ───────────────────────────────────────────────── */
    .section-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 14px;
      margin-top: 28px;
      animation: fadeUp .5s .1s ease both;
    }

    .section-title {
      font-family: 'Rajdhani', sans-serif;
      font-size: 18px;
      font-weight: 700;
      color: var(--charcoal);
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .section-title::before {
      content: '';
      display: inline-block;
      width: 4px; height: 18px;
      background: var(--red);
      border-radius: 2px;
    }

    .section-see-all {
      font-size: 13px;
      color: var(--red);
      font-weight: 600;
      cursor: pointer;
      text-decoration: none;
    }

    /* ── MENU GRID ───────────────────────────────────────────────────── */
    .menu-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
      gap: 14px;
      animation: fadeUp .5s .15s ease both;
    }

    .menu-card {
      background: var(--white);
      border-radius: var(--radius);
      padding: 20px 16px;
      text-align: center;
      cursor: pointer;
      box-shadow: var(--shadow-sm);
      border: 1.5px solid var(--border);
      transition: all .25s cubic-bezier(.22,1,.36,1);
      text-decoration: none;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
    }

    .menu-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-lg);
      border-color: var(--red);
    }

    .menu-card:active { transform: scale(.96); }

    .menu-icon {
      width: 52px; height: 52px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      position: relative;
    }

    .menu-icon.red    { background: rgba(208,2,27,.10); }
    .menu-icon.dark   { background: rgba(28,28,30,.08); }
    .menu-icon.amber  { background: rgba(255,149,0,.12); }
    .menu-icon.green  { background: rgba(52,199,89,.12); }
    .menu-icon.blue   { background: rgba(0,122,255,.10); }
    .menu-icon.purple { background: rgba(175,82,222,.10); }

    .menu-label {
      font-size: 13px;
      font-weight: 600;
      color: var(--charcoal);
      line-height: 1.3;
    }

    /* ── QUICK STATS ─────────────────────────────────────────────────── */
    .stats-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
      animation: fadeUp .5s .2s ease both;
    }

    .stat-card {
      background: var(--white);
      border-radius: var(--radius);
      padding: 16px;
      box-shadow: var(--shadow-sm);
      border: 1.5px solid var(--border);
      text-align: center;
    }

    .stat-value {
      font-family: 'Rajdhani', sans-serif;
      font-size: 26px;
      font-weight: 700;
      color: var(--charcoal);
      line-height: 1;
      margin-bottom: 4px;
    }

    .stat-value.red { color: var(--red); }

    .stat-label {
      font-size: 11.5px;
      color: var(--silver);
      font-weight: 500;
      letter-spacing: .3px;
    }

    /* ── RECENT ORDERS ───────────────────────────────────────────────── */
    .orders-list {
      display: flex;
      flex-direction: column;
      gap: 10px;
      animation: fadeUp .5s .25s ease both;
    }

    .order-card {
      background: var(--white);
      border-radius: var(--radius);
      padding: 14px 16px;
      box-shadow: var(--shadow-sm);
      border: 1.5px solid var(--border);
      display: flex;
      align-items: center;
      gap: 14px;
      cursor: pointer;
      transition: all .2s;
    }

    .order-card:hover {
      border-color: var(--red);
      box-shadow: var(--shadow-md);
    }

    .order-icon {
      width: 44px; height: 44px;
      border-radius: 12px;
      background: rgba(208,2,27,.08);
      display: flex; align-items: center; justify-content: center;
      font-size: 20px;
      flex-shrink: 0;
    }

    .order-info { flex: 1; min-width: 0; }

    .order-id {
      font-family: 'Rajdhani', sans-serif;
      font-size: 15px;
      font-weight: 700;
      color: var(--charcoal);
    }

    .order-desc {
      font-size: 12.5px;
      color: var(--silver);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      margin-top: 2px;
    }

    .order-right { text-align: right; flex-shrink: 0; }

    .order-amount {
      font-family: 'Rajdhani', sans-serif;
      font-size: 16px;
      font-weight: 700;
      color: var(--charcoal);
    }

    .order-status {
      display: inline-block;
      font-size: 11px;
      font-weight: 600;
      padding: 2px 8px;
      border-radius: 100px;
      margin-top: 3px;
    }

    .status-delivered  { background: rgba(52,199,89,.12);  color: #1A7A35; }
    .status-processing { background: rgba(255,149,0,.12);  color: #A05A00; }
    .status-pending    { background: rgba(0,122,255,.10);  color: #0055CC; }

    /* ── BOTTOM NAV ──────────────────────────────────────────────────── */
    .bottom-nav {
      position: fixed;
      bottom: 0; left: 0; right: 0;
      background: var(--white);
      border-top: 1px solid var(--border);
      display: flex;
      box-shadow: 0 -4px 20px rgba(0,0,0,.08);
      z-index: 100;
    }

    .bnav-item {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 10px 0 8px;
      cursor: pointer;
      gap: 4px;
      transition: color .2s;
      color: var(--silver);
      font-size: 11px;
      font-weight: 500;
      text-decoration: none;
      position: relative;
    }

    .bnav-item.active { color: var(--red); }

    .bnav-item.active::before {
      content: '';
      position: absolute;
      top: 0; left: 50%;
      transform: translateX(-50%);
      width: 32px; height: 3px;
      background: var(--red);
      border-radius: 0 0 4px 4px;
    }

    .bnav-icon { font-size: 22px; line-height: 1; }

    /* ── ANIMATIONS ──────────────────────────────────────────────────── */
    @keyframes fadeUp {
      from { opacity:0; transform: translateY(18px); }
      to   { opacity:1; transform: translateY(0); }
    }

    /* ── RESPONSIVE ──────────────────────────────────────────────────── */
    @media (max-width: 500px) {
      .stats-row { grid-template-columns: repeat(3,1fr); gap: 8px; }
      .stat-value { font-size: 22px; }
      .menu-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
      .menu-icon { width: 44px; height: 44px; font-size: 20px; }
      .banner-slide { height: 170px; }
      .banner-title { font-size: 22px; }
    }
	
	
	
	
body{
    margin:0;

    background:#f5f5f5;

    font-family:Arial;
}

.topbar{

    background:#55565c;

    color:#fff;

    padding:18px;

    font-size:24px;
}

.cart-list{

    padding:15px;
}

.cart-card{

    background:#fff;

    border-radius:18px;
    display: flex;
    gap: 100px;
    padding:15px;

    margin-bottom:15px;
}

.qty-box{

    display:flex;

    align-items:center;

    gap:10px;
}

.qty-btn{

    width:34px;

    height:34px;

    border:none;

    border-radius:8px;

    background:#d9002c;

    color:#fff;

    font-size:22px;
}

.summary{

    background:#fff;

    margin:15px;

    padding:15px;

    border-radius:18px;
}

.submit-btn{
       position: relative;
    padding: 9px 30px;
    margin: 0 auto;
    margin-top: 20px;
    height: 50px;
    /* line-height: 50px; */
    margin-bottom: 20px;
    border: none;
    border-radius: 10px;
    background: #d9002c;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
}

.row{

    display:flex;

    justify-content:space-between;

    margin-bottom:12px;
}

.green{

    color:green;
}






body{

    margin:0;

    background:#f5f5f5;

    font-family:Arial;
}

.topbar{

    background:#55565c;

    color:#fff;

    padding:18px;

    font-size:26px;

    display:flex;

    align-items:center;

    gap:15px;
}

.filter-box{

    display:flex;

    gap:10px;

    padding:15px;
}

.filter-box input{

    flex:1;

    height:55px;

    border:none;

    border-radius:14px;

    padding:0 14px;

    font-size:16px;
}

.order-card{

    background:#fff;

    margin:15px;

    border-radius:18px;

    overflow:hidden;
}

.order-header{

    padding:18px;

    border-bottom:1px solid #eee;
}

.status{

    background:#fff5e6;

    color:#ff9800;

    padding:8px 14px;

    border-radius:20px;

    font-weight:bold;

    font-size:14px;
}

.summary-row{

    display:flex;

    justify-content:space-between;

    margin-bottom:10px;

    color:#666;
}

.total{

    color:#d9002c;

    font-size:30px;

    font-weight:bold;
}

.item-box{
    margin: 15px;
    border: 1px solid #eee;
    border-radius: 14px;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

.item-header{

    background:#fff6e8;

    padding:12px;

    color:#ff9800;

    font-weight:bold;

    display:flex;

    justify-content:space-between;
}

.item-content {
    padding: 15px;
    font-size: 14px;
}
.ship-box{

    

    margin: 15px;
    border: 1px solid #eee;
    border-radius: 14px;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;

}

.ship-header{

        background: #fff6e8;
    padding: 12px;
    color: #ff9800;

  
}

.ship-content{
 font-size: 14px;
    padding:15px;
}

.row{

    display:flex;

    justify-content:space-between;

    margin-bottom:10px;
}



  body{

            margin:0;

            padding:0;

            font-family: "Lato", sans-serif;

            background:#f3f3f3;
        }

        .topbar{

            height:80px;

            background:#55565c;

            color:#fff;

            display:flex;

            align-items:center;

            justify-content:center;

            position:relative;

            font-size:34px;

            font-weight:bold;
        }

        .back-btn{

            position:absolute;

            left:20px;

            font-size:30px;

            cursor:pointer;
        }

        .menu-btn{

            position:absolute;

            right:20px;

            font-size:30px;
        }

        .search-box{

            margin:20px;

            background:#fff;

            border-radius:18px;

            padding:14px;

            display:flex;

            align-items:center;
        }

        .search-box input{

            flex:1;

            border:none;

            outline:none;

            font-size:16px;
        }

        .parts-grid{

            display:grid;

            grid-template-columns:repeat(6,1fr);

            gap:14px;

            padding:15px;
        }

        .part-card{

            background:#fff;

            border-radius:18px;

            padding:18px 10px;

            text-align:center;
        }

        .part-circle{

            width:78px;

            height:78px;

            border-radius:50%;

            background:#f5a1aa;

            margin:auto;

            display:flex;

            align-items:center;

            justify-content:center;
        }

        .part-circle img{

            width:70px;

            height:70px;

            object-fit:contain;
        }

        .part-name{

            margin-top:12px;

            font-size:16px;

            font-weight:600;

            color:#444;
        }
		
		
		
		
        body{

            margin:0;

            background:#f4f4f4;

            font-family: "Lato", sans-serif;
        }

        .topbar{

            height:80px;

            background:#55565c;

            color:#fff;

            display:flex;

            align-items:center;

            justify-content:center;

            font-size:34px;

            font-weight:bold;

            position:relative;
        }

        .back-btn{

            position:absolute;

            left:20px;

            font-size:30px;

            cursor:pointer;
        }

        .search-box{

            margin:20px;

            background:#fff;

            border-radius:18px;

            display:flex;

            align-items:center;

            padding:12px;
        }

        .search-box input{

            flex:1;

            border:none;

            outline:none;

            font-size:16px;
        }
        #cartCount{

    background:#fff;

    color:#d9002c;

    padding:4px 10px;

    border-radius:20px;

    margin-left:6px;

    font-size:18px;

    font-weight:bold;
     }

        .category-dropdown-wrap{

            margin:20px;
        }

        #categoryDropdown{

            width:100%;

            height:50px;

            border:none;

            border-radius:14px;

            padding:0 14px;

            font-size:16px;

            background:#fff;
        }

        .product-grid{

            display:grid;

            grid-template-columns:repeat(5,1fr);

            gap:25px;

            padding:15px;
        }

        .product-card{

            background:#fff;

            border-radius:10px;

            overflow:hidden;
        }

        .product-image{

            height:180px;

            background:#fff;

            display:flex;

            align-items:center;

            justify-content:center;
        }

        .product-image img{

            width:140px;

            height:140px;

            object-fit:contain;
        }

        .part-no{
        background: #ffe9ed;
    color: #d9002c;
    padding: 12px;
    font-weight: bold;
    font-size: 17px;
    text-align: center;
        }

        .product-info{
    text-align: center;
            padding:14px;
        }

        .dnp{
    text-align: center;
            font-size:18px;

            font-weight:bold;

            margin-bottom:8px;
        }

        .application{

            color:#666;

            font-size:14px;

            margin-bottom:10px;
        }

        .offer{

            color:green;

            font-weight:bold;

            margin-top:10px;

            font-size:14px;
        }
  .dnpp {
    color: #b3b3b3;
    font-size: 17px;
    font-weight: normal;
}
.brt {
    color: #b3b3b3;
   
    font-weight: normal;
}

        .cart-btn{
position: fixed;
    bottom: 20px;
    left: auto;
      padding: 10px;
    right: 20px;
    background: #d9002c;
    color: #fff;
    border: none;
    height: 50px;
    border-radius: 18px;
    font-size: 20px;
    font-weight: bold;
        }

.srccchbaar{display:flex;}

body{

    margin:0;

    background:#f5f5f5;

    font-family: "Lato", sans-serif;

    color:#444;
}

.topbar{

    background:#55565c;

    color:#fff;

    height:80px;

    display:flex;

    align-items:center;

    padding:0 20px;

    font-size:34px;

    font-weight:bold;
}

.back{

    margin-right:25px;

    cursor:pointer;
}

.profile-box{

    text-align:center;

    padding:35px 20px;
}

.profile-circle{

    width:130px;

    height:130px;

    border-radius:50%;

    background:#d9002c;

    margin:auto;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:60px;

    color:#fff;

    position:relative;
}

.online{

    width:28px;

    height:28px;

    border-radius:50%;

    background:#4cd964;

    position:absolute;

    right:5px;

    bottom:10px;

    border:4px solid #fff;
}

.name{

    margin-top:20px;

    font-size:20px;

    font-weight:bold;
}

.role{

        margin-top: 15px;
    display: inline-block;
    padding: 6px 22px;
    border: 1px solid #d9002c;
    border-radius: 14px;
    color: #555;
    font-size: 19px;
    background: #fff;
}

.section{

    margin-top:35px;

    padding:0 25px;
}

.sectionn {
    margin-top: 35px;
    padding: 0 25px;
    background: #fff;
    width: 60%;
    margin: 0 auto;
    padding: 20px;
    margin-bottom: 20px;
}

.field{
    margin-bottom: 10px;
    margin-top: 10px;
}

.label{

    color:#999;

    font-size:18px;

    margin-bottom:8px;
}

.value{

    font-size:18px;

    font-weight:500;

    line-height:1.4;
}

.row{

    display:flex;

    gap:25px;
}

.col{

    flex:1;
}


/* login */



.cardd {
      width: 100%;
      max-width: 440px;
      background: #fff;

margin: 0 auto;
    margin-top: 30px!important;


      border-radius: 24px;
      box-shadow: var(--shadow-lg);
      overflow: hidden;
      position: relative;
      animation: cardIn .55s cubic-bezier(.22,1,.36,1) both;
    }

    @keyframes cardIn {
      from { opacity:0; transform: translateY(28px) scale(.97); }
      to   { opacity:1; transform: translateY(0)    scale(1);   }
    }

    /* ── Header stripe ─────────────────────────────────────────────── */
    .cardd-header {
      background:linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
      padding: 36px 40px 32px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .cardd-header::after {
      content: '';
      position: absolute;
      bottom: -1px; left: 0; right: 0;
      height: 28px;
      background: var(--white);
      border-radius: 28px 28px 0 0;
    }

    /* Gear watermark */
    .cardd-header::before {
      content: '';
      position: absolute;
      right: -40px; top: -40px;
      width: 180px; height: 180px;
      border-radius: 50%;
      border: 28px solid rgba(255,255,255,.06);
    }

    /* ── Logo ──────────────────────────────────────────────────────── */
    .logo-wrap {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      
    
   
     
      margin-bottom: 18px;
      position: relative;
      z-index: 1;
    }
    .logo-wrap img {
    width: 120px;
}

    .logo-wrap svg { width: 52px; height: 52px; }

    .brand-name {
      
      font-size: 28px;
      font-weight: 700;
      letter-spacing: .5px;
      color: #000;
      position: relative;
      z-index: 1;
      line-height: 1;
    }

    .brand-name span { color: var(--red-light); }

    .brand-sub {
      font-size: 13px;
      color: #000;
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-top: 4px;
      position: relative;
      z-index: 1;
    }

    /* ── Body ──────────────────────────────────────────────────────── */
    .card-body {
      padding: 8px 40px 40px;
    }

    .section-titlee {
    
      font-size: 22px;
      font-weight: 600;
      color: var(--charcoal);
      text-align: center;
      margin-bottom: 4px;
    }

    .section-sub {
      font-size: 13.5px;
      color: var(--silver);
      text-align: center;
      margin-bottom: 28px;
    }

    /* ── Input group ───────────────────────────────────────────────── */
    .input-group {
      position: relative;
      margin-bottom: 16px;
    }

    .input-label {
      display: block;
      font-size: 11.5px;
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: var(--silver);
      margin-bottom: 8px;
    }

    .input-row {
      display: flex;
      align-items: center;
      background: var(--mist);
      border: 1.5px solid var(--border);
      border-radius: var(--radius);
      height: 40px;
      overflow: hidden;
      transition: border-color .2s, box-shadow .2s;
    }

    .input-row:focus-within {
      border-color: var(--red);
      box-shadow: 0 0 0 3px rgba(208,2,27,.10);
      background: var(--white);
    }

    .prefix {
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 0 14px 0 16px;
      font-size: 15px;
      font-weight: 600;
      color: var(--charcoal);
      border-right: 1.5px solid var(--border);
      white-space: nowrap;
      height: 100%;
      user-select: none;
    }

    .prefix .flag {
      font-size: 20px;
      line-height: 1;
    }

    .input-row input {
      flex: 1;
      border: none;
      outline: none;
      background: transparent;
      font-family: 'DM Sans', sans-serif;
      font-size: 16px;
      font-weight: 500;
      color: var(--charcoal);
      padding: 0 16px;
      height: 100%;
      letter-spacing: .5px;
    }

    .input-row input::placeholder { color: #C7C7CC; font-weight: 400; }

    /* OTP input — shown after send */
    #otp-group { display: none; }

    /* ── Buttons ───────────────────────────────────────────────────── */
    .btnn {
      width: 100%;
      height: 40px;
      border: none;
      border-radius: var(--radius);
      font-family: 'Rajdhani', sans-serif;
      font-size: 17px;
      font-weight: 700;
      letter-spacing: .8px;
      cursor: pointer;
      transition: all .2s cubic-bezier(.22,1,.36,1);
      position: relative;
      overflow: hidden;
    }

    .btnn::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(255,255,255,0);
      transition: background .15s;
    }

    .btn:hover::after  { background: rgba(255,255,255,.10); }
    .btn:active        { transform: scale(.98); }

    .btn-primary {
      background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
      color: var(--white);
      box-shadow: 0 4px 18px rgba(208,2,27,.32);
      margin-bottom: 12px;
    }

    .btn-primary:hover {
      box-shadow: 0 8px 28px rgba(208,2,27,.42);
      transform: translateY(-1px);
    }

    .btn-primary:disabled {
      opacity: .6;
      cursor: not-allowed;
      transform: none;
      box-shadow: none;
    }

    /* resend link */
    .resend-wrap {
      text-align: center;
      margin-top: 6px;
      display: none;
    }

    .resend-wrap.visible { display: block; }

    .resend-btn {
      background: none;
      border: none;
      color: var(--red);
      font-family: 'DM Sans', sans-serif;
      font-size: 13.5px;
      font-weight: 600;
      cursor: pointer;
      padding: 6px 0;
    }

    .resend-btn:disabled { color: var(--silver); cursor: default; }

    .resend-timer {
      font-size: 13px;
      color: var(--silver);
    }

    /* ── Toast ─────────────────────────────────────────────────────── */
    #toast {
      position: fixed;
      bottom: 28px; left: 50%;
      transform: translateX(-50%) translateY(80px);
      background: var(--charcoal);
      color: var(--white);
      font-size: 14px;
      font-weight: 500;
      padding: 13px 22px;
      border-radius: 100px;
      box-shadow: var(--shadow-md);
      white-space: nowrap;
      max-width: 90vw;
      transition: transform .35s cubic-bezier(.22,1,.36,1), opacity .35s;
      opacity: 0;
      z-index: 999;
      pointer-events: none;
    }

    #toast.show {
      transform: translateX(-50%) translateY(0);
      opacity: 1;
    }

    #toast.success { background: #1C7A4A; }
    #toast.error   { background: var(--red-dark); }

    /* ── Spinner ───────────────────────────────────────────────────── */
    .spinner {
      display: inline-block;
      width: 18px; height: 18px;
      border: 2.5px solid rgba(255,255,255,.4);
      border-top-color: var(--white);
      border-radius: 50%;
      animation: spin .7s linear infinite;
      vertical-align: middle;
      margin-right: 8px;
    }

    @keyframes spin { to { transform: rotate(360deg); } }

    /* ── Footer ────────────────────────────────────────────────────── */
    .footer-text {
      text-align: center;
      font-size: 12px;
      color: var(--silver);
      margin-top: 28px;
      line-height: 1.6;
    }

    .footer-text a { color: var(--red); text-decoration: none; font-weight: 500; }
    .footer-text a:hover { text-decoration: underline; }

    /* ── Divider ───────────────────────────────────────────────────── */
    .divider {
      display: flex;
      align-items: center;
      gap: 12px;
      margin: 20px 0;
      color: var(--border);
      font-size: 12px;
      color: var(--silver);
    }

    .divider::before, .divider::after {
      content: '';
      flex: 1;
      height: 1px;
      background: var(--border);
    }

    /* ── Step indicator ────────────────────────────────────────────── */
    .steps {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      margin-bottom: 24px;
    }

    .step-dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: var(--border);
      transition: all .3s;
    }

    .step-dot.active {
      width: 24px;
      border-radius: 4px;
      background: var(--red);
    }

    /* ── Remember me ───────────────────────────────────────────────── */
    .remember-row {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-top: 4px;
    }

    .toggle-wrap {
      position: relative;
      width: 40px; height: 22px;
      flex-shrink: 0;
    }

    .toggle-wrap input { opacity: 0; width: 0; height: 0; }

    .toggle-track {
      position: absolute;
      inset: 0;
      background: var(--border);
      border-radius: 100px;
      cursor: pointer;
      transition: background .25s;
    }

    .toggle-track::after {
      content: '';
      position: absolute;
      left: 3px; top: 3px;
      width: 16px; height: 16px;
      background: var(--white);
      border-radius: 50%;
      box-shadow: var(--shadow-sm);
      transition: left .25s cubic-bezier(.22,1,.36,1);
    }

    .toggle-wrap input:checked + .toggle-track { background: var(--red); }
    .toggle-wrap input:checked + .toggle-track::after { left: 21px; }

    .remember-label {
      font-size: 13.5px;
      color: var(--steel);
      cursor: pointer;
    }




