    @import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    font-family: "Montserrat", sans-serif;
    }
      :root {
      --primary-color: #2ecc71;
      --secondary-color: #27ae60;
      --btn-color: #035c28;
      --yellow-color: #d7df21;
      --text-color: #333;
      --light-bg: #f9f9f9;
      --white: #ffffff;
      --border-color: #e0e0e0;
      --bg:#0f1724;
      --card:#0b1220;
      --accent:#6ee7b7;
      --muted:#94a3b8;
      --glass: rgba(255,255,255,0.04);
      --glass-2: rgba(255,255,255,0.02);
      --success:#10b981;
      --danger:#ef4444;
      --card-radius:16px;
      --shadow: 0 8px 30px rgba(2,6,23,0.6);
    }
    body {
    margin: 10px;
    font-size: 14px;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    height: 100%;
    overflow: hidden;
    background-color:#fff;
    }
    .body-con{
        position: fixed;
        height: 100%;
        display: grid;
        place-items: center;
        color: var(--btn-color);
        place-content: center;
    }
    .body-home{
        width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    }
    .app-title{
      width: 100%;
      text-align: center;
    }
    .app-name{
        font-size: 2.5rem;
        font-weight: bold;
        color: #2ecc71;
    }
    .app-slogan{
        font-style: initial;
        color: #555;
        margin-top: 10px;
    }

.loader {
    color: #2ecc71;
    width: 4px;
    aspect-ratio: 1;
    position: fixed;
    left: 40%;
    bottom: 100px;
    transform: translateX(-50%);
    border-radius: 50%;
    box-shadow: 19px 0 0 7px, 38px 0 0 3px, 57px 0 0 0;
    animation: l21 .5s infinite alternate linear;
    z-index: 1200;
}

@keyframes l21 {
  50%  {box-shadow: 19px 0 0 3px, 38px 0 0 7px, 57px 0 0 3px}
  100% {box-shadow: 19px 0 0 0  , 38px 0 0 3px, 57px 0 0 7px}
}

    /* Sidebar */
    .sidebar {
      position: fixed;
      top: 0;
      left: -260px;
      width: 250px;
      height: 100%;
      background-color: var(--light-bg);
      padding-top: 60px;
      transition: left 0.3s ease;
      z-index: 1000;
    }

    .sidebar.active {
      left: 0;
    }

    .sidebar a {
      display: block;
      color: #035c28;
      padding: 15px 20px;
      text-decoration: none;
    }

    .sidebar a:hover {
      background-color: var(--light-bg);
      color: #2c3e50;
    }

  
    /* Overlay */
    .overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.4);
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s ease;
      z-index: 900;
    }

    .overlay.active {
      opacity: 1;
      visibility: visible;
    }

    /* Hamburger Button */
    .hamburger {
      position: fixed;
      top: 15px;
      left: 15px;
      font-size: 28px;
      color: #035c28;
      cursor: pointer;
      z-index: 1100;
    }

    /* Main Content */
   .main-content {
  position: relative;
  width: 100%;
}

    .col-head{
        display: flex;
        color: #035c28;
        padding: 10px;

    }
    .sidebar-icon-text svg{
        width: 50px;
        height: 50px;
        color: #035c28;
    }
    .head{
        margin-top: 0px;
        font-size: 1.1rem;
        color: #035c28;
        font-weight: bold;
    }
    .col-head-text{
        width: 100%;
        display: flex;
        justify-content: space-between;
    }
    .notification-icon {
  position: relative;
  display: inline-block;
}
.notification-icon a{
    color: #035c28;
    text-decoration: none;
    font-size: 30px;
}
.notification-icon a span{
    font-size: 30px;
}

