* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins";
}
body {
  background: #f3f4f6;
}

html, body{
  width: 100%;
  overflow-x: hidden;
}

header {
  display: flex;
  justify-content: space-between;
  padding: 15px 40px;
  background: #fff;
}

/* HEADER */
.header {
  position: sticky;
  top: 0;
  z-index: 999;
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,0.8);
  max-width: 1100px;
  margin: auto;
  align-items: center;
  padding: 10px 20px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* LEFT */
.header-left {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.logo-img {
  height: 100px;
  width: auto;
  object-fit: contain;
  border-radius: 8px;
}

/* TEXT */
.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name{
  font-weight: 600;
  font-size: 16px;
  color: #e11d48;
}

.brand-subname {
  font-weight: 600;
  font-size: 16px;
  color: #16a34a;
}

.brand-tagline {
  font-size: 12px;
  color: #777;
}

.logo span:first-child {
  color: #e11d48;
}
.logo span:last-child {
  color: #16a34a;
}

.cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 20px;
  background: #f5f5f5;
  text-decoration: none;
  color: #111;
  transition: 0.3s;
}

.cart-btn:hover {
  background: #e0e0e0;
}

/* BADGE */
.cart-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: #ff3d00;
  color: #fff;
  font-size: 10px;
  padding: 3px 6px;
  border-radius: 50%;
}

/* ICON */
.cart-icon {
  font-size: 16px;
}

.hero {
  min-height: 80vh;
  background: url(https://i.postimg.cc/gr9BLTxz/main.webp);
  color: chocolate;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-content {
  text-align: center;
}
.hero-content h1 span {
  color: #16a34a;
}
.hero-content h1 {
  font-size: clamp(22px, 5vw, 48px);
  margin-bottom: 20px;
  color: #e11d48;
}
.hero-content p {
  font-size: clamp(14px, 3vw, 18px);
  margin-bottom: 10px;
}
.cards {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.card {
  background: #fff;
  color: #000;
  border-radius: 12px;
  overflow: hidden;
  
}
.card img {
  width: 300px;
  height: 200px;
  object-fit: cover;
}
.card-header {
  padding: 15px;
  color: #fff;
}
.supermarket {
  background:
    linear-gradient(
      135deg,
      #0f172a 0%,
      #1e3a8a 35%,
      #2563eb 70%,
      #38bdf8 100%
    );
}
.grocery {
   background:
    linear-gradient(
      135deg,
      #1b5e20 0%,
      #2e7d32 30%,
      #558b2f 65%,
      #f9a825 100%
    );
}
.cafe {
  background:
    linear-gradient(
      135deg,
      #2b1d14 0%,
      #4b2e22 35%,
      #6f4e37 70%,
      #a67b5b 100%
    );
}
.card-body {
  padding: 15px;
  text-align: center;
}

.btn {
  padding: 10px;
  width: 100%;
  border: none;
  color: #fff;
  border-radius: 6px;
  cursor: pointer;
}
.btn-green {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border: none;
  outline: none;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
   cursor: pointer;
  overflow: hidden;
  transition: all 0.35s ease;
  box-shadow: 0 10px 25px rgba(255, 85, 0, 0.35);
  background:
    linear-gradient(
      135deg,
      #0f172a 0%,
      #1e3a8a 35%,
      #2563eb 70%,
      #38bdf8 100%
    );
  color: #fff;
}
.btn-brown {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border: none;
  outline: none;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
   cursor: pointer;
  overflow: hidden;
  transition: all 0.35s ease;
  box-shadow: 0 10px 25px rgba(255, 85, 0, 0.35);
   background:
    linear-gradient(
      135deg,
      #1b5e20 0%,
      #2e7d32 30%,
      #558b2f 65%,
      #f9a825 100%
    );
  color: #fff;
}
.btn-dark {
    
    background:
    linear-gradient(
      135deg,
      #2b1d14 0%,
      #4b2e22 35%,
      #6f4e37 70%,
      #a67b5b 100%
  );
  
}

.store {
  width: 100%;
  padding: 20px;
}

@media(max-width:768px){

  .store{
    width: 100%;
    padding: 10px;
  }

  #storeSection{
    width: 100%;
  }

  .products{
    width: 100%;
    padding: 0;
    gap: 10px;
    grid-template-columns: repeat(2, 1fr);
  }

  .product{
    width: 100%;
    min-width: 0;
  }

}

.hidden {
  display: none !important;
}
.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
  padding: 10px;
}
.product {
  background: #fff;
  padding: 12px;
  border-radius: 10px;
  width: 100%;
}
.product img {
    height: 150px;
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.cartRow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 8px 0;
}
.qtyBtn {
  padding: 2px 8px;
  margin: 0 4px;
}
.removeBtn {
  background: red;
  color: #fff;
  border: none;
  padding: 4px 8px;
}

.categories button{
  position: relative;
  padding: 10px 18px;
  margin: 6px;

  border: none;
  border-radius: 18px;

  /* Kirana Gradient */
  background: linear-gradient(
    135deg,
    #1b5e20 0%,
    #2e7d32 30%,
    #558b2f 65%,
    #f9a825 100%
  );

  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;

  cursor: pointer;
  overflow: hidden;

  transition: all 0.3s ease;

  box-shadow:
    0 6px 18px rgba(27,94,32,0.28),
    inset 0 1px 1px rgba(255,255,255,0.18);
}

/* Hover */
.categories button:hover{
  transform: translateY(-3px);

  box-shadow:
    0 10px 24px rgba(27,94,32,0.38),
    inset 0 1px 1px rgba(255,255,255,0.22);
}

/* Click */
.categories button:active{
  transform: scale(0.96);
}

/* Shine Effect */
.categories button::before{
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 70%;
  height: 100%;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.35),
    transparent
  );

  transform: skewX(-25deg);
  transition: 0.7s;
}

