:root{
    --primary: #E5C587; 
    --secondary: #2B1A12;
    --secondary-hover: #FAEBD3;
    --product-price: #6A3E2B;
    --prod-price-old: #AC4D24;
    --faq-transition-fast: 0.16s ease;
    --bg:#FFF7ED;
    --page-max: 1100px;
    --danger: #ef4444;

    /* ----  */
    --text-muted: #777;
    --border: #e0e0e0;
    --muted:#6b7280;
    --card:#fff;
    --radius:12px;
    font-family:Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial;
    --panel-shadow: 0 8px 28px rgba(18,24,36,0.06);
    --radius:10px;
    --container-width:1100px;
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
    --shadow: 0 8px 28px rgba(10, 20, 30, 0.06);
    --green: #10b981;
    --ap-primary: #1976d2;
    --ap-primary-dark: #135aa0;
    --ap-text-main: #202124;
    --ap-border: #dadce0;
}
*{
    box-sizing:border-box
}
body{
  margin:0; 
  background:var(--bg); 
  color:#111827;
}
.body-main{
  min-height:80vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* ////////////////////Login Start//////////////////
///////////////////////////////////////////////////*/
.auth-wrapper {
    width: 100%;
    max-width: 900px;
    display: flex;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  }

  /* Left panel */

  .auth-left {
    flex: 0.9;
    background: var(--primary);
    color: var(--secondary);
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
  }

  .auth-left::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(255,255,255,0.18), transparent 55%);
    pointer-events: none;
  }

  .auth-left-content {
    position: relative;
    z-index: 1;
  }

  .auth-left h1 {
    font-size: 28px;
    margin-bottom: 8px;
    font-weight: 600;
  }

  .auth-left p {
    font-size: 14px;
    color: var(--secondary);
    max-width: 280px;
    margin-bottom: 32px;
  }

  .auth-highlights {
    list-style: none;
    font-size: 13px;
  }

  .auth-highlights li {
    margin-bottom: 10px;
    display: flex;
    gap: 8px;
    align-items: flex-start;
  }

  .auth-highlights span.bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--secondary);
    margin-top: 4px;
    flex-shrink: 0;
  }

  .auth-left-footer {
    font-size: 11px;
    opacity: 0.9;
    position: relative;
    z-index: 1;
  }

  /* Right panel */

  .auth-right {
    flex: 1.1;
    padding: 32px 40px 36px;
    position: relative;
    display: flex;
    flex-direction: column;
  }

  /* Tabs */

  .auth-tabs {
    display: flex;
    border-bottom: 1px solid var(--border);
    margin-bottom: 24px;
  }

  .auth-tab {
    flex: 1;
    text-align: center;
    padding-bottom: 10px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-muted);
    position: relative;
  }

  .auth-tab.active {
    color: var(--secondary);
  }

  .auth-tab.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 2px;
    background: var(--primary);
  }


  .auth-form {
    display: none;
    flex-direction: column;
    gap: 14px;
    flex: 1;
  }

  .auth-form.active {
    display: flex;
  }

  .auth-wrapper .form-row {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .auth-wrapper label {
    font-size: 12px;
    color: var(--text-muted);
  }

  .auth-wrapper .input-group {
    position: relative;
  }

  .auth-wrapper input {
    width: 100%;
    padding: 10px 12px;
    font-size: 14px;
    border-radius: 2px;
    border: 1px solid var(--border);
    outline: none;
    transition: border 0.2s, box-shadow 0.2s, background 0.2s;
    background: #fff;
  }

  .auth-wrapper input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 1px rgba(40, 116, 240, 0.1);
    background: #fff;
  }

  .auth-wrapper .input-error {
    border-color: #d32f2f !important;
  }

  .auth-wrapper .error-text {
    font-size: 11px;
    color: #d32f2f;
    display: none;
  }

  .auth-wrapper .error-text.visible {
    display: block;
  }

  .auth-wrapper .toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 11px;
    color: var(--secondary);
    cursor: pointer;
    user-select: none;
  }

  .auth-wrapper .forgot-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    margin-top: -4px;
  }

  .auth-wrapper .forgot-row a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 500;
  }

  .auth-wrapper .forgot-row a:hover {
    text-decoration: underline;
  }

  .auth-wrapper .terms {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 2px;
  }

  .auth-wrapper .terms a {
    color: var(--secondary);
    text-decoration: none;
  }

  .auth-wrapper .terms a:hover {
    text-decoration: underline;
  }

  .auth-wrapper .btn {
    border: none;
    outline: none;
    cursor: pointer;
    padding: 10px 16px;
    font-size: 14px;
    border-radius: 2px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: transform 0.08s ease, box-shadow 0.08s ease, background 0.15s ease;
  }

  .auth-wrapper .btn:active {
    transform: scale(0.98);
    box-shadow: none;
  }

  .auth-wrapper .btn-primary {
    background: var(--primary);
    color: var(--secondary);
    /* box-shadow: 0 2px 4px rgba(251, 100, 27, 0.35); */
    width: 100%;
    margin-top: 4px;
  }

  .auth-wrapper .btn-primary:hover {
    background: var(--secondary);
    color: #fff;
  }

  .google-cred {
    display: flex;
    justify-content: center;
    margin: 20px 0;
  }

  .google-cred-in a {
      display: inline-flex;
      align-items: center;
      padding: 10px 30px;
      background-color: white;
      border: 1px solid #ccc;
      border-radius: 4px;
      text-decoration: none;
      color: #444;
      font-size: 14px;
      box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
      transition: background-color 0.3s;
  }

  .google-cred-in a:hover {
      background-color: #f7f7f7;
  }

  .google-cred-in img {
      height: 18px;
      width: 18px;
      margin-right: 10px;
  }
  

  .auth-wrapper .divider {
    display: flex;
    align-items: center;
    margin: 8px 0;
    gap: 8px;
    font-size: 11px;
    color: var(--text-muted);
  }

  .auth-wrapper .divider span {
    flex: 1;
    height: 1px;
    background: var(--border);
  }

  .auth-wrapper .switch-auth-text {
    text-align: center;
    font-size: 12px;
    margin-top: 14px;
    color: var(--text-muted);
  }

  .auth-wrapper .switch-auth-text button {
    border: none;
    background: transparent;
    color: var(--secondary);
    cursor: pointer;
    font-weight: 500;
    padding: 0 3px;
  }

  .auth-wrapper .switch-auth-text button:hover {
    text-decoration: underline;
  }


  /* Responsive */

  @media (max-width: 768px) {
    body {
      padding: 0;
    }

    .auth-wrapper {
      max-width: 100%;
      min-height: 100vh;
      border-radius: 0;
      box-shadow: none;
      flex-direction: column;
    }

    .auth-left {
      display: none;
    }

    .auth-right {
      padding: 24px 20px 32px;
    }
  }

  @media (max-width: 420px) {
    .auth-right {
      padding: 20px 16px 28px;
    }

    .auth-tabs {
      font-size: 14px;
    }
  }


