/*
Theme Name: Panelli
Theme URI: https://panelligroup.com.au
Author: Panelli Group Pty Ltd
Description: Custom WooCommerce theme for Panelli - pipe, irrigation and water infrastructure supply.
Version: 1.4.5
Text Domain: panelli
Requires PHP: 7.4
Requires at least: 6.0
WC requires at least: 7.0
WC tested up to: 8.5
*/


  :root{
    --teal-900:#2c5c6b;
    --teal-700:#3d7889;
    --teal-600:#4c93a6;
    --teal-500:#5da0b1;
    --grey-700:#4a5258;
    --grey-500:#7c858b;
    --grey-200:#e2e5e7;
    --grey-100:#eef0f1;
    --bg:#f7f8f7;
    --white:#ffffff;
    --ink:#1c2426;
  }
  *{box-sizing:border-box;margin:0;padding:0;}
  html{color-scheme:light;background:#f7f8f7;}
  body{
    background:var(--bg);
    color:var(--ink);
    font-family:'Inter',-apple-system,'Segoe UI',sans-serif;
    -webkit-font-smoothing:antialiased;
  }
  a{color:inherit;text-decoration:none;}
  img{max-width:100%;display:block;}
  .wrap{max-width:1240px;margin:0 auto;padding:0 24px;}

  /* Header */
  header{background:var(--teal-900);}
  .header-top{
    display:flex;align-items:center;gap:24px;padding:14px 0;
  }
  .logo{font-weight:800;font-size:21px;color:#fff;letter-spacing:-.3px;white-space:nowrap;font-family:'Arial Black','Arial',sans-serif;}
  .logo span{color:#bfe3e8;}
  .logo-chip{
    position:relative;
    display:inline-flex;align-items:center;background:#fff;
    padding:7px 16px;border-radius:8px;
    overflow:hidden;
  }
  .logo-chip img{height:32px;width:auto;display:block;}

  /* Logo rendered as a real 3D extruded card: a front face (the logo),
     thick side edges that come into view as it turns, and a branded
     back face — a genuine rotation in depth, not just a flat shadow. */
  .panelli-logo-stage{
    display:inline-flex;align-items:center;
    perspective:900px;
    width:212px;height:40px;
  }
  .panelli-logo-cube{
    position:relative;
    display:block;
    width:212px;height:40px;
    transform-style:preserve-3d;
    animation:panelli-cube-spin 9s linear infinite;
  }
  @keyframes panelli-cube-spin{
    from{ transform:rotateY(0deg); }
    to{ transform:rotateY(360deg); }
  }
  .panelli-logo-face{
    position:absolute;top:0;left:0;
    width:212px;height:40px;
    display:flex;align-items:center;justify-content:center;
    border-radius:6px;
    backface-visibility:hidden;
    background:#fff;
  }
  .panelli-logo-face-front{ transform:translateZ(6px); }
  .panelli-logo-face-front img{ height:30px;width:auto; }
  .panelli-logo-face-back{
    transform:rotateY(180deg) translateZ(6px);
    background:linear-gradient(135deg, var(--teal-900,#00495a), var(--teal-600,#00798c));
  }
  .panelli-logo-face-back img{ height:24px;width:auto;filter:brightness(0) invert(1);opacity:.9; }
  .panelli-logo-edge{
    position:absolute;top:0;
    width:12px;height:40px;
    background:linear-gradient(90deg, #00343f, #00596b 45%, #00343f);
    border-radius:2px;
  }
  .panelli-logo-edge-right{ left:100%; transform-origin:left center; transform:rotateY(90deg); }
  .panelli-logo-edge-left{ right:100%; transform-origin:right center; transform:rotateY(-90deg); }

  @media (prefers-reduced-motion: reduce){
    .panelli-logo-cube{ animation:none; }
  }
  .search-bar{
    flex:1;display:flex;background:#fff;border-radius:6px;overflow:hidden;
  }
  .search-bar input{
    flex:1;border:0;background:transparent;padding:11px 14px;
    font-size:14px;outline:none;color:var(--ink);
  }
  .search-bar button{
    background:var(--teal-600);border:0;color:#fff;
    padding:0 18px;font-size:14px;font-weight:600;cursor:pointer;
  }
  .header-actions{display:flex;gap:22px;align-items:center;font-size:13px;color:#dcedef;flex-shrink:0;}
  .header-actions .item{display:flex;flex-direction:column;gap:2px;cursor:pointer;text-align:right;}
  .header-actions .item strong{font-size:13.5px;color:#fff;}

  /* Mobile header: stop the logo, search bar, and account/cart links from
     squeezing into one row and overlapping — stack them into two clean
     rows instead once the viewport gets tight. */
  @media(max-width:640px){
    .header-top{
      flex-wrap:wrap;
      gap:10px 14px;
      padding:12px 0;
    }
    .logo-chip{ order:1; }
    .header-actions{ order:2; margin-left:auto; gap:14px; }
    .search-bar{
      order:3;
      flex:1 1 100%;
      width:100%;
    }
  }
  @media(max-width:400px){
    .panelli-logo-stage, .panelli-logo-cube, .panelli-logo-face{ width:170px; height:32px; }
    .panelli-logo-face-front img{ height:24px; }
    .panelli-logo-face-back img{ height:19px; }
    .header-actions{ font-size:12px; gap:10px; }
  }

  .header-bottom{
    display:flex;gap:6px;padding:11px 0;border-top:1px solid rgba(255,255,255,.12);
    overflow:visible;
  }
  @media(max-width:900px){
    .header-bottom{
      overflow-x:auto;overflow-y:hidden;
      touch-action:pan-x;
      -webkit-overflow-scrolling:touch;
      overscroll-behavior-x:contain;
      scroll-snap-type:none;
    }
  }
  .header-bottom a{
    padding:6px 14px;font-size:13.5px;font-weight:600;color:#dcedef;
    white-space:nowrap;border-radius:4px;
  }
  .header-bottom a:hover, .header-bottom a.active{background:rgba(255,255,255,.1);color:#fff;}

  /* Dropdown submenus (Polyethylene > Metric > Up to 63mm, etc.) */
  .nav-item{position:relative;}
  .nav-dropdown{
    display:none;position:absolute;top:100%;left:0;z-index:40;
    background:var(--white);border:1px solid var(--grey-200);border-radius:8px;
    box-shadow:0 12px 28px rgba(0,0,0,.16);padding:8px;min-width:220px;
    flex-direction:column;gap:1px;
  }
  .nav-item:hover .nav-dropdown{display:flex;}
  .nav-dropdown a{
    color:var(--ink);padding:8px 12px;font-size:13.5px;font-weight:600;
    border-radius:5px;white-space:nowrap;
  }
  .nav-dropdown a:hover{background:var(--grey-100);color:var(--teal-700);}
  .nav-dropdown a.nav-dropdown-depth-2{padding-left:26px;font-weight:500;color:var(--grey-700);}

  /* Promo strip */
  .promo-strip{
    background:var(--grey-100);border-bottom:1px solid var(--grey-200);
    padding:9px 0;font-size:13px;color:var(--grey-700);
    display:flex;justify-content:space-between;
  }
  .promo-strip strong{color:var(--teal-700);}

  /* Hero banner */
  .hero{padding:24px 0;}
  .hero-banner{
    background:linear-gradient(120deg,var(--teal-900),var(--teal-600));
    border-radius:10px;padding:40px 44px;color:#fff;
    display:flex;align-items:center;justify-content:space-between;gap:24px;
    min-height:200px;position:relative;overflow:hidden;
  }
  .hero-banner::after{
    content:"";position:absolute;right:-40px;top:-60px;width:220px;height:220px;
    border:2px solid rgba(255,255,255,.15);border-radius:50%;
  }
  .hero-text{max-width:520px;}
  .hero-eyebrow{font-size:12px;font-weight:700;letter-spacing:1.2px;text-transform:uppercase;color:#bfe3e8;}
  .hero-banner h1{font-size:30px;line-height:1.2;font-weight:800;margin:8px 0 10px;}
  .hero-banner p{color:#d7e9e9;font-size:14.5px;}
  .hero-cta{
    margin-top:16px;display:inline-flex;background:#fff;color:var(--teal-900);
    padding:11px 22px;border-radius:6px;font-weight:700;font-size:14px;width:fit-content;
  }

  /* Section shared */
  .section{padding:8px 0 36px;}
  .section-head{
    display:flex;justify-content:space-between;align-items:baseline;margin-bottom:16px;
  }
  .section-head h2{font-size:20px;font-weight:800;color:var(--teal-900);}
  .section-head a{font-size:13px;font-weight:700;color:var(--teal-600);}

  /* Shop our range - icon row, Bunnings style */
  .range-row{
    display:grid;grid-template-columns:repeat(6,1fr);gap:12px;
  }
  .range-tile{
    background:var(--white);border:1px solid var(--grey-200);border-radius:8px;
    padding:18px 8px;text-align:center;display:flex;flex-direction:column;align-items:center;gap:10px;
  }
  .range-icon{
    width:52px;height:52px;border-radius:50%;background:var(--grey-100);
    display:flex;align-items:center;justify-content:center;font-size:22px;
  }
  .range-tile span{font-size:12px;font-weight:600;color:var(--grey-700);line-height:1.3;}
  .range-tile em{font-size:10.5px;font-style:normal;color:var(--grey-500);}

  /* Trending strip - small product cards */
  .trending-row{display:grid;grid-template-columns:repeat(4,1fr);gap:14px;}
  .tp-card{
    background:var(--white);border:1px solid var(--grey-200);border-radius:8px;overflow:hidden;
  }
  .tp-img{background:var(--grey-100);height:100px;display:flex;align-items:center;justify-content:center;color:var(--grey-500);font-size:11px;font-weight:600;}
  .tp-body{padding:10px 12px;}
  .tp-name{font-size:12.5px;font-weight:600;color:var(--ink);line-height:1.3;}
  .tp-price{font-size:14px;font-weight:800;color:var(--teal-700);margin-top:6px;}

  /* Trending projects - image grid */
  .projects-row{display:grid;grid-template-columns:repeat(4,1fr);gap:16px;}
  .proj-card{border-radius:8px;overflow:hidden;background:var(--white);border:1px solid var(--grey-200);}
  .proj-img{
    height:150px;background:linear-gradient(135deg,var(--teal-500),var(--teal-900));
    display:flex;align-items:center;justify-content:center;color:#fff;font-size:12px;font-weight:600;opacity:.9;
  }
  .proj-body{padding:12px 14px;}
  .proj-body strong{font-size:13.5px;display:block;margin-bottom:2px;}
  .proj-body span{font-size:12px;color:var(--grey-500);}
  .proj-img-icon{
    display:flex;align-items:center;justify-content:center;
  }
  .proj-img-icon svg{
    padding:16px;box-sizing:content-box;border-radius:50%;
    background:rgba(255,255,255,.14);
  }

  /* Service tiles */
  .aus-coverage{
    display:grid;grid-template-columns:1.1fr 1fr;gap:24px;align-items:center;
    background:var(--white);border:1px solid var(--grey-200);border-radius:14px;
    padding:36px;
  }
  .aus-coverage-map{display:flex;align-items:center;justify-content:center;}
  .aus-coverage-map svg{max-width:320px;}
  @media(max-width:700px){
    .aus-coverage{grid-template-columns:1fr;text-align:center;}
    .aus-coverage-text p{margin:0 auto;}
    .aus-coverage-map svg{max-width:240px;}
  }

  .services{background:var(--white);border-top:1px solid var(--grey-200);border-bottom:1px solid var(--grey-200);padding:36px 0;}
  .services-row{display:grid;grid-template-columns:repeat(3,1fr);gap:28px;}
  .service-item{display:flex;flex-direction:column;gap:8px;}
  .service-icon{
    width:46px;height:46px;border-radius:8px;background:var(--grey-100);
    display:flex;align-items:center;justify-content:center;color:var(--teal-600);font-size:20px;
  }
  .service-item h3{font-size:15px;font-weight:700;color:var(--teal-900);}
  .service-item p{font-size:13px;color:var(--grey-700);line-height:1.5;}
  .service-item a{font-size:13px;font-weight:700;color:var(--teal-600);}

  /* Brand strip */
  .brands{padding:30px 0;}
  .brands-row{
    display:flex;flex-wrap:wrap;gap:10px;
  }
  .brand-chip{
    background:var(--white);border:1px solid var(--grey-200);border-radius:20px;
    padding:8px 16px;font-size:12.5px;font-weight:600;color:var(--grey-700);
  }

  /* Newsletter */
  .newsletter{background:var(--teal-700);padding:32px 0;}
  .newsletter-inner{display:flex;justify-content:space-between;align-items:center;gap:20px;flex-wrap:wrap;color:#fff;}
  .newsletter h3{font-size:18px;font-weight:800;margin-bottom:4px;}
  .newsletter p{font-size:13px;color:#d7e9e9;}
  .newsletter-form{display:flex;gap:8px;}
  .newsletter-form input{
    padding:11px 14px;border:0;border-radius:6px;font-size:14px;min-width:240px;
  }
  .newsletter-form button{
    background:var(--teal-900);color:#fff;border:0;padding:0 20px;border-radius:6px;
    font-weight:700;font-size:14px;cursor:pointer;
  }

  /* Footer - accordion style */
  footer{background:var(--grey-700);color:#d9dcde;padding:36px 0 20px;}
  .footer-cols{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;padding-bottom:24px;border-bottom:1px solid rgba(255,255,255,.12);}
  .footer-col h4{color:#fff;font-size:14px;margin-bottom:12px;display:flex;justify-content:space-between;align-items:center;}
  .footer-col h4::after{content:"–";font-weight:400;opacity:.6;}
  .footer-col a{display:block;font-size:13px;line-height:2;color:#c7cbce;}
  .footer-bottom{
    padding-top:16px;font-size:12px;color:#aeb3b6;
    display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:8px;
  }
  .footer-social{display:flex;gap:12px;}
  .footer-social-link{
    display:inline-flex;align-items:center;gap:8px;
    background:linear-gradient(135deg,#f58529,#dd2a7b,#8134af,#515bd4);
    color:#fff !important;font-weight:600;font-size:13px;
    padding:8px 16px;border-radius:999px;
    text-decoration:none;opacity:.92;transition:opacity .2s,transform .2s;
  }
  .footer-social-link:hover{opacity:1;transform:translateY(-1px);}
  .footer-social-link span{color:#fff;}

  @media(max-width:900px){
    .range-row{grid-template-columns:repeat(3,1fr);}
    .trending-row{grid-template-columns:repeat(2,1fr);}
    .projects-row{grid-template-columns:repeat(2,1fr);}
    .services-row{grid-template-columns:1fr;}
    .footer-cols{grid-template-columns:1fr 1fr;}
    .header-top{flex-wrap:wrap;}
  }

  @media(max-width:480px){
    .range-row{grid-template-columns:repeat(2,1fr);}
    .trending-row{grid-template-columns:1fr;}
    .projects-row{grid-template-columns:1fr;}
    .footer-cols{grid-template-columns:1fr;gap:20px;}
    .newsletter-inner{flex-direction:column;align-items:stretch;text-align:center;}
    .newsletter-form{flex-direction:column;}
    .newsletter-form input{min-width:0;width:100%;}
    .newsletter-form button{padding:11px 20px;}
    .wrap{padding:0 16px;}
  }



/* Industrial posters */
.poster{
  position:relative;overflow:hidden;border-radius:12px;
  background:radial-gradient(circle at 75% 30%, #1c3d47 0%, #0f2429 55%, #081619 100%);
  color:#fff;padding:0;min-height:300px;
  display:flex;align-items:center;
  box-shadow:inset 0 0 90px rgba(0,0,0,.55), inset 0 0 0 1px rgba(255,255,255,.05);
}
.poster-photo-bg{
  position:absolute;inset:0;width:100%;height:100%;object-fit:cover;
  filter:grayscale(1) brightness(.55) contrast(1.15);mix-blend-mode:luminosity;opacity:.85;z-index:0;
}
.poster-photo-overlay{
  position:absolute;inset:0;z-index:1;
  background:
    linear-gradient(100deg, rgba(8,22,25,.94) 0%, rgba(10,26,30,.75) 42%, rgba(15,36,41,.35) 75%, rgba(15,36,41,.15) 100%),
    radial-gradient(circle at 78% 45%, rgba(76,147,166,.35) 0%, transparent 55%);
}
.poster-grid-bg{
  position:absolute;inset:0;opacity:.12;
  background-image:
    linear-gradient(rgba(93,160,177,.6) 1px, transparent 1px),
    linear-gradient(90deg, rgba(93,160,177,.6) 1px, transparent 1px);
  background-size:28px 28px;
}
.poster-glow{
  position:absolute;width:420px;height:420px;border-radius:50%;
  background:radial-gradient(circle, rgba(93,160,177,.35) 0%, transparent 70%);
  filter:blur(10px);
}
.poster-content{position:relative;z-index:2;padding:40px 44px;display:flex;align-items:center;gap:36px;width:100%;}
.poster-text{flex:1;min-width:0;}
.poster-eyebrow{font-size:11.5px;font-weight:800;letter-spacing:2.5px;text-transform:uppercase;color:var(--teal-500);margin-bottom:10px;}
.poster-title{font-size:30px;font-weight:900;line-height:1.12;letter-spacing:-.5px;margin-bottom:12px;text-transform:uppercase;text-shadow:0 4px 18px rgba(0,0,0,.5);}
.poster-title em{font-style:normal;color:var(--teal-500);}
.poster-sub{font-size:14px;color:#b9d3d8;max-width:380px;line-height:1.6;margin-bottom:20px;}
.poster-sizes{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:22px;}
.poster-sizes span{
  border:1px solid rgba(255,255,255,.25);color:#dcedef;font-size:12px;font-weight:700;
  padding:5px 11px;border-radius:20px;letter-spacing:.3px;
}
.poster-cta{
  display:inline-flex;background:#fff;color:var(--teal-900);font-weight:800;font-size:13.5px;
  padding:12px 24px;border-radius:6px;letter-spacing:.3px;text-transform:uppercase;
  box-shadow:0 10px 24px rgba(0,0,0,.35);
}
.poster-logo{position:absolute;top:28px;right:36px;height:26px;opacity:.95;z-index:3;filter:drop-shadow(0 2px 6px rgba(0,0,0,.5));}
.poster-media{
  position:relative;flex-shrink:0;width:280px;height:220px;
  display:flex;align-items:center;justify-content:center;z-index:2;
  background:radial-gradient(circle at 50% 35%, #f4f7f8 0%, #dde5e7 65%, #cbd6d9 100%);
  border-radius:16px;
  box-shadow:0 18px 40px rgba(0,0,0,.45), inset 0 0 0 1px rgba(255,255,255,.6);
}
.poster-media::before{
  content:"";position:absolute;inset:10%;border-radius:50%;
  background:radial-gradient(circle, rgba(255,255,255,.9) 0%, transparent 72%);
  filter:blur(6px);z-index:-1;
}
.poster-media img{max-width:96%;max-height:96%;object-fit:contain;filter:drop-shadow(0 14px 18px rgba(0,0,0,.28));}
.poster-media-multi{
  display:grid;grid-template-columns:1fr 1fr;gap:14px;width:280px;
}
.poster-media-multi .mm-item{
  background:radial-gradient(circle at 50% 35%, #f4f7f8 0%, #dde5e7 65%, #cbd6d9 100%);
  border:none;border-radius:12px;
  box-shadow:0 12px 26px rgba(0,0,0,.4), inset 0 0 0 1px rgba(255,255,255,.6);
  display:flex;align-items:center;justify-content:center;padding:8px;height:100px;
}
.poster-media-multi img{max-width:98%;max-height:98%;object-fit:contain;filter:drop-shadow(0 8px 10px rgba(0,0,0,.22));}

/* Available Now - featured products side by side with description + stock status */
.avail-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;}
.avail-card{background:var(--white);border:1px solid var(--grey-200);border-radius:12px;padding:20px;display:flex;flex-direction:column;gap:12px;}
.avail-media{
  height:180px;border-radius:12px;
  background:radial-gradient(circle at 50% 35%, #f4f7f8 0%, #dde5e7 65%, #cbd6d9 100%);
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.6);
  display:flex;align-items:center;justify-content:center;overflow:hidden;
}
.avail-media img{max-width:88%;max-height:88%;object-fit:contain;filter:drop-shadow(0 12px 14px rgba(0,0,0,.22));}
.avail-card h3{font-size:16px;font-weight:800;color:var(--teal-900);}
.avail-card p{font-size:13px;color:var(--grey-700);line-height:1.6;}
.avail-list{list-style:none;display:flex;flex-direction:column;gap:6px;flex:1;}
.avail-list li{display:flex;justify-content:space-between;align-items:baseline;font-size:12.5px;color:var(--grey-700);padding-bottom:6px;border-bottom:1px dashed var(--grey-200);}
.avail-list li strong{color:var(--teal-700);font-weight:800;}
.avail-list-plain li{display:block;font-size:12.5px;color:var(--grey-700);border-bottom:none;padding-bottom:3px;}
.avail-list-plain li:last-child{color:var(--teal-600);font-weight:700;font-style:italic;}
.avail-more{font-size:12px;color:var(--grey-500);}
.avail-more a{color:var(--teal-600);font-weight:700;}

/* Available Products for Delivery - top-of-page slider */
.hs-section{padding:20px 0 8px;}
.hs-title{font-size:19px;font-weight:800;color:var(--teal-900);margin-bottom:14px;}
.hs-slider{position:relative;background:var(--white);border:1px solid var(--grey-200);border-radius:14px;overflow:hidden;}
.hs-track{display:flex;transition:transform .45s cubic-bezier(.4,0,.2,1);}
.hs-slide{min-width:100%;display:flex;align-items:center;gap:36px;padding:30px 60px;}
.hs-media{
  flex-shrink:0;width:220px;height:190px;border-radius:14px;
  background:radial-gradient(circle at 50% 35%, #f4f7f8 0%, #dde5e7 65%, #cbd6d9 100%);
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.6);
  display:flex;align-items:center;justify-content:center;
}
.hs-media img{max-width:90%;max-height:90%;object-fit:contain;filter:drop-shadow(0 12px 14px rgba(0,0,0,.22));}
.hs-info{flex:1;min-width:0;}
.hs-eyebrow{font-size:11.5px;font-weight:800;letter-spacing:1.5px;text-transform:uppercase;color:var(--teal-600);margin-bottom:6px;}
.hs-info h3{font-size:19px;font-weight:800;color:var(--teal-900);line-height:1.35;margin-bottom:10px;}
.hs-price{font-size:26px;font-weight:900;color:var(--teal-700);margin-bottom:12px;}
.hs-nav{
  position:absolute;top:50%;transform:translateY(-50%);width:38px;height:38px;border-radius:50%;
  background:#fff;border:1px solid var(--grey-200);box-shadow:0 6px 16px rgba(0,0,0,.12);
  display:flex;align-items:center;justify-content:center;font-size:20px;color:var(--teal-700);
  cursor:pointer;z-index:3;
}
.hs-nav:hover{background:var(--teal-700);color:#fff;border-color:var(--teal-700);}
.hs-prev{left:14px;}
.hs-next{right:14px;}
.hs-dots{display:flex;justify-content:center;gap:6px;padding:0 0 16px;}
.hs-dot{width:8px;height:8px;border-radius:50%;background:var(--grey-200);cursor:pointer;}
.hs-dot.active{background:var(--teal-600);}
@media(max-width:700px){
  .hs-slide{flex-direction:column;text-align:center;padding:26px 40px;gap:18px;}
  .hs-media{width:180px;height:150px;}
}
.avail-status{
  display:flex;align-items:center;gap:8px;font-size:12.5px;font-weight:700;color:var(--teal-700);
  padding-top:10px;border-top:1px solid var(--grey-200);
}
.avail-dot{width:8px;height:8px;border-radius:50%;background:#2fae5c;flex-shrink:0;box-shadow:0 0 0 3px rgba(47,174,92,.18);}
@media(max-width:900px){.avail-grid{grid-template-columns:1fr;}}
.poster-content.poster-reverse{flex-direction:row-reverse;}
.poster-content.poster-reverse .poster-text{text-align:right;}
.poster-content.poster-reverse .poster-eyebrow{text-align:right;}
.poster-content.poster-reverse .poster-sub{margin-left:auto;margin-right:0;}
.poster-content.poster-reverse .poster-sizes{justify-content:flex-end;}
@media(max-width:700px){
  .poster-content{flex-direction:column;text-align:center;padding:32px 22px;}
  .poster-sizes{justify-content:center;}
  .poster-media{width:100%;height:170px;}
  .poster-media-multi{width:100%;}
  .poster-logo{right:20px;top:20px;height:20px;}
  .poster-content.poster-reverse{flex-direction:column;}
  .poster-content.poster-reverse .poster-text,
  .poster-content.poster-reverse .poster-eyebrow{text-align:center;}
  .poster-content.poster-reverse .poster-sub{margin-left:auto;margin-right:auto;}
  .poster-content.poster-reverse .poster-sizes{justify-content:center;}
}

/* WooCommerce product loop cards (Trending / Shop archive) */
.tp-card{
  background:var(--white);border:1px solid var(--grey-200);border-radius:8px;overflow:hidden;
  display:flex;flex-direction:column;
}
.tp-img{background:var(--grey-100);height:180px;display:flex;align-items:center;justify-content:center;overflow:hidden;}
.tp-img img{width:100%;height:100%;object-fit:cover;}
.tp-body{padding:14px 16px;display:flex;flex-direction:column;gap:8px;flex:1;}
.tp-name{font-size:13px;font-weight:600;color:var(--ink);line-height:1.35;}
.tp-name a{color:inherit;}
.tp-price{font-size:15px;font-weight:800;color:var(--teal-700);margin-top:auto;}
.tp-price del{color:var(--grey-500);font-weight:500;font-size:13px;margin-right:6px;}
.tp-add-btn{
  margin-top:6px;background:var(--grey-100);border:1px solid var(--grey-200);
  color:var(--teal-700);font-weight:700;font-size:12.5px;
  padding:9px;border-radius:6px;text-align:center;cursor:pointer;display:block;
}
.tp-add-btn:hover{background:var(--teal-600);color:#fff;border-color:var(--teal-600);}
.product-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px;}
@media(max-width:1000px){.product-grid{grid-template-columns:repeat(3,1fr);}}
@media(max-width:700px){.product-grid{grid-template-columns:repeat(2,1fr);gap:12px;}}
@media(max-width:480px){
  .product-grid{grid-template-columns:1fr;}
}

/* On the shop/category grid, each card has two side-by-side action
   buttons (Add to Cart + Order on WhatsApp). At 2-column mobile widths
   there isn't enough room for both button labels on one line, so they
   wrap to 3+ stacked lines and blow the card height way out — this is
   what actually caused the "stretched" category-page cards on phones.
   Stack the two buttons instead of forcing them side by side once the
   card itself gets this narrow. */
@media(max-width:700px){
  .tp-actions{flex-direction:column;}
}

/* Order in-site (Add to Cart) + Order via WhatsApp, side by side on every product card */
.tp-actions{display:flex;gap:6px;margin-top:6px;}
.tp-actions .tp-add-btn{flex:1;margin-top:0;}
.tp-wa-btn{
  flex:1;display:flex;align-items:center;justify-content:center;gap:6px;
  background:#25D366;color:#fff;font-weight:700;font-size:12px;
  padding:9px 6px;border-radius:6px;text-align:center;cursor:pointer;white-space:nowrap;
}
.tp-wa-btn:hover{background:#1ebe57;color:#fff;}
.tp-wa-btn-single{
  flex:none;width:100%;padding:12px;font-size:14px;font-weight:800;
}

/* Contact page */
.contact-hero{background:var(--teal-900);color:#fff;padding:40px 0 32px;}
.contact-hero h1{font-size:26px;font-weight:900;margin-bottom:8px;}
.contact-hero p{color:#c7dde2;font-size:14px;max-width:520px;}
.contact-layout{display:grid;grid-template-columns:1.3fr .8fr;gap:24px;padding:32px 0 48px;align-items:start;}
.contact-card{background:var(--white);border:1px solid var(--grey-200);border-radius:10px;padding:28px;}
.contact-card h2{font-size:18px;color:var(--teal-900);margin-bottom:18px;}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:14px;margin-bottom:14px;}
.form-group{display:flex;flex-direction:column;gap:6px;margin-bottom:14px;}
.form-group label{font-size:12.5px;font-weight:700;color:var(--grey-700);}
.form-group input,.form-group select,.form-group textarea{
  border:1px solid var(--grey-200);border-radius:6px;padding:11px 12px;
  font-size:14px;font-family:inherit;color:var(--ink);background:var(--grey-100);
}
.form-group input:focus,.form-group select:focus,.form-group textarea:focus{outline:2px solid var(--teal-500);background:#fff;}
.form-group textarea{resize:vertical;min-height:130px;}
.form-submit{
  margin-top:6px;background:var(--teal-700);color:#fff;border:0;
  padding:13px 28px;border-radius:6px;font-weight:800;font-size:14px;
  letter-spacing:.3px;cursor:pointer;
}
.form-submit:hover{background:var(--teal-900);}
.form-note{font-size:12px;color:var(--grey-500);margin-top:10px;}
.form-success{background:#e9f7ef;border:1px solid #bfe3cc;color:#1e6b3a;padding:14px 16px;border-radius:8px;font-size:13.5px;margin-bottom:18px;}
.contact-side{display:flex;flex-direction:column;gap:16px;}
.contact-info-card{background:var(--white);border:1px solid var(--grey-200);border-radius:10px;padding:22px;}
.contact-info-card h3{font-size:14px;color:var(--teal-900);margin-bottom:12px;}
.contact-info-row{display:flex;gap:12px;margin-bottom:14px;align-items:flex-start;}
.contact-info-row:last-child{margin-bottom:0;}
.contact-info-icon{
  width:36px;height:36px;border-radius:8px;background:var(--grey-100);flex-shrink:0;
  display:flex;align-items:center;justify-content:center;color:var(--teal-600);
}
.contact-info-row div span{display:block;font-size:12px;color:var(--grey-500);}
.contact-info-row div strong{font-size:13.5px;color:var(--ink);font-weight:700;}
.whatsapp-card{
  background:#e9f7ef;border:1px solid #bfe3cc;border-radius:10px;padding:20px;
  display:flex;align-items:center;gap:14px;
}
.whatsapp-card .wa-icon{
  width:44px;height:44px;border-radius:50%;background:#25D366;flex-shrink:0;
  display:flex;align-items:center;justify-content:center;
}
.whatsapp-card strong{font-size:14px;color:var(--ink);display:block;}
.whatsapp-card span{font-size:12.5px;color:var(--grey-700);}
.whatsapp-card a{
  margin-left:auto;background:#25D366;color:#fff;font-weight:800;font-size:12.5px;
  padding:9px 16px;border-radius:6px;white-space:nowrap;flex-shrink:0;
}
.wa-float{
  position:fixed;right:20px;bottom:20px;width:56px;height:56px;border-radius:50%;
  background:#25D366;display:flex;align-items:center;justify-content:center;
  box-shadow:0 8px 20px rgba(0,0,0,.25);z-index:50;
}
@media(max-width:800px){
  .contact-layout{grid-template-columns:1fr;}
  .form-row{grid-template-columns:1fr;}
}

/* Full-width photo banner (image already contains its own text/logo) */
.poster-photo-banner{
  border-radius:12px;overflow:hidden;background:#fff;
  border:1px solid var(--grey-200);
}
.poster-photo-banner img{width:100%;height:auto;display:block;}
a.poster-photo-banner{cursor:pointer;transition:opacity .15s ease;}
a.poster-photo-banner:hover{opacity:.92;}

/* About page */
.about-hero{background:var(--teal-900);color:#fff;padding:44px 0 38px;}
.about-hero-eyebrow{font-size:12px;font-weight:700;letter-spacing:1.2px;text-transform:uppercase;color:#bfe3e8;margin-bottom:8px;}
.about-hero h1{font-size:28px;font-weight:900;line-height:1.25;max-width:680px;margin-bottom:12px;}
.about-hero p{color:#d7e9e9;font-size:14.5px;max-width:600px;line-height:1.6;}

.about-intro{padding-top:36px;}
.about-intro-text{max-width:760px;}
.about-intro-text h2{font-size:20px;font-weight:800;color:var(--teal-900);margin-bottom:14px;}
.about-intro-text p{font-size:14.5px;color:var(--grey-700);line-height:1.7;margin-bottom:12px;}

.about-stats{background:var(--white);border-top:1px solid var(--grey-200);border-bottom:1px solid var(--grey-200);padding:28px 0;}
.about-stats-row{display:grid;grid-template-columns:repeat(4,1fr);gap:20px;text-align:center;}
.stat-item .stat-num{font-size:28px;font-weight:900;color:var(--teal-700);}
.stat-item .stat-label{font-size:12.5px;color:var(--grey-500);font-weight:600;margin-top:4px;}

.about-values-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px;}
.value-card{background:var(--white);border:1px solid var(--grey-200);border-radius:10px;padding:22px;}
.value-icon{width:44px;height:44px;border-radius:8px;background:var(--grey-100);display:flex;align-items:center;justify-content:center;color:var(--teal-600);margin-bottom:14px;}
.value-card h3{font-size:14.5px;font-weight:700;color:var(--teal-900);margin-bottom:8px;}
.value-card p{font-size:13px;color:var(--grey-700);line-height:1.6;}

.about-cta{
  background:var(--grey-100);border-radius:12px;padding:32px 36px;
  display:flex;justify-content:space-between;align-items:center;gap:24px;flex-wrap:wrap;
}
.about-cta-text h2{font-size:19px;font-weight:800;color:var(--teal-900);margin-bottom:6px;}
.about-cta-text p{font-size:13.5px;color:var(--grey-700);max-width:420px;}
.about-cta-actions{display:flex;gap:10px;flex-wrap:wrap;align-items:center;}
.about-cta-actions .hero-cta{background:#fff;border:1px solid var(--grey-200);margin-top:0;}

@media(max-width:900px){
  .about-stats-row{grid-template-columns:repeat(2,1fr);}
  .about-values-grid{grid-template-columns:repeat(2,1fr);}
}
@media(max-width:600px){
  .about-stats-row{grid-template-columns:1fr 1fr;}
  .about-values-grid{grid-template-columns:1fr;}
  .about-cta{flex-direction:column;align-items:flex-start;}
}

.shop-page-header{background:var(--grey-100);padding:24px 0;border-bottom:1px solid var(--grey-200);}
.shop-page-header h1{font-size:22px;color:var(--teal-900);font-weight:800;}
.woocommerce-breadcrumb{font-size:12.5px;color:var(--grey-500);margin-top:6px;}
.woocommerce-breadcrumb a{color:var(--teal-600);}

/* ============================================================
   Single Product Page — gallery + buybox, then stacked sections
   (Description / Specifications & Standards / Delivery) instead
   of hidden tabs.
   ============================================================ */

.tp-product-breadcrumb{padding:16px 0 0;}
.tp-product-breadcrumb .woocommerce-breadcrumb{margin-top:0;}

.tp-product-top{
  display:grid;grid-template-columns:1fr 1fr;gap:36px;
  padding:20px 0 40px;align-items:start;
}

/* Gallery */
.tp-gallery .woocommerce-product-gallery{background:var(--white);border:1px solid var(--grey-200);border-radius:10px;padding:16px;}
.tp-gallery .woocommerce-product-gallery__image{border-radius:6px;overflow:hidden;}
.tp-gallery img{width:100%;object-fit:contain;}
.tp-gallery .flex-control-thumbs{display:flex;gap:8px;margin-top:10px;list-style:none;flex-wrap:wrap;}
.tp-gallery .flex-control-thumbs li{width:64px;}
.tp-gallery .flex-control-thumbs img{border:1px solid var(--grey-200);border-radius:4px;cursor:pointer;}
.tp-gallery .flex-control-thumbs img.flex-active{border-color:var(--teal-600);}

/* Buy box */
.tp-buybox{
  background:var(--white);border:1px solid var(--grey-200);border-radius:10px;
  padding:26px;position:sticky;top:16px;
}
.tp-buybox .product_title{font-size:22px;font-weight:800;color:var(--teal-900);line-height:1.3;margin-bottom:8px;}
.tp-buybox .woocommerce-product-rating{margin-bottom:10px;font-size:13px;color:var(--grey-500);}
.tp-buybox .woocommerce-product-rating .star-rating{display:inline-block;vertical-align:middle;margin-right:6px;}
.tp-buybox p.price{font-size:26px;font-weight:900;color:var(--teal-700);margin:6px 0 14px;}
.tp-buybox p.price del{font-size:16px;color:var(--grey-500);font-weight:500;margin-right:8px;}
.tp-buybox .woocommerce-product-details__short-description{
  font-size:13.5px;color:var(--grey-700);line-height:1.6;margin-bottom:16px;
  padding-bottom:16px;border-bottom:1px solid var(--grey-100);
}
.tp-buybox .stock{display:inline-block;font-size:12.5px;font-weight:700;padding:4px 10px;border-radius:4px;margin-bottom:14px;}
.tp-buybox .stock.in-stock{background:#e9f7ef;color:#1e6b3a;}
.tp-buybox .stock.out-of-stock{background:#fdeceb;color:#a3271e;}

/* Size / variation pills */
.tp-buybox .variations{width:100%;}
.tp-buybox .variations table,.tp-buybox .variations tbody,.tp-buybox .variations tr,.tp-buybox .variations td,.tp-buybox .variations th{
  display:block;width:100%;border:0;padding:0;
}
.tp-buybox .variations tr{margin-bottom:16px;}
.tp-buybox .variations label{display:block;font-size:12.5px;font-weight:800;color:var(--grey-700);text-transform:uppercase;letter-spacing:.4px;margin-bottom:8px;}
.tp-visually-hidden-select{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0;}
.tp-size-pills{display:flex;flex-wrap:wrap;gap:8px;}
.tp-size-pill{
  background:var(--grey-100);border:1.5px solid var(--grey-200);color:var(--ink);
  font-size:13.5px;font-weight:700;padding:9px 16px;border-radius:6px;cursor:pointer;
}
.tp-size-pill:hover{border-color:var(--teal-500);}
.tp-size-pill.is-active{background:var(--teal-700);border-color:var(--teal-700);color:#fff;}
.tp-size-pill.is-disabled{opacity:.4;text-decoration:line-through;cursor:not-allowed;}
.tp-buybox .reset_variations{display:inline-block;margin-top:6px;font-size:12px;color:var(--grey-500);}
.tp-buybox .woocommerce-variation-price .price{font-size:20px;margin:10px 0;}
.tp-buybox .woocommerce-variation-availability{margin-bottom:10px;}

/* Quantity + Add to cart + WhatsApp button */
.tp-buybox form.cart{margin-top:6px;}
.tp-buybox .quantity{display:inline-block;margin-bottom:12px;}
.tp-buybox .quantity .qty{
  width:70px;padding:11px 10px;border:1px solid var(--grey-200);border-radius:6px;
  font-size:15px;text-align:center;background:var(--grey-100);
}
.tp-buybox button.single_add_to_cart_button{
  display:block;width:100%;background:var(--teal-700);color:#fff;border:0;
  padding:15px;border-radius:6px;font-weight:800;font-size:15.5px;cursor:pointer;letter-spacing:.2px;
}
.tp-buybox button.single_add_to_cart_button:hover{background:var(--teal-900);}
.tp-buybox button.single_add_to_cart_button.disabled{background:var(--grey-200);color:var(--grey-500);cursor:not-allowed;}
.tp-buybox .tp-wa-btn{margin-top:10px;padding:13px;font-size:14px;}
.tp-buybox .product_meta{margin-top:16px;padding-top:16px;border-top:1px solid var(--grey-100);font-size:12.5px;color:var(--grey-500);}
.tp-buybox .product_meta a{color:var(--teal-600);}

/* Stacked sections below buybox */
.tp-product-sections{padding-bottom:48px;display:flex;flex-direction:column;gap:16px;}
.tp-section{background:var(--white);border:1px solid var(--grey-200);border-radius:10px;padding:26px 28px;}
.tp-section-title{font-size:17px;font-weight:800;color:var(--teal-900);margin-bottom:14px;padding-bottom:12px;border-bottom:2px solid var(--grey-100);}
.tp-section-body.tp-prose{font-size:14px;color:var(--grey-700);line-height:1.75;}
.tp-section-body.tp-prose p{margin-bottom:12px;}

/* Specifications & Standards table (WooCommerce default markup, restyled) */
.tp-section-body table.woocommerce-product-attributes{width:100%;border-collapse:collapse;}
.tp-section-body table.woocommerce-product-attributes tr{border-bottom:1px solid var(--grey-100);}
.tp-section-body table.woocommerce-product-attributes tr:last-child{border-bottom:0;}
.tp-section-body table.woocommerce-product-attributes th{
  width:220px;text-align:left;padding:11px 16px 11px 0;font-size:13px;font-weight:700;color:var(--grey-700);
}
.tp-section-body table.woocommerce-product-attributes td{padding:11px 0;font-size:13.5px;color:var(--ink);}
.tp-section-body table.woocommerce-product-attributes td p{margin:0;}

/* Delivery section */
.tp-delivery-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;}
.tp-delivery-option{background:var(--grey-100);border-radius:8px;padding:20px;}
.tp-delivery-icon{font-size:26px;margin-bottom:8px;}
.tp-delivery-icon-btn{background:none;border:0;padding:0;cursor:pointer;line-height:1;}
.tp-delivery-icon-btn:hover{opacity:.75;}
.tp-delivery-option h3{font-size:14.5px;font-weight:800;color:var(--teal-900);margin-bottom:8px;}
.tp-delivery-option p{font-size:13px;color:var(--grey-700);line-height:1.6;margin-bottom:12px;}
.tp-delivery-whatsapp{background:#eafbf1;}
.tp-delivery-whatsapp .tp-wa-btn{width:100%;padding:11px;}

@media(max-width:900px){
  .tp-product-top{grid-template-columns:1fr;}
  .tp-buybox{position:static;}
  .tp-delivery-grid{grid-template-columns:1fr;}
}

/* ============================================================
   Homepage — multi-card "Available Products for Delivery" carousel
   (inspired by big-box hardware / marketplace product rails)
   ============================================================ */

.ps-section{padding:26px 0 8px;}
.ps-head{display:flex;justify-content:space-between;align-items:flex-end;margin-bottom:16px;gap:16px;}
.ps-eyebrow{font-size:11.5px;font-weight:800;letter-spacing:1.4px;text-transform:uppercase;color:var(--teal-600);margin-bottom:4px;}
.ps-title{font-size:21px;font-weight:800;color:var(--teal-900);}
.ps-controls{display:flex;gap:8px;flex-shrink:0;}
.ps-nav{
  width:38px;height:38px;border-radius:50%;border:1.5px solid var(--grey-200);background:var(--white);
  color:var(--teal-900);font-size:20px;line-height:1;cursor:pointer;display:flex;align-items:center;justify-content:center;
  transition:background .15s,color .15s,border-color .15s;
}
.ps-nav:hover{background:var(--teal-700);border-color:var(--teal-700);color:#fff;}

.ps-viewport{overflow:hidden;margin:0 -4px;}
.ps-track{
  display:flex;gap:20px;overflow-x:auto;scroll-snap-type:x mandatory;
  padding:4px 4px 14px;-webkit-overflow-scrolling:touch;scrollbar-width:none;
}
.ps-track::-webkit-scrollbar{display:none;}

.ps-card{
  position:relative;flex:0 0 auto;width:230px;scroll-snap-align:start;
  background:var(--white);border:1px solid var(--grey-200);border-radius:12px;overflow:hidden;
  transition:transform .2s ease,box-shadow .2s ease;
}
.ps-card:hover{transform:translateY(-4px);box-shadow:0 14px 28px rgba(20,50,58,.14);}

.ps-badge{
  position:absolute;top:10px;left:10px;z-index:2;font-size:10.5px;font-weight:800;letter-spacing:.3px;
  padding:5px 10px;border-radius:999px;text-transform:uppercase;
}
.ps-badge-in{background:#e3f8ea;color:#1e8a4c;}
.ps-badge-out{background:rgba(30,34,36,.78);color:#fff;}

.ps-media{height:150px;background:var(--grey-100);display:flex;align-items:center;justify-content:center;padding:14px;}
.ps-media img{max-width:100%;max-height:100%;object-fit:contain;}
.ps-card.is-oos .ps-media img{opacity:.45;filter:grayscale(.5);}

.ps-body{padding:14px 14px 16px;}
.ps-cat{font-size:10.5px;font-weight:800;letter-spacing:.6px;text-transform:uppercase;color:var(--teal-600);margin-bottom:5px;}
.ps-card.is-oos .ps-cat{color:var(--grey-500);}
.ps-name{font-size:13.5px;font-weight:700;color:var(--ink);line-height:1.35;margin-bottom:8px;min-height:36px;}
.ps-card.is-oos .ps-name{color:var(--grey-500);}
.ps-price{font-size:17px;font-weight:900;color:var(--teal-700);margin-bottom:10px;}
.ps-card.is-oos .ps-price{color:var(--grey-500);}
.ps-price-hidden{visibility:hidden;}
.ps-price-wrap{margin-bottom:10px;}
.ps-price-wrap .ps-price{margin-bottom:0;}
.ps-show-price{
  background:var(--grey-100);color:var(--teal-700);border:1px dashed var(--teal-600);
  font-size:13px;font-weight:700;padding:7px 14px;border-radius:6px;cursor:pointer;
}
.ps-show-price:hover{background:var(--teal-600);color:#fff;border-style:solid;}

.ps-cta{
  display:block;width:100%;background:var(--teal-700);color:#fff;border:0;border-radius:6px;
  padding:9px;font-size:13px;font-weight:800;cursor:pointer;
}
.ps-cta:hover{background:var(--teal-900);}
.ps-cta-disabled{background:var(--grey-200);color:var(--grey-500);cursor:not-allowed;}

@media(max-width:600px){
  .ps-card{width:180px;}
  .ps-media{height:120px;}
}

/* ============================================================
   Dynamic polish: colored icon tiles, hover motion, scroll-in
   ============================================================ */

/* Category tiles — colored icon chip + lift/scale on hover */
.range-tile{
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.range-tile:hover{
  transform: translateY(-5px);
  box-shadow: 0 14px 28px rgba(20,50,58,.14);
  border-color: var(--tile-color, var(--teal-500));
}
.range-icon{
  background: var(--tile-color, var(--teal-600));
  color: #fff;
  transition: transform .25s cubic-bezier(.34,1.56,.64,1), background .2s ease;
}
.range-tile:hover .range-icon{
  transform: scale(1.12) rotate(-6deg);
}
.range-icon img{ width:100%; height:100%; object-fit:cover; }
.range-icon svg{ stroke: #fff; }

/* Product cards — slightly livelier hover than before */
.tp-card, .avail-card, .proj-card{
  transition: transform .22s ease, box-shadow .22s ease;
}
.tp-card:hover, .avail-card:hover, .proj-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 14px 26px rgba(20,50,58,.12);
}
.tp-img img, .avail-media img, .proj-img{
  transition: transform .35s ease;
}
.tp-card:hover .tp-img img, .avail-card:hover .avail-media img{
  transform: scale(1.06);
}

/* Poster CTA buttons — subtle press/hover feedback */
.poster-cta, .hero-cta{
  transition: transform .18s ease, box-shadow .18s ease;
}
.poster-cta:hover, .hero-cta:hover{
  transform: translateY(-2px);
}

/* Scroll-in fade/rise — elements start hidden, JS reveals them */
.panelli-fade-up{
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}
.panelli-fade-up.is-visible{
  opacity: 1;
  transform: translateY(0);
}
/* Staggered delay for siblings revealed together (range tiles, product cards) */
.range-row .panelli-fade-up:nth-child(1){ transition-delay: .02s; }
.range-row .panelli-fade-up:nth-child(2){ transition-delay: .06s; }
.range-row .panelli-fade-up:nth-child(3){ transition-delay: .10s; }
.range-row .panelli-fade-up:nth-child(4){ transition-delay: .14s; }
.range-row .panelli-fade-up:nth-child(5){ transition-delay: .18s; }
.range-row .panelli-fade-up:nth-child(6){ transition-delay: .22s; }
.range-row .panelli-fade-up:nth-child(7){ transition-delay: .26s; }
.range-row .panelli-fade-up:nth-child(8){ transition-delay: .30s; }
.range-row .panelli-fade-up:nth-child(9){ transition-delay: .34s; }
.range-row .panelli-fade-up:nth-child(10){ transition-delay: .38s; }

@media (prefers-reduced-motion: reduce){
  .panelli-fade-up{ opacity:1; transform:none; transition:none; }
  .range-tile, .range-icon, .tp-card, .avail-card, .proj-card, .tp-img img, .avail-media img{ transition:none; }
}

/* ==========================================================================
   Branded Tax Invoice (order-received / view-order pages)
   ========================================================================== */
.panelli-invoice{
  margin:0 0 24px;
  border:1px solid #e3e3e3;
  border-radius:8px;
  padding:20px 24px;
  background:#fff;
}
.panelli-invoice-letterhead{
  display:flex;align-items:flex-start;justify-content:space-between;
  flex-wrap:wrap;gap:16px;
  border-bottom:2px solid var(--teal-900, #00495a);
  padding-bottom:16px;
}
.panelli-invoice-brand{display:flex;align-items:center;gap:14px;}
.panelli-invoice-logo{height:48px;width:auto;display:block;}
.panelli-invoice-company{display:flex;flex-direction:column;font-size:13px;line-height:1.5;color:#444;}
.panelli-invoice-company strong{font-size:15px;color:var(--ink,#1a1a1a);}
.panelli-invoice-meta{text-align:right;display:flex;flex-direction:column;gap:2px;}
.panelli-invoice-meta h2{margin:0 0 4px;font-size:20px;color:var(--teal-900,#00495a);letter-spacing:.5px;}
.panelli-invoice-meta span{font-size:13px;color:#555;}
.panelli-invoice-print{
  margin-top:8px;align-self:flex-end;
  background:var(--teal-600,#00798c);color:#fff;border:0;
  padding:8px 16px;border-radius:6px;font-size:13px;cursor:pointer;
}
.panelli-invoice-print:hover{background:var(--teal-900,#00495a);}
.panelli-invoice-footer{margin-top:16px;padding-top:12px;border-top:1px solid #e3e3e3;}
.panelli-invoice-gst-note{font-size:13px;color:#333;line-height:1.6;margin:0 0 8px;}
.panelli-invoice-pickup-note{font-size:13px;color:#8a5a00;background:#fff6e5;border:1px solid #ffe1a8;border-radius:6px;padding:8px 12px;display:inline-block;margin:0;}

@media print{
  header, footer, .search-bar, .header-actions, nav, .panelli-invoice-print,
  #masthead, #colophon, .site-header, .site-footer{ display:none !important; }
  body{ background:#fff !important; }
  .panelli-invoice{ border:none;padding:0;margin-bottom:16px; }
  .woocommerce-order{ max-width:800px;margin:0 auto; }
}
