/* topbar, search, grid, card, ad, etc… */
/* copy directly from SPA style */

:root{
  --bg:#f5f5f7;
  --card:#ffffff;
  --text:#1d1d1f;
  --sub:#6e6e73;
  --accent:#0071e3;
  --border:#e5e5ea;
}
*{box-sizing:border-box}
body{
  margin:0;
  font-family:-apple-system,BlinkMacSystemFont,"SF Pro Text",Inter,Roboto,Arial;
  background:var(--bg);
  color:var(--text)
}

/* ---------- TOP BAR ---------- */
.topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 16px;
  background:#fff;
  border-bottom:1px solid var(--border);
  position:sticky;
  top:0;
  z-index:10
}


@media (min-width: 1024px) {
  .topbar-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
   /* align-items: center;*/
    gap: 16px;
  }
}


.logo img{height:34px}
.top-actions{
  display:flex;
  align-items:center;
  gap:16px
}
.top-actions button{
  background:none;
  border:none;
  font-size:0.95rem;
  color:var(--accent);
  cursor:pointer
}

.container{padding:14px 16px 80px}

/* ---------- SEARCH ---------- */
.search-wrap{margin:14px 0;position:relative}
.search-wrap input{
  width:100%;
  padding:14px 46px 14px 16px;
  border-radius:14px;
  border:1px solid var(--border);
  font-size:1rem;
  background:#fff
}
.search-wrap button{
  position:absolute;
  right:10px;
  top:50%;
  transform:translateY(-50%);
  border:none;
  background:var(--accent);
  color:#fff;
  padding:8px 14px;
  border-radius:999px;
  font-size:0.85rem;
  cursor:pointer
}

/* search new css */
/* Desktop only */
@media (min-width: 1024px) {

  .search-wrap {
    flex: 1;
    max-width: 520px;
margin: 0 auto;   /* ← THIS centers it */
  }

  .search-form {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 999px;
    padding: 6px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    border: 1px solid #e6e6e6;
  }

  .search-form input {
    flex: 1;
    border: none;
    outline: none;
    padding: 10px 14px;
    font-size: 15px;
    border-radius: 999px;
    color: #333;
  }

  .search-form input::placeholder {
    color: #999;
  }

  .search-form button {
    border: none;
    background: #111;
    color: #fff;
    padding: 10px 16px;
    border-radius: 999px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.2s ease, transform 0.1s ease;
  }

  .search-form button:hover {
    background: #000;
    transform: translateY(-1px);
  }

  .search-form:focus-within {
    box-shadow: 0 0 0 3px rgba(0,0,0,0.08);
    border-color: #ccc;
  }
}





/* ---------- HORIZONTAL SCROLL ---------- */
.h-scroll{
  display:flex;
  gap:12px;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  padding-bottom:6px;
  margin-bottom:14px
}
.h-scroll::-webkit-scrollbar{display:none}

/* ---------- AD BANNER ---------- */
.ad{
  min-width:100%;
  height:140px;
  border-radius:14px;
  background:#e9e9ed;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:600;
  color:#444
}


/* ---------- AD BANNER ---------- */
.ad-single{
  grid-column: 1 / -1;   /* 👈 span full grid width */
  width:100%;
  height:140px;
  border-radius:14px;
  background:#e9e9ed;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:600;
  color:#444;
}


/* single ad banner inside grid */
/*
.ad-single{
  grid-column: 1 / -1;   /* full width of grid */
  width:100%;
  max-width:100%;
  overflow:hidden;
  border-radius:14px;
  background:#e9e9ed;
display:flex;
}
*/

/* make sure image never exceeds container */
.ad-single img{
  display:block;
  width:100%;
  max-width:100%;
  height:auto;
  object-fit:contain;   /* or cover if you prefer */
}



/* ---------- CATEGORIES ---------- */