/* ////////////////////Login End//////////////////
/////////////////////////////////////////////////*/



/* ////////////////////cart Start//////////////////
/////////////////////////////////////////////////*/

.cartpage{
    display:flex;
    flex-direction:column;
    gap:16px;
    padding:20px 24px;
}
.cartpage .topbar2 .container{
    max-width:var(--container-width);
    margin:0 auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    background-color: var(--secondary-hover);
    padding: 18px;
    border-radius:8px;
}
.cartpage .deliver{
    color:var(--secondary);
}
.cartpage .change-btn{
    background: var(--primary);
    border:1px solid var(--primary);
    padding:8px 12px;
    border-radius:6px;
    cursor:pointer;
}
.cartpage .change-btn:hover{
    background: var(--secondary);
    color: #fff;
}
.cartpage .container{
    max-width:var(--container-width);
    margin:0 auto;
}
.cartpage .layout{
    display:flex;
    gap:22px;
    align-items:flex-start;
}
.cartpage .cart-list{
    flex:1 1 65%;
    background:var(--secondary-hover);
    border-radius:8px;
    padding:18px;
    box-shadow:var(--panel-shadow);
    color: var(--secondary);
}
.cartpage .cart-item{
    display:flex;
    gap:14px;
    padding:14px 8px;
    align-items:flex-start;
}
.cartpage .thumb{
    width:92px;
    height:92px;
    object-fit:cover;
    border-radius:6px;
    background:var(--primary);
    border:1px solid #f0f2f4;
}
.cartpage .item-body{
    flex:1
}
.cartpage .title{
    font-size:16px;
    margin:2px 0 6px;
}
.cartpage .meta{
    color:var(--secondary);
    font-size:13px;
    margin-bottom:6px;
}
.cartpage .price-row{
    display:flex;
    align-items:center;
    gap:8px;
    margin-bottom:8px;
}
.cartpage .price-old{
    text-decoration:line-through;
    color: var(--prod-price-old);
    font-size:13px;
}
.cartpage .price{
    font-weight:800;
    font-size:18px;
    color: var(--product-price);
}
.cartpage .qty-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:12px;
    margin-top:8px;
}
.cartpage .qty-control{
    display:flex;
    align-items:center;
    gap:6px;
}
.cartpage .qty-btn{
    width:34px;
    height:34px;
    border-radius:8px;
    border:1px solid var(--primary);
    background: var(--primary);
    cursor:pointer;
    font-size:18px;
}
.cartpage .qty{
    width:46px;
    text-align:center;
    padding:8px;
    border-radius:8px;
    border:1px solid var(--primary);
    background-color: var(--primary);
}
.cartpage .actions{
    display:flex;
    gap:14px;
    align-items:center;
    flex-wrap:wrap
}
.cartpage .link{
    background:transparent;
    border:none;color:var(--danger);
    font-weight:700;
    cursor:pointer;
    padding:6px 0;
}
.cartpage .divider{
    border:0;
    height:1px;
    background:#eef2f7;
    margin:8px 0;
}
.cartpage .price-panel{
    flex:0 0 320px;
}
.cartpage .price-panel .panel{
    background:var(--secondary-hover);
    padding:18px;
    border-radius:8px;
    box-shadow:var(--panel-shadow);
}
.cartpage .panel-title{
    margin:0 0 12px;
    font-size:15px;
    color:var(--secondary);
    font-weight:800;
}
.cartpage .pd-row{
    display:flex;
    justify-content:space-between;
    padding:6px 0;
    color:var(--secondary);
    font-size:14px;
}
.cartpage .right{
    color: var(--product-price);
    font-weight:700;
}
.cartpage .discount{
    color:#16a34a;
    font-weight:800
}
.cartpage .pd-sep{
    border:0;
    height:1px;
    background:#eef2f7;
    margin:10px 0;
}
.cartpage .pd-total{
    display:flex;
    justify-content:space-between;
    font-weight:800;
    font-size:16px;
    padding:8px 0;
}
.cartpage .save-note{
    color:#16a34a;
    font-size:13px;
    margin-top:8px;
}
.cartpage .secure{
    display:flex;
    gap:12px;
    align-items:flex-start;
    margin-top:16px;
    color:#818a90;
    font-size:13px;
}
.cartpage .secure-title{
    font-weight:700;
    color: var(--secondary);
}
.cartpage .secure-sub{
    color: var(--secondary);
}
.cartpage .bottom-cta{
    position:fixed;
    left:0;
    right:0;
    bottom:0;
    background:var(--secondary-hover);
    border-top:1px solid #eef2f7;
    padding:10px 0;
    box-shadow:0 -6px 20px rgba(18,24,36,0.03);
}
.cartpage .cta-inner{
    max-width:var(--container-width);
    margin:0 auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:6px 18px;
    gap:12px;
}
.cartpage .summary-mini{
    color:var(--secondary);
    font-size:13px;
    display:flex;
    gap:12px;
    align-items:center;
}
.cartpage .total-mini{
    font-weight:800;
    font-size:18px;
    color: var(--product-price);
}
.cartpage .place-order{
    background:var(--primary);
    color:var(--secondary);
    border:none;
    padding:14px 26px;
    border-radius:8px;
    font-weight:800;
    cursor:pointer;
}
.cartpage .place-order:hover{
  background: var(--secondary);
  color: #fff;
}

@media (max-width:760px){
    .cartpage .layout{
        flex-direction:column;
    }
    .cartpage .price-panel{
        width:100%;
    }
    .cartpage .place-order{
        width:160px;
    }
}


#bcPopup{

    position:fixed;

    inset:0;

    background:
    rgba(6,10,15,0.45);

    display:flex;

    align-items:center;

    justify-content:center;

    z-index:99999;

}


.bc-popup-box{

    width:350px;

    max-width:90%;

    background:var(--secondary-hover);

    border-radius:10px;

    padding:25px;

    text-align:center;

}


.bc-popup-box h3{

    margin-bottom:15px;

}


.bc-popup-box p{

    margin-bottom:20px;

}


#bcPopupClose{

    padding:10px 25px;

    cursor:pointer;
    border-radius: 6px;
    background-color: var(--primary);
    color: var(--secondary);
    border: 1px solid var(--primary);

}


