
  * { margin: 0; padding: 0; box-sizing: border-box; }

  body {
    font-family: 'Roboto', sans-serif;
    background: #f2f2f2;
    max-width: 420px;
     margin: 0 auto;  /* centered with gray space on both sides */
     background: #f2f2f2; 
    padding-bottom: 110px;
    min-height: 100vh;
  }

  /* ── HERO CARD ── */
  .hero-card {
    background: #fff;
    position: relative;
    overflow: hidden;
    padding: 0 0 16px;
    min-height: calc(100vh - 45px);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  /* Top-left red triangle */
  .hero-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 0; height: 0;
    border-top: 70px solid #048f92;
    border-right: 70px solid transparent;
    z-index: 2;
  }
  /* Bottom-right red triangle */
  .hero-card::after {
    content: '';
    position: absolute;
    bottom: 0; right: 0;
    width: 0; height: 0;
    border-bottom: 50px solid #048f92;
    border-left: 50px solid transparent;
    z-index: 2;
  }

  /* Views badge */
  .views-badge {
    position: absolute;
    top: 10px;
    right: 0;
    background: #048f92;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    padding: 4px 10px 4px 12px;
    border-radius: 3px 0 0 3px;
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 3;
  }

  /* Logo */
  .logo-wrap {
    display: flex;
    justify-content: center;
    padding-top: 22px;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
  }

  .logo-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 3px solid #048f92;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.12);
    position: relative;
    overflow: hidden;
  }

  .logo-inner {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    /* border: 2px solid #f0a500; */
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
  }

  .logo-text {
    font-size: 28px;
    font-weight: 900;
    color: #f0a500;
    font-style: italic;
    letter-spacing: -1px;
  }

  .hero-biz-name {
    text-align: center;
    font-size: 15px;
    font-weight: 800;
    color: #222;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    padding: 0 20px;
    position: relative;
    z-index: 1;
  }

  .hero-person-name {
    text-align: center;
    font-size: 15px;
    font-weight: 400;
    color: #777;
    font-style: italic;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
  }

  /* 4 round icon buttons */
  .hero-action-icons {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
  }

  .action-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #048f92;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 6px rgb(4 143 146 / 29%);
    transition: transform 0.15s;
  }
  .action-icon:hover { transform: scale(1.08); }
  /* .action-icon.wa { background: #25d366; box-shadow: 0 2px 6px rgba(37,211,102,0.35); } */

  /* Contact info rows */
  .contact-rows {
    padding: 0 14px;
    position: relative;
    z-index: 1;
  }

  .contact-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
  }

  .contact-row-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #048f92;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
    font-size: 15px;
  }

  .contact-row-text {
    font-size: 15px;
    color: #444;
    /* padding-top: 8px; */
    line-height: 1.5;
  }

  /* Add to Phone / Save Card buttons */
  .hero-bottom-btns {
    display: flex;
    gap: 10px;
    padding: 12px 14px 0;
    position: relative;
    z-index: 1;
  }

  .hero-bottom-btn {
    text-decoration: none;
    flex: 1;
    padding: 10px 8px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid #ddd;
    background: #fff;
    color: #444;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: background 0.15s;
  }
  .hero-bottom-btn:hover { background: #f9f9f9; }
  .hero-bottom-btn i { color: #888; font-size: 13px; }

  /* ── SECTION HEADER BANNER ── */
  .sec-banner {
    background: #048f92;
    padding: 11px 16px;
    position: relative;
    overflow: hidden;
    /*margin-top: 10px;*/
  }
  
  .sec-banner::after {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 50px; height: 100%;
    background: #fff;
    transform: skewX(-18deg) translateX(25px);
  }
  .sec-banner h2 {
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
  }

  /* Generic section card */
  .sec-card {
    background: #fff;
    position: relative;
    padding: 14px;
    overflow: hidden;
  }
  .sec-card.fullscreen {
    min-height: calc(100vh - 45px);
  }
  .sec-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    border-top: 14px solid #048f92;
    border-right: 14px solid transparent;
    z-index: 2;
  }
  .sec-card::after {
    content: '';
    position: absolute;
    bottom: 0; right: 0;
    border-bottom: 19px solid #048f92;
    border-left: 19px solid transparent;
    z-index: 2;
  }

  /* ── ABOUT ── */
  .about-table { width: 100%; border-collapse: collapse; font-size: 11.5px; }
  .about-table tr { border-bottom: 1px solid #f0f0f0; }
  .about-table tr:last-child { border-bottom: none; }
  .about-table td { padding: 7px 4px; vertical-align: top; }
  .about-table td:first-child { color: #424747; font-weight: 600; width: 115px; min-width: 115px; }
  .about-table td:last-child { color: #444; line-height: 1.6; }
  .about-list { padding-left: 14px; }
  .about-list li { margin-bottom: 3px; }
  .about-para { line-height: 1.7; }

  /* ── PRODUCTS ── */
  .product-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 6px;
    margin-bottom: 14px;
    overflow: hidden;
    box-shadow: 0 1px 5px rgba(0,0,0,0.07);
    position: relative;
  }
  .sec-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    border-top: 12px solid #048f92;
    border-right: 12px solid transparent;
    z-index: 2;
  }
  /* .product-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    border-top: 12px solid #048f92;
    border-right: 12px solid transparent;
    z-index: 2;
  } */
  .product-card::after {
    content: '';
    position: absolute;
    bottom: 0; right: 0;
    border-bottom: 12px solid #048f92;
    border-left: 12px solid transparent;
    z-index: 2;
  }
  .product-meta { padding: 7px 10px 3px; }
  .product-cat { font-size: 10px; color: #999; font-weight: 500; text-transform: uppercase; letter-spacing: 0.3px; }
  .product-name { font-size: 13px; font-weight: 700; color: #222; margin-top: 1px; }
  .product-img {
    width: 100%; height: 145px;
    object-fit: cover; display: block;
    position: relative;
  }
  .product-img-ph {
    width: 100%; height: 145px;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 8px; color: #fff;
    font-size: 15px; font-weight: 700;
  }
  .product-img-ph i { font-size: 34px; opacity: 0.9; }
  .product-thumb {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
  }
  .product-bg-img {
    width: 100%; height: 145px;
    background-size: cover;
    background-position: center;
    display: flex; align-items: flex-end;
    padding: 10px 12px;
  }
  .img-label {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    text-shadow: 0 1px 8px rgba(0,0,0,0.7);
    letter-spacing: 0.3px;
    line-height: 1.2;
  }
  .product-actions {
    display: flex;
    border-top: 1px solid #eee;
  }
  .p-act-btn {
    flex: 1; padding: 9px 5px;
    display: flex; align-items: center; justify-content: center;
    gap: 5px; font-size: 11.5px; font-weight: 600;
    border: none; background: #fff; cursor: pointer;
    color: #555; transition: background 0.15s;
  }
  .p-act-btn:first-child { border-right: 1px solid #eee; color: #048f92; }
  .p-act-btn i { font-size: 15px; }
  .p-act-btn:hover { background: #fafafa; }

  /* Product image colors */
  .c-biz   { background: linear-gradient(135deg,#ff6b6b,#c0392b); }
  .c-home  { background: linear-gradient(135deg,#52be80,#1e8449); }
  .c-od    { background: linear-gradient(135deg,#5dade2,#1565c0); }
  .c-pers  { background: linear-gradient(135deg,#f7dc6f,#d4ac0d); }
  .c-lap   { background: linear-gradient(135deg,#f0a500,#b7770d); }
  .c-mort  { background: linear-gradient(135deg,#a569bd,#6c3483); }
  .c-health{ background: linear-gradient(135deg,#f1948a,#c0392b); }
  .c-life  { background: linear-gradient(135deg,#76d7c4,#0e6655); }

  /* ── PAYMENT ── */
  .payment-info-card {
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 12px;
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 12px;
   
  }
  .pay-logo { font-size: 38px; }
  .pay-details h4 { font-size: 13px; font-weight: 700; color: #222; }
  .pay-details p  { font-size: 11px; color: #888; margin-top: 2px; }
  .pay-details span { font-size: 15px; color: #048f92; font-weight: 600; display: block; margin-top: 4px; }
  .qr-box {
    width: 225px; height: 225px;
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    font-size: 52px; margin: 0 auto 6px;
  }
    .qr-box img{
        width: 100%;
    }
  .qr-label { text-align: center; font-size: 10px; color: #aaa; }

  /* ── GALLERY ── */
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 5px;
  }
  .gal-item {
    aspect-ratio: 1;
    border-radius: 4px;
    display: flex; align-items: center; justify-content: center;
    font-size: 26px; color: #ccc;
    background: #f5f5f5;
    overflow: hidden;
  }

  /* ── FEEDBACK ── */
  .rating-row {
    display: flex; align-items: center; gap: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 12px;
  }
  .big-score { font-size: 40px; font-weight: 900; color: #222; line-height: 1; }
  .stars-col { flex: 1; }
  .stars-row { display: flex; gap: 2px; align-items: center; margin-bottom: 2px; }
  .stars-row .bar {
    flex: 1; height: 5px; background: #eee; border-radius: 3px; overflow: hidden;
  }
  .stars-row .bar-fill { height: 100%; background: #f5a623; border-radius: 3px; }
  .stars-row .count { font-size: 10px; color: #888; width: 18px; text-align: right; }
  .total-reviews { font-size: 10px; color: #888; }

  .review-item { padding: 10px 0; border-bottom: 1px solid #f5f5f5; }
  .review-item:last-of-type { border-bottom: none; }
  .rv-head { display: flex; align-items: center; gap: 8px; margin-bottom: 5px; }
  .rv-avatar {
    width: 34px; height: 34px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; font-weight: 700; color: #fff;
    flex-shrink: 0;
  }
  .rv-name { font-size: 15px; font-weight: 600; color: #222; }
  .rv-date { font-size: 10px; color: #bbb; }
  .rv-stars { color: #f5a623; font-size: 11px; margin-bottom: 3px; }
  .rv-text { font-size: 11.5px; color: #555; line-height: 1.65; }
  .rv-verified { font-size: 10px; color: #27ae60; font-weight: 600; margin-top: 3px; }

  /* Write review */
  .write-review-box {
    margin-top: 14px;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 12px;
    background: #fafafa;
  }
  .wr-title { font-size: 15px; font-weight: 700; color: #333; margin-bottom: 8px; }
  .wr-stars { color: #f5a623; font-size: 20px; display: flex; gap: 3px; margin-bottom: 8px; }
  .wr-input {
    width: 100%; border: 1px solid #ddd; border-radius: 4px;
    padding: 8px 10px; font-size: 15px; margin-bottom: 8px;
    font-family: 'Roboto', sans-serif; resize: none; background: #fff;
    outline: none;
  }
  .wr-input:focus { border-color: #048f92; }
  .wr-btn {
    width: 100%; background: #048f92; color: #fff;
    border: none; border-radius: 4px; padding: 10px;
    font-size: 15px; font-weight: 700; cursor: pointer;
    letter-spacing: 0.5px;
  }

  /* ── ENQUIRY FORM ── */
  .enq-intro { font-size: 11px; color: #666; line-height: 1.7; margin-bottom: 14px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
  .fg { margin-bottom: 10px; }
  .fg label { display: block; font-size: 11px; color: #555; font-weight: 500; margin-bottom: 3px; }
  .fg input, .fg select, .fg textarea {
    width: 100%; border: 1px solid #ddd; border-radius: 4px;
    padding: 9px 10px; font-size: 15px;
    font-family: 'Roboto', sans-serif; outline: none;
    transition: border 0.2s; background: #fff; color: #333;
  }
  .fg input:focus, .fg select:focus, .fg textarea:focus { border-color: #048f92; }
  .fg textarea { resize: none; height: 70px; }
  .enq-submit {
    width: 100%; background: #048f92; color: #fff;
    border: none; border-radius: 4px; padding: 12px;
    font-size: 13px; font-weight: 700; cursor: pointer;
    letter-spacing: 0.8px; margin-top: 4px;
  }

  /* ── SHARE ── */
  .share-text { font-size: 11px; color: #888; text-align: center; margin-bottom: 14px; }
  .share-row { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }
  .share-btn-circle {
    width: 44px; height: 44px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 17px; cursor: pointer;
    border: none; text-decoration: none;
  }
  .products-wrap{
    position: relative;
  }
.products-wrap::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    border-top: 14px solid #048f92;
    border-right: 14px solid transparent;
    z-index: 2;
}
.error-text{
    color: red;
}
  /* ── FOOTER ── */
  .footer-wrap {
    background: #fff;
    padding: 16px 14px;
    text-align: center;
    margin-top: 10px;
    position: relative;
    overflow: hidden;
  }

  .footer-qr { font-size: 60px; margin-bottom: 8px; }
  .footer-url { font-size: 10px; color: #bbb; margin-bottom: 6px; }
  .footer-social { display: flex; justify-content: center; gap: 8px; margin-bottom: 8px; }
  .footer-social a {
    width: 28px; height: 28px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 15px; text-decoration: none;
  }
  .footer-powered { font-size: 9px; color: #ccc; }

  /* ── BOTTOM NAV ── */
  .bottom-nav {
    position: fixed;
    bottom: 0; left: 50%; transform: translateX(-50%);
    width: 420px; max-width: 100%;
    background: #fff;
    border-top: 1px solid #e0e0e0;
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.08);
    z-index: 100;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .bottom-nav::-webkit-scrollbar { display: none; }

  /* Mobile: show 4, rest scroll */
  .nav-item {
    flex: 0 0 calc(100% / 4);
    min-width: calc(100% / 4);
    padding: 8px 2px 6px;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 2px;
    font-size: 10.5px; font-weight: 600;
    color: #888;
    cursor: pointer;
    text-decoration: none;
    border: none; background: transparent;
    transition: color 0.15s;
    text-align: center;
    letter-spacing: 0.2px;
    border-right: 1px solid #f0f0f0;
    white-space: nowrap;
  }
  .nav-item:last-child { border-right: none; }
  .nav-item i { font-size: 17px; display: block; }
  .nav-item.active, .nav-item:hover { color: #048f92; }
  .nav-item.active i, .nav-item:hover i { color: #048f92; }

  /* Desktop: full width, show all 8 */
  @media (min-width: 600px) {
    .bottom-nav {
      width: 100%;
      max-width: 100%;
      left: 0;
      transform: none;
      overflow-x: visible;
    }
    .nav-item {
      flex: 1 1 0;
      min-width: 0;
    }
  }


  .products-wrap { background: #fff; padding: 12px; }

  gap { height: 0px; background: #f2f2f2; display: block;  }