/* ---------- CATEGORIES ---------- */
.cat{
  min-width:110px;
  height:110px;                 /* keep it square */
  background:#fff;
  border:1px solid var(--border);
  border-radius:14px;
  padding:8px;
  text-align:center;
  cursor:pointer;
  scroll-snap-align:start;

  display:flex;                /* center content */
  flex-direction:column;
  align-items:center;
  justify-content:center;

  text-decoration:none;        /* if .cat is an <a> */
  color:var(--text);           /* force black text */
}

.cat img{
  width:56px;
  height:56px;
  border-radius:12px;
  object-fit:cover;
  background:#f0f0f0
}

.cat .name{
  margin-top:6px;
  font-weight:600;
  font-size:0.85rem;
  color:var(--text);           /* black like SPA */
  line-height:1.2;
}

.cat .count{
  font-size:0.7rem;
  color:var(--sub)
}

/* remove underline/blue if wrapped by links */
.cat:link,
.cat:visited{
  text-decoration:none;
  color:var(--text);
}






/* ---------- ITEM GRID ---------- */
.grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px;
  margin-top:12px
}

/*
.card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:16px;
  overflow:hidden;
  cursor:pointer
}
.card img{
  width:100%;
  height:150px;
  object-fit:cover;
  background:#f0f0f0
}
*/

/*
.card .pad{padding:10px}
.card .name{font-weight:600;font-size:0.95rem}
.card .price{margin-top:4px;font-weight:700;color:var(--accent)}
*/

.card .pad{
  padding:10px 12px 12px;
  display:flex;
  flex-direction:column;
  gap:4px;
}

.card .name{
  font-weight:600;
  font-size:0.95rem;
  line-height:1.25;
  color:var(--text);
}

.card .catline{
  font-size:0.8rem;
  color:var(--sub);     /* lighter gray */
  line-height:1.2;
}

.card .price{
  margin-top:6px;
  font-weight:700;
  font-size:0.95rem;
  color:var(--accent);
}



/*
.fallback{
  display:flex;
  align-items:center;
  justify-content:center;
  height:150px;
}
*/

/* cats and product grid */
@media (min-width: 1024px) {
  .page-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
  }
}

/*
@media (min-width: 1024px) {
  .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
  }
}
*/


.card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:16px;
  overflow:hidden;
  cursor:pointer;

  display:flex;
  flex-direction:column;
}

/* image keeps ratio instead of fixed height */
.card img{
  width:100%;
  aspect-ratio:3 / 4;     /* slightly taller than wide */
  object-fit:cover;
  background:#f0f0f0;
}

/* fallback area same ratio */
.fallback{
  aspect-ratio:3 / 4;
  display:flex;
  align-items:center;
  justify-content:center;
}

.fallback img{
  width:64px;
  height:64px;
  opacity:0.35
}








/* fallback area same as card image area */
/*
.fallback{
  width:100%;
  height:150px;         
  display:flex;
  align-items:center;
  justify-content:center;
  background:#f0f0f0;
}
*/


.fallback img{
  width:64px;
  height:64px;
  opacity:0.35;
}



/* remove default link styling for cards */
.card,
.card:link,
.card:visited{
  text-decoration:none;
  color:var(--text);
}

/* smoother modern text rendering */
body, .card{
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}









/* ---------- PRODUCT PAGE ---------- */
.slider{
  overflow:hidden;
  border-radius:16px;
  background:#fff;
  border:1px solid var(--border)
}
.track{display:flex;transition:transform .3s ease}
.slide{
  min-width:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  height:300px
}


.slides {
  display: flex;
  flex-direction: row;       /* make slides horizontal */
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  gap: 0;                   /* optional spacing between slides */
}


.slide img,.slide video{max-width:100%;max-height:100%}


/* tablet */
@media(min-width:768px){
  .grid{
    grid-template-columns:repeat(3,1fr);
  }
}

/*
@media(min-width:768px){
  .grid{grid-template-columns:repeat(3,1fr)}
}
*/