.categories button:hover::before{
  left: 150%;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-content {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  width: 300px;
  max-height: 85vh;
  overflow-y: auto;
}
.modal-content.large {
  width: 500px;
  max-height: 80vh;
  overflow: auto;
}
.modal input {
  width: 100%;
  margin: 5px 0;
  padding: 8px;
}

/* FOOTER BASE */
.footer{
  background: #0f172a;
  color: #e5e7eb;
  padding: 40px 20px 20px;
  font-family: 'Poppins', sans-serif;
}

/* CONTAINER */
.footer-container{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 25px;
  max-width: 1100px;
  margin: auto;
  padding: 0 10px;
}

/* COLUMN */
.footer-col h2{
  color: #22c55e;
  margin-bottom: 10px;
}

.footer-col h4{
  margin-bottom: 10px;
  font-size: 15px;
  color: #fff;
}

/* TEXT */
.footer-col p{
  font-size: 13px;
  color: #cbd5e1;
  margin: 5px 0;
}

/* LINKS */
.footer-col ul{
  list-style: none;
  padding: 0;
}

.footer-col ul li{
  font-size: 13px;
  margin: 6px 0;
  cursor: pointer;
  transition: 0.2s;
}

.footer-col ul li:hover{
  color: #22c55e;
}

/* SOCIAL */
.socials span{
  font-size: 20px;
  margin-right: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.socials span:hover{
  transform: scale(1.2);
  color: #22c55e;
}

/* SOCIAL ICONS */
.socials a{
  display: inline-block;
  margin-right: 10px;
  font-size: 18px;
  color: #cbd5e1;
  transition: 0.3s;
}

.socials a:hover{
  color: #22c55e;
  transform: scale(1.2);
}

/* FLOAT BUTTON */
.whatsapp-float{
  position: fixed;
  bottom: 90px;
  right: 15px;
  background: #25d366;
  color: #fff;
  border-radius: 30px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  z-index: 9999;
  transition: 0.3s;
}

/* ICON */
.whatsapp-float i{
  font-size: 18px;
}

/* HOVER */
.whatsapp-float:hover{
  transform: scale(1.08);
  background: #1ebe5d;
}

/* MOBILE */
@media(max-width:768px){
  .whatsapp-float span{
    display: none;
  }

  .whatsapp-float{
    bottom: 85px;
    right: 12px;
    transform: scale(0.95);
  }
}

/* BOTTOM */
.footer-bottom{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 25px;
  padding-top: 12px;
  border-top: 1px solid #1e293b;
  font-size: 12px;
  color: #94a3b8;
}

/* LEFT TEXT */
.footer-copy{
  opacity: 0.8;
}

/* RIGHT CREDIT */
.footer-credit a{
  color: #22c55e;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.footer-credit a:hover{
  color: #4ade80;
  text-decoration: underline;
}

.hire-tag{
  margin-left: 5px;
  font-size: 11px;
  color: #22c55e;
}

/* MOBILE */
@media(max-width:768px){
  .footer-bottom{
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }
}

#ordersSection {
  max-height: 60vh;
  overflow-y: auto;
}
#ordersList {
  max-height: 400px;
  opacity: auto;
  padding-right: 5px;
}