/* Pincode modal styles */
.pin-overlay{
    position:fixed; 
    inset:0; 
    display:none; 
    align-items:center; 
    justify-content:center;
    background:rgba(6,10,15,0.45);
    z-index:1200; 
    padding:20px;
}
.pin-overlay.active{ 
    display:flex; 
}

.pin-overlay .pin-modal{
    width:100%; 
    max-width:420px; 
    background: var(--secondary-hover); 
    border-radius:10px; 
    padding:20px; 
    box-shadow:0 20px 60px rgba(6,10,15,0.25);
    position:relative; 
    color:#111827;
}
.pin-overlay .pin-close{
    position:absolute; 
    right:12px; 
    top:8px; 
    border:0; 
    background:transparent; 
    font-size:22px; 
    cursor:pointer; 
    color: var(--secondary);
}
.pin-overlay .pin-modal h3{ 
    margin:4px 0 6px; 
    font-size:18px; 
}
.pin-overlay .pin-modal .note{ 
    color: var(--secondary); 
    font-size:13px; 
    margin-bottom:12px; 
}
.pin-overlay .pin-row{ 
    display:flex; 
    gap:10px; 
    align-items:center; 
}
.pin-overlay .pin-row input{
    flex:1; 
    padding:10px 12px; 
    border-radius:8px; 
    border:1px solid var(--secondary); 
    background-color: var(--secondary-hover);
    font-size:15px;
}
.pin-overlay .pin-row input:focus{ 
    outline:none; 
    box-shadow:0 8px 20px var(--secondary-hover); 
    border-color: var(--secondary); 
}
.pin-overlay .pin-msg{ 
    margin-top:10px; 
    font-size:14px; 
    color:#14532d; 
}
.pin-overlay .pin-msg.error{ 
    color:#c53030; 
}
.pin-overlay .sr-only{ 
    position:absolute !important; 
    left:-9999px; 
    top:auto; 
    width:1px; 
    height:1px; 
    overflow:hidden; 
}
.pin-overlay .btn{
    padding: 12px;
    border-radius: 6px;
    background-color: var(--primary);
    color: var(--secondary);
    border: 1px solid var(--primary);
}
.pin-overlay .btn:hover{
  background: var(--secondary);
  color: #fff;
  cursor: pointer;
}
.pin-select{
    width:100%;
    padding:10px 12px;
    border:1px solid var(--secondary);
    border-radius:8px;
    background:var(--secondary-hover);
    font-size:15px;
}

.pin-select:focus{
    outline:none;
    border-color:var(--secondary);
}

/* ////////////////////cart End//////////////////
/////////////////////////////////////////////////*/


/* ////////////////////My order Start//////////////////
/////////////////////////////////////////////////*/



.orderpage {
  max-width: var(--page-max);
  margin: 28px auto;
  padding: 0 20px 80px;
}

.orderpage .page-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--secondary);
}

.orderpage .page-header h1 {
  margin: 0;
  font-size: 28px;
  letter-spacing: -0.2px;
}



.orderpage .page-header .tab {
    color: var(--prod-price-old);
    font-weight: 700;
}


.orderpage .orders-list {
  display: grid;
  gap: 16px;
}
.orderpage .order-card {
  background: var(--secondary-hover);
  border-radius: 10px;
  padding: 18px;
  border: 1px solid rgba(15, 23, 42, 0.03);
}

.orderpage .card-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.orderpage .left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.orderpage .logo-wrap {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--primary);
  display: grid;
  place-items: center;
  flex: 0 0 56px;
}

.orderpage .brand-icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.orderpage .order-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.orderpage .order-no {
  font-size: 14px;
  color: var(--secondary);
}

.orderpage .order-amount {
  font-size: 15px;
  color: var(--product-price);
}

.orderpage .right .actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.orderpage .btn {
  border: none;
  padding: 10px 18px;
  border-radius: 22px;
  cursor: pointer;
  font-weight: 700;
}

.orderpage .btn-primary {
  background: var(--product-price);
  color: #fff;
  box-shadow: 0 6px 18px rgba(16, 185, 129, 0.12);
}

.orderpage .btn-link {
  background: transparent;
  color: var(--danger);
  font-weight: 700;
}

.orderpage .progress-wrap {
  margin-top: 14px;
}

.orderpage .progress {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.orderpage .progress .step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 70px;
}

.orderpage .progress .step .dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid var(--prod-price-old);
  background: #fff;
  display: inline-block;
  box-sizing: border-box;
}

.orderpage .progress .step .label {
  font-size: 12px;
  color: var(--secondary);
  white-space: nowrap;
}

.orderpage .progress .step.done .dot {
  position: relative;
  background: var(--prod-price-old);
  border-color: var(--prod-price-old);
  box-shadow: 0 4px 10px rgba(16, 185, 129, 0.18);
}

.orderpage .progress .step.done .dot::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 1px;
  width: 4px;
  height: 6px;
  border: solid #ffffff;  
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.orderpage .progress .step.active .dot {
  background: #fff;
  border-color: var(--prod-price-old);
  box-shadow: 0 4px 10px rgba(16, 185, 129, 0.12);
}


.orderpage .progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--prod-price-old), #2fb28b);
  transition: width 420ms ease;
}

.orderpage .card-footer {
  margin-top: 12px;
  padding-top: 8px;
  border-top: 1px solid #f1f4f6;
}

.orderpage .footer-left {
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--product-price);
  font-size: 13px;
}
.orderpage .abtn{
    text-decoration: none;
    font-size: 14px;
}
@media (max-width: 820px) {
  .orderpage{
    padding: 16px;
  }

  .orderpage .brand-icon {
    width: 30px;
    height: 30px;
  }

  .orderpage .progress {
    gap: 12px;
  }

  .orderpage .progress .step {
    min-width: 56px;
  }
}

@media (max-width: 520px) {
  .orderpage .card-row {
    flex-direction: column;
    align-items: stretch;
  }

  .orderpage .right {
    margin-top: 12px;
    display: flex;
    justify-content: flex-end;
  }

  .orderpage .progress {
    gap: 8px;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .orderpage .progress .step .label {
    font-size: 11px;
  }

  .orderpage .btn {
    padding: 10px 14px;
  }
  
}


/* ////////////////////My order End//////////////////
/////////////////////////////////////////////////*/

/* ////////////////////Order Details Start//////////////////
/////////////////////////////////////////////////*/

.odpage {
  max-width: var(--page-max);
  margin: 28px auto;
  padding: 0 20px 80px;
}

.odpage .page-header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
  gap: 16px;
  margin-bottom: 18px;
}

.odpage .back-link {
  display: inline-block;
  color: var(--secondary);
  margin-bottom: 8px;
  text-decoration: none;
}