@media(min-width:768px){
  .grid{grid-template-columns:repeat(4,1fr)}
}







/* Horizontal slider drag support */
.slider {
  overflow-x: auto;
  display: flex;
  gap: 12px;
  cursor: grab;
  user-select: none;
  scroll-behavior: smooth;
}

.slider.dragging {
  cursor: grabbing;
}

/* Optional: hide scrollbar but keep scroll */
.slider::-webkit-scrollbar {
  height: 6px;
}




/* Ad slider */
.ad img{
  width:100%;
  height:100%;
  object-fit:contain;   /* 👈 show full image, no crop */
  border-radius:14px;
  background:#e9e9ed;
  display:block;
}





	
/* ---------- PRODUCT PAGE ---------- */
.product-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", Inter, Roboto, Arial, sans-serif;
  color: #1d1d1f;
}

/* ---------- IMAGE/VIDEO SLIDER ---------- */
/*
.product-slider {
  flex: 1 1 600px;
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 12px;
  border-radius: 16px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.product-slider .slide {
  min-width: 100%;
  scroll-snap-align: start;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f5f5f7;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.product-slider img,
.product-slider video {
  width: 100%;
  height: auto;
  border-radius: 16px;
}
*/

.product-slider {
  flex: 1 1 600px;
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 12px;
  border-radius: 16px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.product-slider .slide {
  flex: 0 0 100%;           /* prevent stretching */
  scroll-snap-align: start;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f5f5f7;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  height: 500px;             /* fixed height for PC */
}

.product-slider img,
.product-slider video {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;       /* preserve aspect ratio without cropping */
  border-radius: 16px;
}



/* slide buttons */
/* hide buttons by default */
.slide-btn {
  display: none;
}

/* show only on desktop */
@media (min-width: 769px) {
  .slide-btn {
    display: flex;
    align-items: center;
    justify-content: center;

    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.9);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    cursor: pointer;
    font-size: 22px;
    font-weight: bold;
    color: #333;
    z-index: 10;
  }

  .slide-btn:hover {
    background: #fff;
  }

  .slide-btn.prev { left: 12px; }
  .slide-btn.next { right: 12px; }
}


/* slide buttons */





.product-specs, .product-description {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}

.product-specs h3, .product-description h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.product-specs ul {
  padding-left: 20px;
  margin: 0 0 16px 0;
}

.product-specs li {
  margin-bottom: 6px;
}















/* hide scrollbar */
.product-slider::-webkit-scrollbar { display: none; }
.product-slider { -ms-overflow-style: none; scrollbar-width: none; }

/* ---------- PRODUCT INFO ---------- */
.product-info {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 16px;
}

.product-name {
  font-size: 2rem;
  font-weight: 700;
  margin: 0;
}

.product-category {
  font-size: 1rem;
  color: #6e6e73;
}

.product-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0071e3;
}

.product-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.add-to-cart,
.whatsapp-btn {
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
}

.add-to-cart {
  background: #0071e3;
  color: #fff;
}

.add-to-cart:hover {
  background: #005bb5;
}

.whatsapp-btn {
  background: #25d366;
  color: #fff;
}

.whatsapp-btn:hover {
  background: #1ebe57;
}

.product-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}



/* Default: NOT sticky (desktop) */
.product-actions-sticky {
  position: static;
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

/* Mobile only */
@media (max-width: 768px) {
  .product-actions-sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    justify-content: center;
    padding: 10px 14px;
    background: #fff;
    border-top: 1px solid #e5e5ea;
    z-index: 1000;
  }

  /* Add space so content not hidden */
  .product-page {
    padding-bottom: 90px;
  }
}





.product-actions-sticky button,
.product-actions-sticky a {
  flex: 1;
  padding: 12px 0;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 12px;
  border: none;
  text-decoration: none;
  text-align: center;
}