.red-dot {
  position: absolute;
  top: 0;
  right: 0;
  width: 10px;
  height: 10px;
  background-color: var(--yellow-color);
  border-radius: 50%;
  transform: translate(50%, -50%);
}
    .head-back-text{
        padding: 5px 0;
        font-size: 1.2rem;
        color: #fff;
        font-weight: bold;
    }
    .head-back{
        display: flex;
        place-items: center;
        cursor: pointer;
    }
    .sidebar-icon-text-back svg{
        width: 15px;
        height: 15px;
        color: #035c28;
        margin-right: 10px;
    }
    .sub-head{
        margin-top: 10px;
        font-size: 12px;
        color: #035c28;
    }
    .search-col{
        width: 100%;
        padding-bottom: 20px;
    }
    .filter-search{
        width: 100%;
        padding: 10px;
        background-color: #fff;
        border: 1px solid #ccc;
        border-radius: 30px;
        display: flex;
        align-items: center;
        place-content: center;
        place-items: center;
        

    }
    .topbar-search-bar{
        width: 100%;
        height: 30px;
        background-color: #fff;
        display: flex;
        
        
    }
    .topbar-search-bar input{
        width: 100%;
        height: 100%;
        border: none;
        background-color: transparent;
        outline: none;
        font-size: 16px;
    }
    .content-col{
        width: 100%;
        height: calc(100vh - 60px);
        padding: 10px;
        padding-bottom: 150px;
        overflow: scroll;
        }
        .lost-card {
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            width: calc(50% - 8px);
            height: 190px;
            overflow: hidden;
            transition: 0.3s ease;
        }

      

    .lost-card img {
      width: 100%;
      height: 100px;
      object-fit: cover;
    }

    .lost-card-content {
      font-size: 13px;
      padding: 10px;

    }
    .lost-card-content .status-value{
      font-size: 10px;
    }

    .lost-card h3 {
      font-size: 13px;
      color: #2c3e50;
    }

    .lost-card .price {
      font-size: 18px;
      color: var(--btn-color);
      font-weight: bold;
    }

    .lost-meta {
    display: flex;
      font-size: 9px;
      color: #777;
    }
    .lost-meta-item{
      width: 100%;
        display: flex;
        justify-content: space-between;
    }
    .lost-meta-item .material-symbols-outlined{
        font-size: 12px;
    }
    .lost-meta-item span{
        font-size: 8px;
    }

    .report-btn {
      margin-top: 12px;
      display: inline-block;
      padding: 10px 14px;
      background: #e74c3c;
      color: #fff;
      text-decoration: none;
      border-radius: 6px;
      font-weight: bold;
      transition: background 0.2s ease;
    }

    .report-btn:hover {
      background: #c0392b;
    }
    @media (min-width: 768px) {
      .sidebar {
        left: -260px; /* Keep hidden even on desktop for overlay mode */
      }

      .hamburger {
        display: block;
      }
    }
        .fab-container {
      position: fixed;
      bottom: 30px;
      right: 30px;
      z-index: 1000;
    }

    .fab {
      width: 64px;
      height: 64px;
      background: #2c3e50;
      color: #fff;
      font-size: 32px;
      border: none;
      border-radius: 50%;
      cursor: pointer;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.3s ease;
    }

    .fab:hover {
      transform: scale(1.1);
    }
 .form-container {
      background: #fff;
      border-radius: 10px;
      padding: 50px 20px 50px 20px;
      max-width: 400px;
      width: 100%;
      display: block;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .form-container h2 {
      margin-bottom: 16px;
      text-align: center;
      color: #333;
    }

    .drop-area {
      width: 100%;  
      height: 300px;
      border: none;
      background-color: #ebebeb;
      border-radius: 8px;
      text-align: center;
      cursor: pointer;
      transition: background 0.3s;
      margin-bottom: 15px;
      position: relative;
    }

    .drop-area:hover {
      background: #f0f0f0;
    }

    .drop-area input[type="file"] {
      display: none;
    }

    .drop-area img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      margin-bottom: 10px;
      display: none;
      position: absolute;
      top: 0;
      left: 0;
      border-radius: 8px 8px 0 0;
      z-index: 1;
    }
    .drop-area p {
      position: absolute;
      bottom: 10px;
      left: 0;
      width: 100%;
      z-index: 2;
      margin: 0;
    }

    input {
      width: 100%;
      height: 50px;
      padding: 10px;
      margin-bottom: 12px;
      background-color: #ebebeb;
      border-radius:30px;
      border: none;
      outline: none;
      font-size: 14px;
    }
    textarea{
        width: 100%;
        height: 100px;
        padding: 10px;
        margin-bottom: 12px;
        background-color: #ebebeb;
        border-radius: 15px;
        border: none;
      outline: none;
        font-size: 14px;
    }

    button {
      width: 100%;
      height: 50px;
      background: #2c3e50;
      color: #fff;
      border: none;
      padding: 12px;
      border-radius: 30px;
      font-size: 16px;
      cursor: pointer;
    }

    button:hover {
       background: #2c3e50;
    }
    .text-add{
        width: 100%;
        height: 100%;
        font-size: 14px;
        color: #777;
        place-content: center;
        margin-top: 10px;
    }
    
    .profile-card {
      background: #fff;
      border-radius: 16px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      padding: 50px 20px 50px 20px;
      max-width: 500px;
      width: 100%;
    }

    .profile-header {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1.5rem;
    }

    .profile-avatar {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      object-fit: cover;
      border: 2px solid #2c3e50;
    }

    .profile-name {
      font-size: 1.5rem;
      font-weight: 600;
      color: #333;
    }

    .profile-role {
      font-size: 0.95rem;
      color: #666;
    }

    .profile-section {
      margin-bottom: 1rem;
    }

    .profile-section h4 {
      margin-bottom: 0.5rem;
      font-size: 1rem;
      color: #444;
    }

    .profile-section p {
      font-size: 0.95rem;
      color: #555;
      line-height: 1.4;
    }

    .profile-actions {
      margin-top: 1.5rem;
      text-align: right;
    }

    .edit-btn {
      width: 100%;
      height: 50px;
      background: #2c3e50;
      color: #fff;
      border: none;
      padding: 12px;
      border-radius: 30px;
      font-size: 16px;
      cursor: pointer;
    }

    .edit-btn:hover {
       background: #2c3e50;
    }

    @media (max-width: 600px) {
      .profile-header {
        flex-direction: column;
        text-align: center;
      }

      .profile-actions {
        text-align: center;
      }
    }
      .notification {
      position: relative;
      background: #fff;
      padding: 1rem 1.5rem;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      margin-bottom: 1rem;
      transition: all 0.3s ease;
      max-width: 600px;
    }

    .notification-title {
      width: 100%;
      display: flex;
      justify-content: space-between;  
      margin-top: 20px;
      font-size: 1.1rem;
      color: #333;
    }