.odpage .page-header h1 {
  margin: 0;
  font-size: 26px;
  color: var(--secondary);
}

.odpage .sub {
  color: var(--secondary);
  font-size: 13px;
  margin-top: 6px;
}

.odpage .header-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.odpage .grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 18px;
}

.odpage .col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.odpage .card {
  background: var(--secondary-hover);
  border-radius: 10px;
  padding: 16px;
  border: 1px solid var(--secondary-hover);
  color: var(--secondary);
}

.odpage .card-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.odpage .left { 
    display: flex; 
    flex-direction: column; 
    gap: 6px; 
}
.odpage .right.small-muted { 
    color: var(--muted); 
    font-size: 14px; 
}

.odpage .items-list { 
    list-style: none; 
    margin: 0; 
    padding: 0; 
    display: flex; 
    flex-direction: column; 
    gap: 12px; 
}
.odpage .item-row { 
    display: flex; 
    gap: 12px; 
    align-items: center; 
}
.odpage .item-thumb { 
    width: 72px; 
    height: 72px; 
    object-fit: cover; 
    border-radius: 8px; 
    background: #f3f5f6; 
}
.odpage .item-meta { 
    display: flex; 
    flex-direction: column; 
    gap: 6px; 
}
.odpage .item-title { 
    font-weight: 700; 
    font-size: 15px; 
}
.odpage .item-attr { 
    color: var(--secondary); 
    font-size: 13px; 
}
.odpage .item-price { 
    margin-top: 6px; 
    font-size: 14px; 
    color: var(--product-price); 
}

.odpage .address { 
    font-size: 14px; 
    color: var(--secondary); 
    line-height: 1.45; 
}
.odpage .addr-name { 
    font-weight: 800; 
    margin-bottom: 6px; 
}

.odpage .timeline { 
    list-style: none; 
    margin: 0; 
    padding: 0; 
    display: flex; 
    flex-direction: column; 
    gap: 10px; 
}
.odpage .timeline .time { 
    color: var(--secondary); 
    font-size: 12px; 
    margin-bottom: 4px; 
}
.odpage .timeline .desc { 
    font-size: 14px; 
}

.odpage .summary-card .panel-title { 
    margin: 0 0 8px; 
    color: var(--secondary); 
    font-weight: 800; 
    font-size: 14px; 
}
.odpage .pd-total { 
    display: flex; 
    justify-content: space-between; 
    font-weight: 800; 
    font-size: 16px; 
    padding: 8px 0; 
    color: var(--product-price);
}
.odpage .pd-sep { 
    border: 0; 
    height: 1px; 
    background: #eef2f3; 
    margin: 10px 0;
}
.odpage .discount { 
    color: #16a34a; 
    font-weight: 800; 
}

.odpage .btn { 
    border: none; 
    padding: 10px 14px; 
    border-radius: 10px; 
    cursor: pointer; 
    font-weight: 700; 
}
.odpage .btn-primary { 
    background: var(--green); 
    color: #fff; 
    box-shadow: 0 8px 28px rgba(16, 185, 129, 0.12); 
}
.odpage .btn-ghost { 
    background: transparent; 
    border: 1px solid var(--prod-price-old); 
    color: var(--danger); 
}
.odpage .btn-link { 
    background: transparent; 
    color: var(--prod-price-old); 
}

/* small text */
.odpage .small-muted { 
    color: var(--muted); 
    font-size: 13px; 
}

/* responsive */
@media (max-width: 980px) {
  .odpage .grid { 
    grid-template-columns: 1fr; 
    }
  .odpage .header-actions { 
    margin-top: 12px; 
    }
}






/* ////////////////////Order Details End//////////////////
/////////////////////////////////////////////////*/



/* ////////////////////My Profile Start//////////////////
/////////////////////////////////////////////////*/

.profilepage {
  max-width: var(--page-max);
  margin: 28px auto;
  padding: 0 20px 80px;
}

.profilepage .page-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}

.profilepage .page-header h1 {
  margin: 0;
  font-size: 28px;
}

.profilepage .sub {
  color: var(--muted);
  font-size: 13px;
  margin-top: 6px;
}


.profilepage .link-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px 14px;
  background: #fff;
  border-radius: 10px;
  box-shadow: var(--shadow);
  text-decoration: none;
  color: #0f172a;
  min-width: 140px;
  text-align: left;
}

.profilepage .lnk-title {
  font-weight: 800;
}

.profilepage .lnk-sub {
  color: var(--muted);
  font-size: 13px;
}

.profilepage .grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 18px;
}

.profilepage .card {
  background: var(--card);
  border-radius: 10px;
  padding: 16px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(15, 23, 42, 0.03);
}

.profilepage .card-heading-row {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 12px;
}

.profilepage .card-heading {
  margin: 0;
  font-size: 18px;
}

.profilepage .small-muted {
  color: var(--muted);
  font-size: 13px;
}

.profilepage .profile-form .form-grid {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 18px;
  align-items: start;
}

.profilepage .avatar-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

.profilepage .avatar {
  width: 120px;
  height: 120px;
  border-radius: 12px;
  overflow: hidden;
  background: #f3f5f6;
  display: grid;
  place-items: center;
}

.profilepage .avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profilepage .avatar-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.profilepage .file-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 8px;
  cursor: pointer;
  border: 1px solid #e6eef1;
  background: #fff;
  font-weight: 700;
}

.profilepage .file-btn input[type="file"] {
  display: none;
}

.profilepage .note {
  color: var(--muted);
  font-size: 13px;
}

.profilepage .fields-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.profilepage .field-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.profilepage .field-row label {
  font-size: 13px;
  color: var(--muted);
}

.profilepage .field-row input[type="text"],
.profilepage .field-row input[type="email"],
.profilepage .field-row input[type="tel"],
.profilepage .field-row select,
.profilepage .field-row textarea {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #e6eef1;
  font-size: 15px;
  outline: none;
}

.profilepage .field-row textarea { 
    resize: vertical; 
}

.profilepage .small-rows {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.profilepage .form-actions {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}

.profilepage .side-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.profilepage .side-link {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  text-decoration: none;
  color: #0f172a;
  border: 1px solid transparent;
}

.profilepage .side-link:hover {
  border-color: #eef2f3;
  background: #fbfdfc;
}

.profilepage .pref { 
    display: flex; 
    flex-direction: column; 
    gap: 8px; 
    padding-top: 8px; 
}

.profilepage .pref-row {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 14px;
}

.profilepage .btn {
  border: none;
  padding: 10px 14px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
}

.profilepage .btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 8px 28px rgba(16, 185, 129, 0.12);
}

.profilepage .btn-ghost {
  background: transparent;
  border: 1px solid #e6eef1;
  color: var(--muted);
}