/*
.add-to-cart { background:#0071e3; color:#fff; }
.whatsapp-btn { background:#25d366; color:#fff; }
.call-btn { background:#ff9500; color:#fff; }
*/





/* sticky new */
/* ---------- PRODUCT ACTION BUTTONS ---------- */
/*
.product-actions-sticky {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

/* Mobile sticky only */
@media (max-width: 768px) {
  .product-actions-sticky {
    position: fixed !important;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px 14px;
    background: #ffffff;
    border-top: 1px solid #e5e5ea;
    z-index: 9999;

    display: flex;
    justify-content: center;
  }

  /* prevent content being hidden behind sticky bar */
  .product-page {
    padding-bottom: 90px;
  }
}

/* Button look */
.product-actions-sticky button,
.product-actions-sticky a {
  flex: 1;
  padding: 12px 0;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 12px;
  border: none;
  text-decoration: none;
  text-align: center;
}

.product-actions-sticky .add-to-cart {
  background: #0071e3;
  color: #fff;
}

.product-actions-sticky .whatsapp-btn {
  background: #25d366;
  color: #fff;
}

.product-actions-sticky .call-btn {
  background: #ff9500;
  color: #fff;
}
*/





/* ---------- RESPONSIVE ---------- */
@media(max-width: 768px) {
  .product-page {
    flex-direction: column;
    gap: 20px;
  }
}







/* ---------- CART BOX ---------- */
.cart-box{
  background:#fff;
  border:1px solid var(--border);
  border-radius:16px;
  padding:14px;
  margin:16px 0;
  box-shadow:0 4px 16px rgba(0,0,0,0.06);
  max-width:420px;
}

.cart-box h3{
  margin:0 0 10px;
  font-size:1.1rem;
  font-weight:600;
}

#cart-items{
  display:flex;
  flex-direction:column;
  gap:10px;
  margin-bottom:12px;
}

/* each cart row */
.cart-item{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
  border-bottom:1px solid var(--border);
  padding-bottom:6px;
  font-size:0.9rem;
}

.cart-item span{
  flex:1;
  color:var(--text);
}

/* qty buttons */
.cart-item button{
  width:28px;
  height:28px;
  border-radius:50%;
  border:1px solid var(--border);
  background:#f5f5f7;
  font-weight:600;
  cursor:pointer;
}

.cart-item button:hover{
  background:#e9e9ed;
}

/* footer */
.cart-footer{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.checkout-btn,
.whatsapp-order-btn{
  padding:12px;
  border-radius:999px;
  border:none;
  font-size:0.95rem;
  font-weight:600;
  cursor:pointer;
}

.checkout-btn{
  background:var(--accent);
  color:#fff;
}

.whatsapp-order-btn{
  background:#25D366;
  color:#fff;
}
/* cart end */



/* Drawer on PC, Sticky on mobile */
.cart-drawer {
  position: fixed;
  right: -360px;
  top: 0;
  width: 340px;
  height: 100%;
  background: #fff;
  box-shadow: -4px 0 12px rgba(0,0,0,0.15);
  transition: right 0.3s ease;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  border-radius: 12px 0 0 12px;
}

.cart-drawer.open {
  right: 0;
}

.cart-header {
  padding: 15px;
  font-weight: bold;
  border-bottom: 1px solid #eee;
}

#cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 10px;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  font-size: 14px;
}

.cart-item .qty-btn {
  border: none;
  background: #eee;
  padding: 4px 8px;
  border-radius: 50%;
  cursor: pointer;
  margin: 0 3px;
}

.cart-item .remove-btn {
  color: red;
  background: none;
  border: none;
  cursor: pointer;
}

.cart-footer {
  padding: 12px;
  border-top: 1px solid #eee;
}

.checkout-btn,
.whatsapp-order-btn {
  width: 100%;
  margin-top: 8px;
  padding: 10px;
  border: none;
  border-radius: 20px;
  color: #fff;
  cursor: pointer;
}