#ordersList::-webkit-scrollbar {
  width: 6px;
}

#ordersList::-webkit-scrollbar-thumb {
  background-color: #888;
  border-radius: 10px;
}

#adminTrigger {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 60px;
  height: 60px;
  z-index: 9999;
}

.zoomImg {
  width: 100%;
  max-height: 350px;
  object-fit: contain;
  transition: transform 0.3s;
  cursor: zoom-in;
}

.zoomImg:hover {
  transform: scale(1.5);
}

.slider{
  position: relative;
  text-align: center;
}

.slider img{
  width: 100%;
  max-height: 350px;
  object-fit: contain;
}

.nav{
  position: absolute;
  top: 45%;
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  padding: 8px;
  cursor: pointer;
}

.prev{ left: 0; }
.next{ right: 0; }

#thumbs img{
  width: 60px;
  margin: 4px;
  cursor: pointer;
}

.imgContainer{
  position:relative;
  overflow:hidden;
}

.zoomImg{
  width:100%;
  max-height:420px;
  object-fit:contain;
  cursor:zoom-in;
}

#lens{
  position:absolute;
  width:120px;
  height:120px;
  border:2px solid #000;
  display:none;
  pointer-events:none;
  background-repeat:no-repeat;
}

/* fullscreen viewer */
#fullScreenViewer{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:#000;
  display:flex;
  justify-content:center;
  align-items:center;
  z-index:9999;
}

#fullScreenViewer img{
  max-width:95%;
  max-height:95%;
}

#fullScreenViewer span{
  position:absolute;
  top:20px;
  right:30px;
  color:white;
  font-size:30px;
  cursor:pointer;
}

.hidden{
  display:none;
}

#productManagerSection {
  max-height: 70vh;
  overflow-y: auto;
}

#productManagerList {
  max-height: 60vh;
  overflow-y: auto;
}

#searchResults{
  position: relative;
  z-index: 9999;
  background: white;
}

.trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 40px 20px;
  background: #fafafa;
  text-align: center;
}

.trust-box {
  padding: 10px;
}

/* ICON */
.trust-box span {
  font-size: 28px;
  display: block;
  margin-bottom: 8px;
}

/* TITLE */
.trust-box b {
  display: block;
  font-size: 14px;
}

/* TEXT */
.trust-box p {
  font-size: 12px;
  color: #555;
}