.profilepage .btn-link {
  background: transparent;
  color: var(--green);
}
.profilepage .side-col{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Responsive */
@media (max-width: 980px) {
  .profilepage .grid { 
    grid-template-columns: 1fr; 
}
  .profilepage .profile-form .form-grid { 
    grid-template-columns: 1fr; 
}
  .profilepage .avatar { 
    width: 96px; 
    height: 96px; 
}
  .profilepage .avatar-col { 
    align-items: flex-start; 
}
}


/* ////////////////////My Profile End//////////////////
/////////////////////////////////////////////////*/






/* ////////////////////addresses Start//////////////////
/////////////////////////////////////////////////*/

#address-page, #address-page * {
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}


#address-page {
  max-width: 960px;
  margin: 24px auto;
  padding: 0 16px 40px;
}

.address .ap-header {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.address .ap-header h1 {
  font-size: 1.4rem;
  font-weight: 500;
}

.address .ap-btn {
  border: none;
  border-radius: 4px;
  cursor: pointer;
  padding: 8px 16px;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: background 0.15s ease, box-shadow 0.15s ease, transform 0.05s ease;
  white-space: nowrap;
}

.address .ap-btn-primary {
  background: var(--primary);
  color: var(--secondary);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}
.address .ap-btn-primary:hover {
  background: var(--secondary);
  color: #fff;
}

.address .ap-btn-secondary {
  background: #e8f0fe;
  color: var(--ap-primary);
}

.address .ap-btn-ghost {
  background: transparent;
  color: var(--ap-text-main);
}

.address .ap-btn-danger {
  background: var(--danger);
  color: #fff;
}

.address .ap-btn:active {
  transform: translateY(1px);
}

.address .ap-btn-full {
  width: 100%;
}

.address .ap-icon-btn {
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 1rem;
  padding: 4px;
  border-radius: 50%;
}

.address .ap-icon-btn:hover {
  background: rgba(0, 0, 0, 0.06);
}

.address .ap-empty {
  margin-top: 32px;
}

.address .ap-empty-illustration {
  background: #fff;
  border-radius: var(--radius);
  border: 1px dashed var(--secondary);
  padding: 40px 16px;
  text-align: center;
  color: var(--secondary);
}

.address .ap-empty-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 16px;
  border-radius: 50%;
  border: 2px solid var(--secondary-hover);
  position: relative;
}
.address .ap-empty-icon::before,
.address .ap-empty-icon::after {
  content: "";
  position: absolute;
  border-radius: 3px;
  background: var(--product-price);
}
.address .ap-empty-icon::before {
  width: 40px;
  height: 4px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.address .ap-empty-icon::after {
  width: 4px;
  height: 40px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.address .ap-empty-title {
  font-size: 1.05rem;
  margin: 8px 0 4px;
}

.address .ap-empty-subtitle {
  margin-bottom: 16px;
}

.address .ap-list {
  margin-top: 8px;
}

.address .ap-card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px 16px 14px;
  margin-top: 12px;
  position: relative;
}

.address .ap-card-header {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.address .ap-card-name {
  font-weight: 500;
}

.address .ap-card-phone {
  font-size: 0.9rem;
}

.address .ap-type-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--secondary-hover);
  color: var(--secondary);
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.address .ap-card-body {
  margin-top: 6px;
  font-size: 0.9rem;
  color: var(--muted);
}

.address .ap-card-actions {
  position: absolute;
  right: 8px;
  top: 8px;
}

.address .ap-menu-trigger {
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 6px;
  border-radius: 50%;
}
.address .ap-menu-trigger:hover {
  background: rgba(0, 0, 0, 0.06);
}

.address .ap-menu-trigger::before {
  content: "⋮";
  font-size: 16px;
  line-height: 1;
}

.address .ap-menu {
  position: absolute;
  right: 0;
  margin-top: 4px;
  min-width: 120px;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  z-index: 10;
  overflow: hidden;
  transform-origin: top right;
  animation: ap-menu-in 0.12s ease-out forwards;
}
@keyframes ap-menu-in {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}

.address .ap-menu button {
  width: 100%;
  border: none;
  background: transparent;
  text-align: left;
  padding: 8px 12px;
  font-size: 0.85rem;
  cursor: pointer;
}
.address .ap-menu button:hover {
  background: #f1f3f4;
}

.address .ap-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(32, 33, 36, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease;
  z-index: 100;
}

.address .ap-modal-backdrop.ap-open {
  opacity: 1;
  pointer-events: auto;
}

.address .ap-modal {
  background: #fff;
  border-radius: 4px;
  max-width: 640px;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.address .ap-modal-backdrop.ap-open .ap-modal {
  transform: translateY(0);
  opacity: 1;
}

.address .ap-modal-small {
  max-width: 400px;
}

.address .ap-modal-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--product-price);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.address .ap-modal-header h2 {
  font-size: 1.1rem;
  margin: 0;
}

.address .ap-modal-body {
  padding: 16px 20px 8px;
  overflow-y: auto;
}

.address .ap-modal-footer {
  padding: 10px 20px 14px;
  border-top: 1px solid var(--ap-border);
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}
.address-flex{
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}
.ap-btn:disabled{
    opacity: .5;
    cursor: not-allowed;
}


.address .ap-field label,
.address .ap-field legend {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 4px;
  color: var(--ap-text-main);
}

.address .ap-field input,
.address .ap-field textarea,
.address .ap-field select {
  width: 100%;
  padding: 8px 10px;
  border-radius: 4px;
  border: 1px solid var(--ap-border);
  font-size: 0.9rem;
  outline: none;
  transition: border 0.15s ease, box-shadow 0.15s ease;
}

.address .ap-field input:focus,
.address .ap-field textarea:focus,
.address .ap-field select:focus {
  border-color: var(--ap-primary);
  box-shadow: 0 0 0 1px rgba(25, 118, 210, 0.2);
}

.address .ap-field-row {
  display: flex;
  gap: 12px;
}

.address .ap-field-row .ap-field {
  flex: 1;
}

.address .ap-address-type {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  border: none;
}

.address .ap-address-type legend {
  margin-bottom: 4px;
  width: 100%;
}

.address .ap-address-type label {
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.address .ap-error {
  color: #d93025;
  font-size: 0.75rem;
  margin: 0;
}

.address .ap-location-icon {
  font-size: 1rem;
}

.address .ap-btn-add-desktop {
  display: inline-flex;
}
.address .ap-btn-add-mobile {
  display: none;
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 1.6rem;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}

@media (max-width: 640px) {
  #address-page {
    margin-top: 12px;
  }
  .address .ap-header {
    margin-bottom: 8px;
  }
  .address .ap-modal-header,
  .address .ap-modal-body,
  .address .ap-modal-footer {
    padding-left: 16px;
    padding-right: 16px;
  }
  .address .ap-modal {
  max-width: 380px;
  }
}




/* ////////////////////addresses End//////////////////
/////////////////////////////////////////////////*/

/* ////////////////////Order Success Start//////////////////
/////////////////////////////////////////////////*/

:root {
  --os-bg: #f5f7fb;
  --os-card-bg: #ffffff;
  --os-primary: #2e7d32;
  --os-primary-light: #e8f5e9;
  --os-text-main: #202124;
  --os-text-muted: #5f6368;
  --os-border: #e0e0e0;
  --os-radius: 12px;
  --os-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.os-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.os-card {
  max-width: 540px;
  width: 100%;
  background: var(--os-card-bg);
  border-radius: var(--os-radius);
  padding: 28px 24px 24px;
  text-align: center;
  box-shadow: var(--os-shadow);
}

/* Check animation */
.os-icon-wrapper {
  width: 96px;
  height: 96px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: var(--os-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pop-in 0.4s ease-out both;
}

.os-check-icon {
  width: 70px;
  height: 70px;
}

.os-check-circle {
  fill: none;
  stroke: var(--os-primary);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 188;
  stroke-dashoffset: 188;
  animation: circle-draw 0.6s ease-out forwards 0.2s;
}

.os-check-mark {
  fill: none;
  stroke: var(--os-primary);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  animation: check-draw 0.4s ease-out forwards 0.6s;
}
.os-title {
  margin: 8px 0 4px;
  font-size: 1.4rem;
  font-weight: 600;
}

.os-subtitle {
  margin: 0 0 18px;
  font-size: 0.95rem;
  color: var(--os-text-muted);
}

.os-order-summary {
  text-align: left;
  border-radius: 10px;
  border: 1px solid var(--os-border);
  padding: 12px 14px;
  margin-bottom: 18px;
  background: #fafafa;
}

.os-order-row {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
  font-size: 0.9rem;
}

.os-order-row span {
  color: var(--os-text-muted);
}


/* Buttons */
.os-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 6px;
}

.os-btn {
  border-radius: 999px;
  padding: 8px 18px;
  border: none;
  font-size: 0.9rem;
  cursor: pointer;
  transition: 0.1s ease;
}

.os-btn-primary {
  background: var(--os-primary);
  color: #fff;
}

.os-btn-ghost {
  background: transparent;
  border: 1px solid var(--os-border);
}

.os-btn-primary:hover {
  background: #256528;
}
.os-btn-ghost:hover {
  background: #f0f0f0;
}

.os-hint {
  font-size: 0.78rem;
  color: var(--os-text-muted);
}

/* Animations */
@keyframes pop-in {
  from {
    transform: scale(0.6);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes circle-draw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes check-draw {
  to {
    stroke-dashoffset: 0;
  }
}



/* ////////////////////Order Success End//////////////////
/////////////////////////////////////////////////*/

/* ////////////////////Order Failed Start//////////////////
/////////////////////////////////////////////////*/


:root {
  --of-bg: #f5f7fb;
  --of-card-bg: #ffffff;
  --of-primary: #c62828;
  --of-primary-light: #ffebee;
  --of-text-main: #202124;
  --of-text-muted: #5f6368;
  --of-border: #e0e0e0;
  --of-radius: 12px;
  --of-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}



.of-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.of-card {
  max-width: 540px;
  width: 100%;
  background: var(--of-card-bg);
  border-radius: var(--of-radius);
  box-shadow: var(--of-shadow);
  padding: 28px 24px 24px;
  text-align: center;
  animation: of-card-pop 0.4s ease-out both;
}

/* Icon */
.of-icon-wrapper {
  width: 96px;
  height: 96px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: var(--of-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.of-icon {
  width: 70px;
  height: 70px;
}

.of-circle {
  fill: none;
  stroke: var(--of-primary);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 188;
  stroke-dashoffset: 188;
  animation: of-circle-draw 0.6s ease-out forwards 0.2s;
}

.of-cross-line {
  stroke: var(--of-primary);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 28;
  stroke-dashoffset: 28;
  opacity: 0;
}

.of-cross-line-1 {
  animation: of-cross-draw 0.35s ease-out forwards 0.65s;
}
.of-cross-line-2 {
  animation: of-cross-draw 0.35s ease-out forwards 0.8s;
}

/* Text */
.of-title {
  margin: 8px 0 4px;
  font-size: 1.4rem;
  font-weight: 600;
}

.of-subtitle {
  margin: 0 0 18px;
  font-size: 0.95rem;
  color: var(--of-text-muted);
}

/* Order summary */
.of-order-summary {
  text-align: left;
  border-radius: 10px;
  border: 1px solid var(--of-border);
  padding: 12px 14px;
  margin-bottom: 18px;
  background: #fdfdfd;
}

.of-order-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  font-size: 0.9rem;
  padding: 4px 0;
}

.of-order-row span {
  color: var(--of-text-muted);
}

/* Buttons */
.of-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 8px;
}

.of-btn {
  border-radius: 999px;
  padding: 8px 18px;
  border: none;
  font-size: 0.9rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: transform 0.06s ease, box-shadow 0.12s ease,
    background 0.12s ease;
}

.of-btn-primary {
  background: var(--of-primary);
  color: #fff;
  box-shadow: 0 4px 10px rgba(198, 40, 40, 0.4);
}
.of-btn-primary:hover {
  background: #a61b1b;
}

.of-btn-ghost {
  background: transparent;
  color: var(--of-text-main);
  border: 1px solid var(--of-border);
}
.of-btn-ghost:hover {
  background: #f5f5f5;
}

.of-btn:active {
  transform: translateY(1px);
  box-shadow: none;
}

/* Hint */
.of-hint {
  margin: 4px 0 0;
  font-size: 0.78rem;
  color: var(--of-text-muted);
}

/* Animations */
@keyframes of-circle-draw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes of-cross-draw {
  0% {
    stroke-dashoffset: 28;
    opacity: 0;
  }
  100% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}

/* subtle card shake after icon draws */
@keyframes of-card-pop {
  0% {
    transform: translateY(8px) scale(0.96);
    opacity: 0;
  }
  60% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
  75% {
    transform: translateX(-2px);
  }
  85% {
    transform: translateX(2px);
  }
  100% {
    transform: translateX(0);
  }
}

/* Responsive */
@media (max-width: 600px) {
  .of-card {
    padding: 24px 18px 20px;
  }
  .of-order-summary {
    font-size: 0.88rem;
  }
  .of-actions {
    flex-direction: column;
  }
  .of-btn {
    width: 100%;
  }
}



/* ////////////////////Order Failed End//////////////////
/////////////////////////////////////////////////*/

/* ////////////////////Order Pending Start//////////////////
/////////////////////////////////////////////////*/



:root {
  --op-bg: #f5f7fb;
  --op-card-bg: #ffffff;
  --op-primary: #f9a825;        /* amber */
  --op-primary-light: #fff8e1;
  --op-text-main: #202124;
  --op-text-muted: #5f6368;
  --op-border: #e0e0e0;
  --op-radius: 12px;
  --op-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}


.op-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.op-card {
  max-width: 540px;
  width: 100%;
  background: var(--op-card-bg);
  border-radius: var(--op-radius);
  box-shadow: var(--op-shadow);
  padding: 28px 24px 24px;
  text-align: center;
  animation: op-card-in 0.4s ease-out both;
}

/* Icon wrapper */
.op-icon-wrapper {
  width: 96px;
  height: 96px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: var(--op-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* SVG */
.op-icon {
  width: 70px;
  height: 70px;
}

/* background circle */
.op-circle-bg {
  fill: none;
  stroke: #ffe082;
  stroke-width: 4;
}

/* rotating arc */
.op-circle-arc {
  fill: none;
  stroke: var(--op-primary);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 60 180;
  transform-origin: 40px 40px;
  animation: op-rotate 1.2s linear infinite;
}

/* clock hand */
.op-hand {
  stroke: var(--op-primary);
  stroke-width: 3;
  stroke-linecap: round;
  transform-origin: 40px 40px;
  animation: op-hand-tick 2.4s ease-in-out infinite;
}

/* center dot */
.op-dot {
  fill: var(--op-primary);
  animation: op-dot-pulse 1.4s ease-in-out infinite;
}

/* Text */
.op-title {
  margin: 8px 0 4px;
  font-size: 1.4rem;
  font-weight: 600;
}

.op-subtitle {
  margin: 0 0 18px;
  font-size: 0.95rem;
  color: var(--op-text-muted);
}

/* Order summary */
.op-order-summary {
  text-align: left;
  border-radius: 10px;
  border: 1px solid var(--op-border);
  padding: 12px 14px;
  margin-bottom: 18px;
  background: #fafafa;
}

.op-order-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  font-size: 0.9rem;
  padding: 4px 0;
}

.op-order-row span {
  color: var(--op-text-muted);
}

/* Buttons */
.op-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 8px;
}

.op-btn {
  border-radius: 999px;
  padding: 8px 18px;
  border: none;
  font-size: 0.9rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: transform 0.06s ease, box-shadow 0.12s ease,
    background 0.12s ease;
}

.op-btn-primary {
  background: var(--op-primary);
  color: #fff;
  box-shadow: 0 4px 10px rgba(249, 168, 37, 0.4);
}
.op-btn-primary:hover {
  background: #f09300;
}

.op-btn-ghost {
  background: transparent;
  color: var(--op-text-main);
  border: 1px solid var(--op-border);
}
.op-btn-ghost:hover {
  background: #f5f5f5;
}

.op-btn:active {
  transform: translateY(1px);
  box-shadow: none;
}

/* Hint */
.op-hint {
  margin: 4px 0 0;
  font-size: 0.78rem;
  color: var(--op-text-muted);
}

/* Animations */
@keyframes op-card-in {
  0% {
    transform: translateY(8px) scale(0.97);
    opacity: 0;
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

@keyframes op-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes op-hand-tick {
  0% {
    transform: rotate(-20deg);
  }
  50% {
    transform: rotate(15deg);
  }
  100% {
    transform: rotate(-20deg);
  }
}

@keyframes op-dot-pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.15);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 600px) {
  .op-card {
    padding: 24px 18px 20px;
  }
  .op-order-summary {
    font-size: 0.88rem;
  }
  .op-actions {
    flex-direction: column;
  }
  .op-btn {
    width: 100%;
  }
}


/* ////////////////////Order Pending End//////////////////
/////////////////////////////////////////////////*/


/* ////////////////////FAQs Start//////////////////
/////////////////////////////////////////////////*/

.faq-page {
  max-width: 1040px;
  margin: 0 auto;
  padding: 20px 16px 40px;
}

/* Hero */
.faq-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.faq-hero-text {
  flex: 1.2;
}

.faq-kicker {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--secondary);
  margin: 0 0 4px;
  font-weight: 600;
}

.faq-hero h1 {
  font-size: clamp(1.7rem, 2.2vw, 2rem);
  margin: 0 0 6px;
  color: var(--secondary);
}

.faq-subtitle {
  margin: 0 0 14px;
  color: var(--product-price);
  font-size: 0.95rem;
}

.faq-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.faq-highlight {
  background: var(--secondary-hover);
  border-radius: 999px;
  padding: 6px 12px;
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  border: 1px solid rgba(25, 118, 210, 0.08);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04);
}

.faq-highlight-number {
  font-weight: 600;
  font-size: 0.86rem;
  color: var(--secondary);
}

.faq-highlight-label {
  font-size: 0.76rem;
  color: var(--secondary);
}

/* Hero illustration */
.faq-hero-illustration {
  flex: 0.9;
  min-width: 220px;
  height: 200px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 14px 40px rgba(0, 0, 0, 0.18));
}

.faq-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed var(--product-price);
  animation: faq-orbit-spin 12s linear infinite;
}