.checkout-btn { background: #0d6efd; }
.whatsapp-order-btn { background: #25d366; }

/*
.cart-toggle {
  position: fixed;
  right: 15px;
  bottom: 15px;
  background: #0d6efd;
  color: #fff;
  border: none;
  border-radius: 50%;
  padding: 14px 16px;
  font-size: 18px;
  cursor: pointer;
  z-index: 10000;
}
*/

.cart-toggle{
  position:fixed;
  right:16px;
  bottom:86px;
  z-index:9999;
  background:#111;
  color:#fff;
  border:none;
  border-radius:50px;
  padding:14px 18px;
  font-size:18px;
  box-shadow:0 6px 18px rgba(0,0,0,.25);
  cursor:pointer;
  display:flex;
  align-items:center;
  gap:6px;
}

#cart-count{
  background:#ff3b30;
  color:#fff;
  border-radius:50%;
  padding:2px 8px;
  font-size:14px;
}






/* 📱 Mobile: sticky bottom */
@media (max-width: 768px) {
  .cart-drawer {
    right: 0;
    bottom: 0;
    top: auto;
    height: 45%;
    width: 100%;
    border-radius: 16px 16px 0 0;
    transform: translateY(100%);
    transition: transform 0.3s ease;
  }
  .cart-drawer.open {
    transform: translateY(0);
  }
}

.cart-toggle.pulse{
  transform:scale(1.1);
  box-shadow:0 0 0 6px rgba(255,59,48,.3);
}


/* cart button */
.cart-toggle {
  position: fixed;
  right: 16px;
  bottom: 86px;
  z-index: 9999;

  background: #fff;
  color: #111;

  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 999px;

  padding: 12px 16px;
  font-size: 18px;
  font-weight: 600;

  display: flex;
  align-items: center;
  gap: 8px;

  cursor: pointer;

  box-shadow:
    0 4px 10px rgba(0,0,0,0.18),
    0 1px 2px rgba(0,0,0,0.08);

  transition: transform 0.15s ease,
              box-shadow 0.15s ease;

  /* Mobile-safe */
  -webkit-appearance: none;
  appearance: none;
  -webkit-tap-highlight-color: transparent;
}











/* ---------- CHECKOUT ---------- */
.checkout-page{
  padding:16px;
  background:var(--bg);
  min-height:100vh;
}

.checkout-container{
  display:grid;
  grid-template-columns:1fr;
  gap:16px;
}

.checkout-form,
.checkout-summary{
  background:#fff;
  border-radius:16px;
  padding:16px;
  border:1px solid var(--border);
}

.checkout-form h2,
.checkout-summary h3{
  margin-top:0;
}

.checkout-form label{
  display:block;
  margin-top:12px;
  font-size:.85rem;
  color:var(--sub);
}

.checkout-form input,
.checkout-form textarea,
.checkout-form select{
  width:100%;
  padding:12px;
  border-radius:12px;
  border:1px solid var(--border);
  margin-top:6px;
  font-size:1rem;
}

.checkout-item{
  display:flex;
  justify-content:space-between;
  padding:10px 0;
  border-bottom:1px solid var(--border);
}

.summary-total{
  margin-top:12px;
  font-size:1.1rem;
  font-weight:700;
  text-align:right;
  color:var(--accent);
}

/* Sticky bar */
.checkout-bar{
  position:sticky;
  bottom:0;
  background:#fff;
  padding:12px;
  border-top:1px solid var(--border);
	text-align: center;
}

.place-order-btn{
  width:100%;
  padding:14px;
  border:none;
  border-radius:999px;
  background:var(--accent);
  color:#fff;
  font-size:1rem;
  font-weight:600;
  cursor:pointer;
}

.place-order-btn {
  background-color: #28a745;  /* green button */
  color: white;
  border: none;
  padding: 12px 30px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  width: 90%;          /* mobile default */
  max-width: 300px;    /* desktop max width */
}

.place-order-btn:hover {
  background-color: #218838;
}




/* PC layout */
@media(min-width:768px){
  .checkout-container{
    grid-template-columns:2fr 1fr;
    max-width:960px;
    margin:0 auto;
  }
}





/* Image wrapper */
.img-wrap {
  position: relative;
}

/* Circular + button */
.quick-add {
  position: absolute;
  right: 10px;
  bottom: 10px;

  width: 42px;
  height: 42px;
  border-radius: 50%;

  background: #111;
  color: #fff;
  border: none;

  font-size: 26px;
  font-weight: bold;
  line-height: 42px;
  text-align: center;

  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.35);
  transition: transform 0.15s ease, background 0.15s ease;
}