.noti-col-title{
        font-weight: bold;
        color: #000;
}
.noti-col-date{
        font-weight: regular;
        color: #555;
        font-size: 12px;
}
    .notification-body {
      margin-top: 0.4rem;
      font-size: 0.95rem;
      color: #555;
    }

    .close-btn {
      position: absolute;
      top: 12px;
      right: 16px;
      font-size: 2.5rem;
      color: #888;
      background: transparent;
      border: none;
      cursor: pointer;
      transition: color 0.2s;
    }

    .close-btn:hover {
      color: #cc0000;
    }

    .notification.hide {
      opacity: 0;
      transform: translateY(-10px);
      pointer-events: none;
    }
.col-wallet
{
        font-family: Arial, sans-serif;
        display: flex;
        justify-content: center;
}
.wallet-card {
  position: relative;
  width: 100%;
  background-image: url(../img/bg.jpg);
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  border: 1px solid #e3e3e3;
  overflow: hidden;
}

.wallet-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #008000e5; /* green overlay */
  border-radius: inherit;
  pointer-events: none;
}

.wallet-card > * {
  position: relative;
  z-index: 1;
}

    .top-section {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo {
        font-size: 18px;
        font-weight: bold;
        color: #fff;
    }

    .balance-label {
        font-size: 12px;
        color: #fff;
        text-align: right;
    }

    .balance {
        font-size: 22px;
        font-weight: bold;
        color: #fff;
        text-align: right;
    }
    .card-details{
      width: 100%;
    display: flex;
    margin-top: 40px;
    place-items: center;
    justify-content: space-between;
    }

    .card-holder {
        margin-top: 20px;
        font-size: 12px;
        color: #fff;
    }

    .expire, .expire-label {
        margin-top: 10px;
        font-size: 12px;
        color: #fff;
    }
    .expire-date, .card-holder-name{
        font-weight: bold;
        color: #fff;
        font-weight: bold;
        font-size: 16px;
    }
    .category-wrapper{
    max-width:980px;
    margin-top: 10px;
  }

  .cat-row {
  display: flex;
  overflow-x: auto;
  gap: 16px;
  width: 100%;
  justify-content: space-between;
}

.cat {
  flex: 0 0 auto;   /* important for scroll */
  width: 70px;  
  display: grid;
  justify-items: center;
      /* should match your design */
}


  /* circle icon */
  .cat-btn{
    width:64px;
    height:64px;
    border-radius:50%;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background-color: var(--glass);
    color: var(--btn-color);
    box-shadow: 0 2px 6px rgba(16,24,40,0.04);
    transition: transform .12s ease, box-shadow .12s ease, border-color .12s;
    cursor:pointer;
    outline: none;
  }
.con_svg{
    width:32px;
    height:32px;
}
  .cat-btn:active { transform: scale(.98); }
  .cat-btn:focus{
    box-shadow: 0 6px 18px rgba(46,125,50,0.18);
    border-color: var(--accent);
  }

  /* selected state */
  .cat-btn.selected{
    border-color: var(--accent);
    background: linear-gradient(180deg, rgba(46,125,50,0.06), rgba(46,125,50,0.02));
  }

  /* label under icon */
  .cat-label{
    margin-top:8px;
    font-size:12px;
    color:var(--muted);
    line-height:1.1;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
  }

  /* hide default scrollbar (WebKit) but keep scrolling */
  .cat-row::-webkit-scrollbar { height:8px; }
  .cat-row::-webkit-scrollbar-track { background:transparent; }
  .cat-row::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.08); border-radius:999px; }

  /* responsive: more items visible on wide screens */
  @media (min-width:640px){
        body {
    margin: 10px;
    font-size: 14px;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    height: 100%;
    width: 100%;
    padding: 20px;
    overflow: hidden;
    background-color:#fff;
    }
    .body-con{
      margin: 10px;
        position: fixed;
        height: 100%;
        place-items: center;
        color: #fff;
        place-content: center;
    }
    .cat { width:110px; }
    .cat-btn{ width:72px; height:72px; }
  }

  /* small accessible hint for screen readers only */
  .sr-only{
    position:absolute!important;
    height:1px;width:1px;
    overflow:hidden;
    clip:rect(1px,1px,1px,1px);
    white-space:nowrap;
  }
  .explore_con{
    width: 100%;
    margin-top: 20px;
    
  }
  .explore_text{
    font-size: 17px;
    font-weight: bold;
    color: #acacac;
    margin-bottom: 15px;
    margin-top: 15px;
  }
  .con-explore_1{
     display: flex;
  flex-wrap: wrap;
  gap: 16px;
 
  }
  .product_link{
    text-decoration: none;
    color: #2ecc71;
  }
  .summery-col{
    height: fit-content;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 10px;
    justify-items: center;
    place-content: center;
    place-items: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  }
  .total-order-circle{
    width: 30%;
    height: 100%;
   
    justify-content: center;
    align-items: center;
    justify-items: center;
    color: #fff;
    font-size: 30px;
    font-weight: bold;
  }
  .summery-card-col{
    width: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .summery-card-circle{
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #2ecc71;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
  .summery-card-title{
    font-size: 9px;
    color: #a3a2a2;
    font-weight: lighter;
    margin-top: 10px;
  }
  .summery-card-subhead{
    font-size: 8px;
    color: #a3a2a2;
    font-weight: lighter;
  }
  .subtitle{
    font-size: 10px;
    color: #a3a2a2;
    margin-top: -10px;
    font-weight: lighter;
  }
  .container-summery{
    width: 70%;
    display: block;

  }
  .summery-card{
    display: flex;
    font-size: 20px;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    padding: 5px;
    border-radius: 5px;
  }
  .summery-card-icon{
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    color: #fff;
    border-radius: 5px;
    background-color: #27ae60;
  }
  .con-suma{
    width: 100%;
    display: flex;
    gap: 16px;
    padding: 10px;
    place-content: center;
    justify-content: center;
    justify-content: space-between;
  }
  .summery-card-head{
    font-size: 12px;
    font-weight: lighter;
    color: #333;
  }
  .card-figure{
    font-size: 16px;
    font-weight: bold;
    color: #2ecc71;
  }
.summery-card-amount{
    font-size: 13px;
    font-weight: bold;
    color: #035c28;
}
.add-product-btn a{
  width: 100%;
    background-color: #2ecc71;
    color: #fff;
    text-decoration: none;
    padding: 12px 20px;
    display: grid;
    place-items: center;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease;
  }

  .add-product-btn a:hover {
    background-color: #27ae60;
  }


/* Mobile Friendly */
@media (max-width: 600px) {
  .fab {
    width: 65px;
    height: 65px;
    font-size: 35px;
  }
}
  .card-container {
            width: 100%;
            border-radius: 0px;
            overflow: hidden;
        }
        .buy-container {
            width: 100%;
            display: flex;
            gap: 16px;
            padding: 10px;
            margin-top: 20px;
            place-content: center;
            justify-content: center;
            justify-content: space-between;
        }
.purchases-card {
  background: #fff;
  border-radius: 14px;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.card-header h3 {
  font-size: 16px;
  font-weight: 600;
}

.view-all {
  font-size: 13px;
  color: #4CAF50;
  text-decoration: none;
}

.purchase-item {
  display: flex;
  align-items: center;
  padding: 12px 0;
  border-top: 1px solid #eee;
}

.purchase-item:first-child {
  border-top: none;
}

.purchase-item img {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
  margin-right: 12px;
}

.item-info h4 {
  font-size: 14px;
  font-weight: 600;
}

.item-info p {
  font-size: 12px;
  color: #777;
}

.item-meta {
  margin-left: auto;
  text-align: right;
}

.price {
  display: block;
}

.status {
  font-size: 11px;
  border-radius: 12px;
  margin-top: 4px;
  display: inline-block;
}

.status.completed {
  background: #e8f5e9;
  color: #4CAF50;
}