.faq-orbit-outer {
  width: 200px;
  height: 200px;
}

.faq-orbit-inner {
  width: 140px;
  height: 140px;
  animation-duration: 16s;
}

.faq-hero-avatar {
  width: 90px;
  height: 90px;
  border-radius: 24px;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.faq-hero-badge {
  font-size: 2rem;
  color: #fff;
}

.faq-hero-floating-card {
  position: absolute;
  right: -8px;
  bottom: 16px;
  background: var(--secondary-hover);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.78rem;
  color: var(--secondary);
  box-shadow: 0 8px 18px var(--product-price);
  animation: faq-float 3.2s ease-in-out infinite;
}

/* Main */
.faq-main {
  animation: faq-main-in 0.3s ease-out both;
}

/* Search */
.faq-search-section {
  margin-bottom: 10px;
}

.faq-search-wrapper {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--secondary-hover);
  border-radius: 6px;
  padding: 6px 10px 6px 12px;
  border: 1px solid var(--secondary-hover);
}

.faq-search-icon {
  font-size: 1rem;
}

#faq-search {
  flex: 1;
  border: none;
  outline: none;
  font-size: 0.9rem;
  padding: 6px 4px;
  background: transparent;
}

.faq-search-clear {
  border: none;
  background: transparent;
  font-size: 0.9rem;
  cursor: pointer;
  border-radius: 50%;
  padding: 2px 6px;
  color: var(--secondary);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--faq-transition-fast),
    background var(--faq-transition-fast);
}