/* Hover / tap feedback */
.quick-add:hover {
  background: #ccc;
  transform: scale(1.08);
}

/* Mobile-friendly */
@media (max-width: 768px) {
  .quick-add {
    width: 38px;
    height: 38px;
    font-size: 22px;
    line-height: 38px;
  }
}




/* new circular button */
.quick-add {
  position: absolute;
  right: 10px;
  bottom: 10px;

  width: 42px;
  height: 42px;
  border-radius: 50%;

  background: linear-gradient(135deg, #6366f1, #2563eb);
  color: #fff;
  border: none;

  font-size: 26px;
  font-weight: 400;
  line-height: 42px;
  text-align: center;

  cursor: pointer;
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.45);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.quick-add:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 22px rgba(37, 99, 235, 0.6);
}


/* new circular button */


/* uber like btn */
.quick-add {
  position: absolute;
  right: 10px;
  bottom: 10px;

  width: 42px;
  height: 42px;
  border-radius: 50%;

  background: #fff;
  color: #111;

  border: 1px solid rgba(0,0,0,0.08);
  font-size: 26px;
  font-weight: 600;
  line-height: 42px;
  text-align: center;

  cursor: pointer;

  box-shadow:
    0 4px 10px rgba(0,0,0,0.18),
    0 1px 2px rgba(0,0,0,0.08);

  transition: transform 0.15s ease,
              box-shadow 0.15s ease,
              background 0.15s ease;
}

/* uber like btn */


/* mobile compatible */
.quick-add {
  position: absolute;
  right: 10px;
  bottom: 10px;

  width: 42px;
  height: 42px;
  border-radius: 50%;

  background: #fff;
  color: #111;

  border: 1px solid rgba(0,0,0,0.08);
  font-size: 26px;
  font-weight: 400;
  line-height: 42px;
  text-align: center;

  cursor: pointer;

  box-shadow:
    0 4px 10px rgba(0,0,0,0.18),
    0 1px 2px rgba(0,0,0,0.08);

  transition: transform 0.15s ease,
              box-shadow 0.15s ease,
              background 0.15s ease;

  /* 🔑 MOBILE FIX */
  -webkit-appearance: none;
  appearance: none;
  -webkit-tap-highlight-color: transparent;
}



/* mobile compatible */










.quick-add:active {
  transform: scale(0.95);
}



/* cart header */
.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  font-size: 18px;
  font-weight: 600;
  border-bottom: 1px solid #eee;
}

.cart-title {
  letter-spacing: 0.3px;
}

.cart-close {
  background: none;
  border: none;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  color: #555;
  padding: 6px;
}

.cart-close:hover {
  color: #000;
}

.cart-close:active {
  transform: scale(0.92);
}

/* better */
.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  font-weight: 600;
  font-size: 16px;
}

/* Button reset */
.cart-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  display: flex;
  align-items: center;
}

/* Wide-angle premium chevron */
.chevron-down {
  width: 12px;
  height: 12px;
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
  transform: rotate(45deg);
}

/* Optional hover polish */
.cart-close:hover .chevron-down {
  border-color: #000;
}



/* cart header end */



/* --menu --*/

.menu-btn:hover {
  background: #f5f5f5;
}