/* =========================
   📱 MOBILE (max 768px)
========================= */
@media (max-width: 768px){

  /* HEADER */
  .header{
    padding: 8px 10px;
  }

  .brand-name,
  .brand-subname{
    font-size: 14px;
  }

  .brand-tagline{
    font-size: 10px;
  }

  .logo-img{
    height: 95px;
  }

  /* HERO */
  .hero-content h1{
    font-size: clamp(22px, 5vw, 48px);
  }

  .hero-content p{
    font-size: clamp(14px, 3vw, 18px);
  }

  /* CARDS */
  .cards{
    flex-direction: column;
    align-items: center;
  }

  .card img{
    width: 100%;
    height: 180px;
  }

  .card{
    width: 90%;
  }

  /* PRODUCTS */
    .products{
      display: grid;
      grid-template-columns: repeat(4, 1fr);

    gap: 20px;
    padding: 20px;
    }

  /* Tablet */
@media(max-width:992px){
  .products{
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobile */
@media(max-width:768px){
  .products{
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Small Mobile */
@media(max-width:480px){
  .products{
    grid-template-columns: 1fr;
  }
}

  .products button{
  width: 100%;
  padding: 12px 24px;

  border: none;
  outline: none;
  border-radius: 14px;

  background: linear-gradient(
    135deg,
    #2b1d14 0%,
    #4b2e22 35%,
    #6f4e37 70%,
    #a67b5b 100%
  );

  color: #fff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;

  transition: all 0.3s ease;

  box-shadow:
    0 8px 20px rgba(43, 29, 20, 0.35),
    inset 0 1px 1px rgba(255,255,255,0.15);
}


  .product{
    width: 100%;
    padding: 10px;
  border-radius: 10px;
  }

  /* MODAL */
  .modal-content{
    width: min(90%, 400px);
  }

  /* TRUST SECTION */
  .trust{
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 25px 10px;
  }

  .trust-box span{
    font-size: 24px;
  }

}


/* =========================
   📱 SMALL MOBILE (max 480px)
========================= */
@media (max-width: 480px){

  /* HEADER STACK */
  .header{
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .nav-links{
    width: 100%;
    display: flex;
    justify-content: space-between;
  }

  /* HERO */
  .hero-content h1{
    font-size: clamp(22px, 5vw, 48px);
  }

  /* PRODUCTS */
  .products{
    grid-template-columns: 1fr;
  }

  /* TRUST */
  .trust{
    grid-template-columns: 1fr;
  }

}


/* =========================
   💻 TABLET (768 - 1024px)
========================= */
@media (min-width: 769px) and (max-width: 1024px){

  .products{
    grid-template-columns: repeat(3, 1fr);
  }

  .trust{
    grid-template-columns: repeat(2, 1fr);
  }

  .card img{
    width: 260px;
    height: 180px;
  }

}

/* =========================
   CART MODAL FIX
========================= */

/* MOBILE FULL SCREEN MODAL */
@media (max-width: 768px){

  .modal{
    align-items: flex-end;
  }

  .modal-content{
    width: 100%;
    height: 90vh;
    border-radius: 16px 16px 0 0;
    padding: 15px;
    overflow-y: auto;
  }

  /* INPUTS */
  .modal-content input,
  .modal-content textarea{
    width: 100%;
    padding: 12px;
    font-size: 14px;
    border-radius: 10px;
    border: 1px solid #ddd;
    margin-bottom: 10px;
  }

  /* BUTTON */
  .modal-content button{
    width: 100%;
    padding: 12px;
    font-size: 15px;
    border-radius: 10px;
  }

  /* MAP FIX */
  #map{
    height: 200px !important;
    width: 100%;
    border-radius: 10px;
    margin-top: 10px;
  }

  /* STATUS TEXT */
  #locationStatus{
    font-size: 12px;
    margin-bottom: 8px;
  }

  /* TOTAL TEXT */
  .modal-content h4{
    font-size: 16px;
    margin-bottom: 10px;
  }

}


/* =========================
   EXTRA SMALL DEVICES
========================= */
@media (max-width: 400px){

  .modal-content{
    height: 95vh;
    padding: 12px;
  }

  .modal-content h3{
    font-size: 16px;
  }

  .modal-content h4{
    font-size: 14px;
  }

}

/* MY ORDERS MODAL */
#myOrdersModal .modal-content{
  width: 95%;
  max-width: 400px;
  max-height: 80vh;
  overflow-y: auto;
  border-radius: 16px;
}

/* ORDER CARD */
.order-card{
  background: #fff;
  padding: 12px;
  margin-bottom: 10px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

/* TOP ROW */
.order-top{
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 6px;
}

/* ITEMS */
.order-mid{
  font-size: 13px;
  color: #555;
}

/* DATE */
.order-date{
  font-size: 11px;
  color: #888;
  margin-top: 5px;
}

/* ITEMS LIST */
.order-items{
  margin-top: 6px;
  padding-top: 6px;
  border-top: 1px dashed #ddd;
}

/* SINGLE ITEM */
.order-item{
  font-size: 13px;
  color: #333;
  margin-bottom: 3px;
}

/* HEADER RIGHT ALIGN */
.header-right{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
}

/* MY ORDERS BUTTON */
.orders-btn{
  background: linear-gradient(135deg, #6366f1, #4f46e5);
  color: #fff;
  border: none;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
  cursor: pointer;
  transition: 0.3s;
}

/* HOVER EFFECT */
.orders-btn:hover{
  transform: scale(1.05);
  box-shadow: 0 3px 10px rgba(99,102,241,0.4);
}

/* MOBILE FIX */
@media(max-width:768px){
  .orders-btn{
    font-size: 12px;
    padding: 4px 8px;
  }
}

/* LOGOUT BUTTON */
.logout-btn{
  background: #ef4444;
  color: #fff;
  border: none;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
  cursor: pointer;
  transition: 0.3s;
}

/* HOVER */
.logout-btn:hover{
  background: #dc2626;
  transform: scale(1.05);
  box-shadow: 0 3px 10px rgba(239,68,68,0.4);
}

/* MOBILE */
@media(max-width:768px){
  .logout-btn{
    font-size: 12px;
    padding: 4px 8px;
  }
}

.admin-orders-btn{
  position: relative;
}

/* BADGE */
.admin-badge{
  position: absolute;
  top: -6px;
  right: -8px;
  background: red;
  color: #fff;
  font-size: 10px;
  padding: 3px 6px;
  border-radius: 50%;
}

/* HIDE */
.admin-badge.hidden{
  display: none;
}

.status{
  font-weight: bold;
}

.status:contains("NEW"){ color: red; }
.status:contains("PROCESSING"){ color: orange; }
.status:contains("DELIVERED"){ color: green; }

.order-admin-card button{
  margin: 4px 4px 0 0;
  padding: 5px 10px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.order-admin-card button:nth-child(1){
  background: orange;
  color: #fff;
}

.order-admin-card button:nth-child(2){
  background: green;
  color: #fff;
}

.order-admin-card button:nth-child(3){
  background: #2563eb;
  color: #fff;
}

/* ADMIN ORDER CARD */
.order-card-admin{
  background: #fff;
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 12px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  font-size: 13px;
}

/* HEADER */
.order-header{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.order-id{
  font-weight: 600;
  font-size: 14px;
}

/* STATUS */
.order-status{
  padding: 3px 8px;
  border-radius: 10px;
  font-size: 11px;
  color: #fff;
}

.order-status.NEW{ background: #ef4444; }
.order-status.PROCESSING{ background: #f59e0b; }
.order-status.DELIVERED{ background: #16a34a; }

/* BODY */
.order-body{
  display: grid;
  gap: 4px;
  color: #333;
}

.order-date{
  font-size: 11px;
  color: #777;
}

/* ACTION BUTTONS */
.order-actions{
  margin-top: 10px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.btn{
  border: none;
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 12px;
  cursor: pointer;
  transition: 0.2s;
}

.btn.processing{
  background: #f59e0b;
  color: #fff;
}

.btn.delivered{
  background: #16a34a;
  color: #fff;
}

.btn.invoice{
  background: #2563eb;
  color: #fff;
}

/* HOVER */
.btn:hover{
  transform: scale(1.05);
  opacity: 0.9;
}

@media(max-width:768px){

  .header{
    display: flex;
    gap: 6px;
    padding: 8px 10px;
  }

  .header-left{
    width: 100%;
  }

  .header-right{
    width: 100%;
    justify-content: space-between;
  }

  .nav-links{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

}

@media (max-width:768px){
  .products{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width:480px){
  .products{
    grid-template-columns: 1fr;
  }
}

.pm-item{
  border-bottom:1px solid #eee;
  padding:10px;
}

.pm-actions button{
  margin-right:6px;
  padding:4px 8px;
  font-size:12px;
}

.backBtn {
  background:
    linear-gradient(
      135deg,
      #0f172a 0%,
      #1e3a8a 35%,
      #2563eb 70%,
      #38bdf8 100%
    );
  color: #fff;
  border: none;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
  cursor: pointer;
  transition: 0.3s;
}

.logout-nav{
  color: #ff3b30;
}

.logout-nav i{
  color: #ff3b30;
}

.bottom-nav{
  justify-content: space-around;
}

@media(max-width:768px){

  body{
    padding-bottom: 50px;
  }

}

@media (max-width: 480px){

   body{
    padding-bottom: 80px;
  }

  .bottom-nav{
    height: 70px;
  }

  .whatsapp-float{
    bottom: 85px;
  }

}

.edit-preview{
  width: 100%;
  height: 180px;
  object-fit: cover;

  border-radius: 14px;
  margin-top: 12px;

  display: none;
}

.map-btn{
  display:inline-flex;
  align-items:center;
  gap:8px;

  background:
    linear-gradient(
      135deg,
      #0f172a,
      #1e293b,
      #334155,
      #475569
    );
  color:#fff;
  text-decoration:none;

  padding:12px 22px;
  border-radius:50px;

  font-size:15px;
  font-weight:600;

  box-shadow:0 8px 20px rgba(34,197,94,0.25);

  transition:all 0.3s ease;
}

.map-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 25px rgba(34,197,94,0.35);
  background:linear-gradient(135deg,#15803d,#16a34a);
}

.map-btn i{
  font-size:16px;
}

@media(max-width:768px){

  .map-btn{
    width:100%;
    justify-content:center;

    padding:13px 18px;
    font-size:14px;
  }

}