.faq-search-clear.visible {
  opacity: 1;
  pointer-events: auto;
}

.faq-search-clear:hover {
  background: rgba(0, 0, 0, 0.05);
}

.faq-search-meta {
  margin: 4px 4px 0;
  font-size: 0.78rem;
  color: var(--secondary);
}

/* Category chips */
.faq-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 8px;
}

.faq-chip {
  border-radius: 999px;
  border: 1px solid var(--prod-price-old);
  background: rgba(255, 255, 255, 0.9);
  font-size: 0.8rem;
  padding: 6px 10px;
  cursor: pointer;
  color: var(--secondary);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: background var(--faq-transition-fast),
    border-color var(--faq-transition-fast), color var(--faq-transition-fast),
    transform 0.08s ease;
}

.faq-chip:hover {
  background: #f1f3f4;
  transform: translateY(-1px);
}

.faq-chip-active {
  border-color: var(--product-price);
  background: var(--secondary-hover);
  color: var(--secondary);
}

/* FAQ list / accordions */
.faq-list {
  margin-top: 8px;
}

.faq-item {
  background: var(--secondary-hover);
  color: var(--secondary);
  border-radius: 6px;
  margin-bottom: 10px;
  border: 1px solid var(--secondary-hover);
  overflow: hidden;
  transition: box-shadow var(--faq-transition-fast),
    transform var(--faq-transition-fast), border-color var(--faq-transition-fast);
}