.menu-panel {
  position: absolute;
  top: 120%;
  left: 0;

  min-width: 180px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;

  box-shadow: 0 10px 30px rgba(0,0,0,0.08);

  display: none;
  overflow: hidden;
  z-index: 1000;
}

.menu-panel a {
  display: block;
  padding: 12px 16px;
  color: #222;
  text-decoration: none;
  font-size: 14px;
}

.menu-panel a:hover {
  background: #f7f7f7;
}

/* - new menu */
.menu-wrap {
  position: relative;   /* anchor for dropdown */
}

//.menu-btn {
//  background: none;
//  border: none;
//  font-size: 22px;
//  cursor: pointer;
//}
.menu-btn {
  font-size: 18px;
  background: none;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 6px 10px;
  cursor: pointer;
}


.menu-panel {
  position: absolute;
  top: 36px;
  right: 0;             /* align to hamburger, not viewport */
  min-width: 180px;

  background: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  padding: 8px 0;

  display: none;
  z-index: 1000;
}

.menu-panel a {
  display: block;
  padding: 10px 16px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
}

.menu-panel a:hover {
  background: #f4f6f8;
}

.menu-wrap {
  position: relative;
}

.menu-panel {
  position: absolute !important;
  top: 42px;
  right: 0 !important;
  left: auto !important;
  margin-right: 0 !important;
}

/* Menu animation */
//.menu-panel {
//  opacity: 0;
//  transform: translateY(-8px);
//  pointer-events: none;
//  transition:
//    opacity 180ms ease,
//    transform 180ms ease;
//}

/* When menu is open */
//.menu-panel.open {
//  opacity: 1;
//  transform: translateY(0);
//  pointer-events: auto;
//}


/*share  */
.share-btn {
  padding: 8px 14px;
  border-radius: 8px;
  border: none;
  background: #25D366;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.share-btn.facebook { background: #1877f2; }
.share-btn.twitter  { background: #000; }




.product-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 12px 0 20px;
}

.product-price {
  font-size: 22px;
  font-weight: 600;
  color: #1a73e8;
}

.share-btn-inline {
  background: #f1f3f4;
  border: none;
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 14px;
  cursor: pointer;
  color: #333;
}

.share-btn-inline:hover {
  background: #e0e0e0;
}


/* new share */
.product-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 12px 0 18px;
}

.icon-share {
  border: none;
  background: #f1f3f4;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.icon-share:hover {
  background: #e6e6e6;
}

/* font */
/* Global font setup */
html, body {
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    "Inter",
    "Helvetica Neue",
    Arial,
    sans-serif;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.product-name,
.card .name {
  font-weight: 600;
  letter-spacing: -0.2px;
  line-height: 1.3;
}
.cart-item-name {
  font-weight: 500;
  font-size: 15px;
}
	

.product-price,
.cart-price {
  font-weight: 600;
  font-size: 1.05em;
}
body {
  font-size: 15px;
  color: #222;
}

.product-description p {
  color: #555;
  line-height: 1.6;
}


/* hero slider */
.hero-slider {
  width: 100%;
  height: 65vh;
  position: relative;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .hero-slider {
    height: 50vh;
  }
}

.hero-caption {
  position: absolute;
  left: 6%;
  bottom: 15%;
  z-index: 2;
  color: #fff;
  max-width: 520px;
}

.hero-caption h1 {
  font-size: 2.5rem;
  line-height: 1.2;
	font-weight: 700;
  margin: 0;
  text-shadow: 0 4px 20px rgba(0,0,0,0.6);
}

.hero-caption p {
  font-size: 1.1rem;
  margin-top: 10px;
  opacity: 0.95;
}

@media (max-width: 768px) {
  .hero-caption {
    left: 5%;
    bottom: 10%;
  }

  .hero-caption h1 {
    font-size: 1.6rem;
  }
  .hero-caption p {
    font-size: 0.95rem;
  }
}