.faq-item:hover {
  transform: translateY(-1px);
}

.faq-question {
  width: 100%;
  padding: 12px 14px;
  border: none;
  outline: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  cursor: pointer;
  text-align: left;
  font-size: 0.94rem;
}

.faq-question span:first-child {
  flex: 1;
}

.faq-question-icon {
  font-size: 0.9rem;
  transform-origin: center;
  transition: transform var(--faq-transition-fast), color var(--faq-transition-fast);
  color: var(--secondary);
}

.faq-item.faq-open .faq-question-icon {
  transform: rotate(180deg);
  color: var(--product-price);
}

.faq-answer-wrapper {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out, opacity 0.2s ease-out;
  opacity: 0;
}

.faq-item.faq-open .faq-answer-wrapper {
  opacity: 1;
}

.faq-answer {
  padding: 0 14px 12px;
  font-size: 0.9rem;
  color: var(--secondary);
}

/* Empty state */
.faq-empty {
  margin: 16px 4px 0;
  font-size: 0.9rem;
  color: var(--secondary);
  text-align: center;
}

/* Contact card */
.faq-contact-card {
  margin-top: 20px;
  border-radius: 6px;
  padding: 14px 16px;
  background: var(--secondary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 14px 30px var(--secondary);
}

.faq-contact-text h2 {
  margin: 0 0 4px;
  font-size: 1.1rem;
}

.faq-contact-text p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.95;
}

.faq-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.faq-btn {
  border-radius: 999px;
  padding: 7px 14px;
  border: none;
  font-size: 0.85rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  transition: background var(--faq-transition-fast),
    color var(--faq-transition-fast), transform 0.08s ease,
    box-shadow 0.12s ease;
}

.faq-btn-primary {
  background: #ffffff;
  color: var(--secondary);
  box-shadow: 0 3px 12px rgba(255, 255, 255, 0.35);
}
.faq-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 5px 18px rgba(255, 255, 255, 0.4);
}

.faq-btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(227, 242, 253, 0.65);
}
.faq-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.18);
}

/* Animations */
@keyframes faq-main-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes faq-orbit-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes faq-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .faq-hero {
    flex-direction: column;
    align-items: flex-start;
  }
  .faq-hero-illustration {
    align-self: center;
    order: -1;
  }
}

@media (max-width: 600px) {
  .faq-page {
    padding-top: 16px;
  }
  .faq-contact-card {
    flex-direction: column;
    align-items: flex-start;
  }
  .faq-contact-actions {
    width: 100%;
  }
  .faq-btn {
    flex: 1;
    justify-content: center;
  }
}


/* ////////////////////FAQs End//////////////////
/////////////////////////////////////////////////*/


/* ////////////////////404 Start//////////////////
/////////////////////////////////////////////////*/


:root {
  --nf-bg: #040b1a;
  --nf-gradient-1: #0b132b;
  --nf-gradient-2: #1c2541;
  --nf-neon-blue: #4cc9f0;
  --nf-neon-purple: #7209b7;
  --nf-muted: #b3b9c5;
  --nf-white: #ffffff;
  --nf-radius: 14px;
  --nf-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}




/* Container */
.nf-container {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Canvas for particles */
#nf-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* Main content */
.nf-content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px;
}

/* 404 digits */
.nf-404-wrapper {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}

.digit {
  font-size: clamp(6rem, 20vw, 14rem);
  font-weight: 800;
  line-height: 1;
  user-select: none;
  letter-spacing: -0.04em;

  background: linear-gradient(135deg, var(--nf-neon-purple), var(--nf-neon-blue));
  background-clip: text;
  color: transparent;

  filter: drop-shadow(0 10px 30px rgba(114, 9, 183, 0.4))
          drop-shadow(0 8px 20px rgba(76, 201, 240, 0.4));

  animation: floatDigit 4s ease-in-out infinite;
}

.digit:nth-child(2) {
  animation-delay: 0.5s;
}

/* Floating digits animation */
@keyframes floatDigit {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* Title */
.nf-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 6px;
  text-shadow: 0 2px 20px rgba(76, 201, 240, 0.4);
}

.nf-subtitle {
  color: var(--nf-muted);
  font-size: 0.98rem;
  margin-bottom: 22px;
  line-height: 1.5;
}

/* Buttons */
.nf-actions {
  display: flex;
  gap: 12px;
}

.nf-btn {
  padding: 10px 22px;
  border: none;
  border-radius: 999px;
  font-size: 0.95rem;
  cursor: pointer;
  transition: 0.15s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.nf-btn-primary {
  background: linear-gradient(135deg, var(--nf-neon-purple), var(--nf-neon-blue));
  color: #fff;
}
.nf-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(76, 201, 240, 0.5);
}

.nf-btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
}
.nf-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* Responsive */
@media (max-width: 600px) {
  .nf-actions {
    flex-direction: column;
    width: 100%;
  }
  .nf-btn {
    width: 100%;
  }
}


/* ////////////////////404 End//////////////////
/////////////////////////////////////////////////*/