@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root{
  --ac-cat-bg:#f4f7fb;
  --ac-cat-surface:#ffffff;
  --ac-cat-surface-soft:#edf4fa;
  --ac-cat-text:#102033;
  --ac-cat-muted:#5f6f82;
  --ac-cat-line:#dfe7f0;
  --ac-cat-primary:#0d67c7;
  --ac-cat-primary-dark:#084e9a;
  --ac-cat-shadow:0 18px 50px rgba(15,35,60,.10);
  --ac-cat-shadow-soft:0 10px 30px rgba(15,35,60,.08);
  --ac-cat-radius:22px;
  --ac-cat-max:1240px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body.ac-category-page{
  margin:0;
  color:var(--ac-cat-text);
  background:var(--ac-cat-bg);
  font-family:"Inter",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
.ac-category-page img{display:block;max-width:100%}
.ac-category-page a{color:inherit;text-decoration:none}
.ac-category-page button,.ac-category-page input,.ac-category-page select,.ac-category-page textarea{font:inherit}
.ac-category-page button,.ac-category-page a{transition:all .22s ease}

/* Header */
.ac-category-header{
  position:sticky;
  top:0;
  z-index:80;
  background:rgba(255,255,255,.94);
  border-bottom:1px solid rgba(223,231,240,.95);
  backdrop-filter:blur(16px);
}
.ac-category-header>div{
  width:min(calc(100% - 40px),var(--ac-cat-max));
  min-height:86px;
  margin:0 auto;
  display:flex;
  align-items:center;
  gap:28px;
}
.ac-category-header>div>div:first-child{display:flex;align-items:center;flex:0 0 auto}
.ac-category-header>div>div:first-child img{width:190px;height:auto}
.ac-category-header>div>div:nth-child(2){margin-left:auto}
.ac-category-header>div>div:nth-child(2)>div{display:flex;align-items:center;gap:4px}
.ac-category-header>div>div:nth-child(2) a{
  position:relative;
  display:block;
  padding:11px 10px;
  border-radius:10px;
  color:#35465a;
  font-size:.78rem;
  font-weight:700;
  letter-spacing:.03em;
}
.ac-category-header>div>div:nth-child(2) a:hover{background:#edf4fb;color:var(--ac-cat-primary)}
.ac-category-header>div>div:nth-child(2) a.is-active{color:var(--ac-cat-primary)}
.ac-category-header>div>div:nth-child(2) a.is-active::after{
  content:"";
  position:absolute;
  left:12px;
  right:12px;
  bottom:5px;
  height:2px;
  border-radius:99px;
  background:var(--ac-cat-primary);
}
.ac-category-header>div>div:last-child{display:none}

/* Mobile navigation */
.ac-mobile-header{display:none}
.ac-sidenav-wrap{position:relative;z-index:120}
#mySidenav{
  position:fixed;
  top:0;
  left:0;
  z-index:150;
  width:0;
  height:100vh;
  padding-top:74px;
  overflow-x:hidden;
  background:#0b2239;
  box-shadow:20px 0 70px rgba(0,0,0,.25);
  transition:width .28s ease;
}
#mySidenav a{
  display:block;
  padding:12px 28px;
  color:#e8f1f8;
  font-size:.95rem;
  font-weight:700;
  white-space:nowrap;
}
#mySidenav a:hover{background:rgba(255,255,255,.07);color:#fff}
#mySidenav a:first-child{
  position:absolute;
  top:14px;
  right:16px;
  width:42px;
  height:42px;
  padding:0;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:rgba(255,255,255,.08);
  font-size:2rem;
  line-height:1;
}

/* Category hero */
.ac-category-hero{
  position:relative;
  isolation:isolate;
  overflow:hidden;
  padding:30px 0 76px;
  color:#fff;
  background:
    radial-gradient(circle at 82% 22%,rgba(70,159,229,.22),transparent 30%),
    linear-gradient(118deg,#061a2d 0%,#0a2d4c 57%,#0d456f 100%);
}
.ac-category-hero::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:-1;
  opacity:.16;
  background-image:linear-gradient(rgba(255,255,255,.09) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.09) 1px,transparent 1px);
  background-size:48px 48px;
  mask-image:linear-gradient(to bottom,rgba(0,0,0,.75),transparent 92%);
}
.ac-breadcrumb{
  width:min(calc(100% - 40px),var(--ac-cat-max));
  margin:0 auto 38px;
}
.ac-breadcrumb ol{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:8px;
  margin:0;
  padding:0;
  list-style:none;
  color:rgba(255,255,255,.65);
  font-size:.8rem;
  font-weight:600;
}
.ac-breadcrumb li+li::before{content:"/";margin-right:8px;color:rgba(255,255,255,.35)}
.ac-breadcrumb a{color:rgba(255,255,255,.82)}
.ac-breadcrumb a:hover{color:#fff}
.ac-cat-hero-inner{
  width:min(calc(100% - 40px),var(--ac-cat-max));
  margin:0 auto;
  display:grid;
  grid-template-columns:minmax(0,1fr) 420px;
  grid-template-rows:auto auto;
  column-gap:70px;
  align-items:center;
}
.ac-cat-hero-inner>h1{
  grid-column:1;
  margin:0;
  max-width:780px;
  color:#fff;
  font-size:clamp(2.7rem,5vw,4.7rem);
  line-height:1.01;
  letter-spacing:-.052em;
}
.ac-cat-hero-inner>h2{
  grid-column:1;
  margin:23px 0 0;
  max-width:760px;
  color:rgba(255,255,255,.82);
  font-size:clamp(1.02rem,1.45vw,1.28rem);
  line-height:1.5;
  font-weight:500;
}
.ac-cat-hero-media{
  grid-column:2;
  grid-row:1 / 3;
  position:relative;
  min-height:300px;
  display:grid;
  place-items:center;
}
.ac-cat-hero-media::before{
  content:"";
  position:absolute;
  inset:12% 7%;
  border-radius:50%;
  background:rgba(255,255,255,.09);
  filter:blur(3px);
}
.ac-cat-hero-media>div,.ac-cat-hero-media>div>div,.ac-cat-hero-media>div>div>div{display:contents}
.ac-cat-hero-media #mainImage{
  position:relative;
  z-index:1;
  width:auto;
  height:auto;
  max-width:360px;
  max-height:290px;
  object-fit:contain;
  filter:drop-shadow(0 28px 30px rgba(0,0,0,.28));
}

/* Main content */
.ac-category-main{
  width:min(calc(100% - 40px),var(--ac-cat-max));
  margin:0 auto;
  padding:72px 0 100px;
}
.ac-category-main p{
  max-width:960px;
  margin:0 0 24px;
  color:#52657a;
  font-size:1.02rem;
}
.ac-category-main strong{color:#263e57}
.ac-category-main>div>p:first-of-type,
.ac-category-main>div>div>p:first-of-type{
  margin-bottom:42px;
  font-size:1.05rem;
  line-height:1.78;
}
.ac-category-main h2{
  color:var(--ac-cat-text);
  letter-spacing:-.03em;
}
.ac-category-main section{
  max-width:1000px;
  margin:0 0 20px;
  padding:28px 30px;
  border:1px solid var(--ac-cat-line);
  border-radius:20px;
  background:#fff;
  box-shadow:0 6px 20px rgba(15,35,60,.035);
}
.ac-category-main section h2{margin:0 0 14px;font-size:1.55rem;line-height:1.25}
.ac-category-main section p:last-child,.ac-category-main section ul:last-child{margin-bottom:0}
.ac-category-main ul{margin:0;padding-left:1.25rem;color:#536579}
.ac-category-main li{margin:8px 0}
.ac-category-main a:not(.ac-product-tile){color:var(--ac-cat-primary);font-weight:650}
.ac-category-main a:not(.ac-product-tile):hover{color:var(--ac-cat-primary-dark)}

/* Filters */
.ac-filter-panel{
  margin:46px 0 34px;
  padding:24px;
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:12px;
  border:1px solid #d9e5ef;
  border-radius:22px;
  background:linear-gradient(180deg,#f8fbfe 0%,#f1f6fa 100%);
}
.ac-filter-panel>div:first-child{grid-column:1/-1}
.ac-filter-panel h5{
  margin:0 0 6px;
  color:#233b54;
  font-size:.82rem;
  font-weight:800;
  letter-spacing:.08em;
}
#searchInput,.filter-select{
  width:100%;
  min-height:48px;
  padding:0 13px;
  border:1px solid #d3e0eb;
  border-radius:11px;
  outline:none;
  background:#fff;
  color:#30465d;
}
#searchInput{grid-column:span 2}
#searchInput:focus,.filter-select:focus{border-color:#70afe2;box-shadow:0 0 0 3px rgba(13,103,199,.10)}
#resetFilters{
  width:100%;
  min-height:48px;
  border:0;
  border-radius:11px;
  background:#dfeaf3;
  color:#24415d;
  font-weight:800;
  cursor:pointer;
}
#resetFilters:hover{background:#cfdfeb;color:#132d46}

/* Product grids */
.ac-product-grid-modern{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:22px;
  margin-top:28px;
}
.ac-product-tile{
  position:relative;
  min-width:0;
  min-height:350px;
  padding:18px 18px 25px;
  overflow:hidden;
  border:1px solid var(--ac-cat-line);
  border-radius:22px;
  background:#fff;
  box-shadow:0 8px 22px rgba(15,35,60,.045);
}
.ac-product-tile:hover{transform:translateY(-5px);border-color:#bad4ea;box-shadow:var(--ac-cat-shadow-soft)}
.ac-product-tile>div,.ac-product-tile>div>div{display:contents}
.ac-product-tile img{
  width:100%;
  height:245px;
  padding:18px;
  object-fit:contain;
  border-radius:16px;
  background:linear-gradient(145deg,#f5f9fc 0%,#eaf2f8 100%);
  filter:drop-shadow(0 12px 15px rgba(18,58,92,.08));
  transition:transform .25s ease;
}
.ac-product-tile:hover img{transform:scale(1.045)}
.ac-product-tile h2{
  margin:20px 44px 0 6px;
  font-size:1.12rem;
  line-height:1.28;
  letter-spacing:-.018em;
}
.ac-product-tile h3{
  margin:9px 6px 0;
  color:#6a7a8b;
  font-size:.88rem;
  line-height:1.45;
  font-weight:500;
}
.ac-product-tile::after{
  content:"→";
  position:absolute;
  right:20px;
  bottom:20px;
  width:36px;
  height:36px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:#edf5fc;
  color:var(--ac-cat-primary);
  font-weight:800;
}
.ac-product-tile:hover::after{background:var(--ac-cat-primary);color:#fff;transform:translateX(2px)}

/* Pagination */
#pagination{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:8px;
  margin:12px 0 28px;
}
.page-btn{
  min-height:40px;
  padding:0 13px;
  border:1px solid #d7e2ec;
  border-radius:9px;
  background:#fff;
  color:#40566e;
  font-weight:700;
  cursor:pointer;
}
.page-btn:hover:not(:disabled),.page-btn.active{border-color:var(--ac-cat-primary);background:var(--ac-cat-primary);color:#fff}
.page-btn.disabled,.page-btn:disabled{opacity:.4;cursor:not-allowed}
.page-info{margin-left:8px;color:#75869a;font-size:.86rem}

/* Accordion / FAQ */
.accordion-title{
  position:relative;
  margin:0;
  padding:17px 48px 17px 18px;
  border:1px solid var(--ac-cat-line);
  border-radius:13px;
  background:#fff;
  color:#243c55;
  font-weight:750;
  cursor:pointer;
}
.accordion-title::after{content:"+";position:absolute;right:18px;top:50%;transform:translateY(-50%);font-size:1.4rem;color:var(--ac-cat-primary)}
.accordion-title.active::after{content:"−"}
.accordion-content{display:none;padding:17px 18px;color:#5c6d7e}
.accordion-content.active{display:block}

/* Contact section */
.ac-category-sidebar-wrap{
  padding:72px 20px;
  background:linear-gradient(180deg,#eef4f9 0%,#f6f9fc 100%);
}
#sidebar{
  position:relative;
  width:min(100%,760px);
  margin:0 auto;
  padding:34px;
  border:1px solid #d8e4ef;
  border-radius:26px;
  background:#fff;
  box-shadow:0 22px 60px rgba(22,55,87,.10);
}
#sidebar p{margin:0;color:#6e8093;font-size:.9rem;font-weight:600}
#sidebar h5{margin:3px 0 22px;color:var(--ac-cat-text);font-size:2rem;line-height:1.15;letter-spacing:-.035em}
#sidebar input,#sidebar textarea{
  width:100%;
  margin:0 0 11px;
  padding:13px 14px;
  border:1px solid #d8e3ed;
  border-radius:12px;
  outline:none;
  background:#f7fafc;
  color:var(--ac-cat-text);
}
#sidebar input:focus,#sidebar textarea:focus{border-color:#67afe9;background:#fff;box-shadow:0 0 0 3px rgba(47,143,221,.11)}
#sidebar textarea{min-height:120px;resize:vertical}
#sidebar button,#sidebar a[href*="wa.me"]{
  min-height:46px;
  margin-top:2px;
  padding:0 18px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:0;
  border-radius:11px;
  font-weight:800;
  cursor:pointer;
}
#sidebar button{background:var(--ac-cat-primary);color:#fff}
#sidebar button:hover{background:var(--ac-cat-primary-dark)}
#sidebar a[href*="wa.me"]{margin-left:8px;background:#20b861;color:#fff}
#sidebar a[href*="wa.me"]:hover{background:#18964e}

/* Footer */
.ac-category-footer{
  padding:54px 20px 30px;
  background:#0c2035;
  color:#c7d2df;
}
.ac-category-footer>div{
  width:min(100%,var(--ac-cat-max));
  margin:0 auto;
  display:grid;
  grid-template-columns:1.35fr .8fr;
  gap:46px 72px;
}
.ac-category-footer>div>div:first-child{display:none}
.ac-category-footer h5{margin:0 0 14px;color:#fff;font-size:1rem;letter-spacing:.01em}
.ac-category-footer>div>div{color:#b9c7d5;font-size:.92rem}
.ac-category-footer>div>div:nth-last-child(2){line-height:1.8}
.ac-category-footer>div>div:last-child{
  grid-column:1/-1;
  padding-top:24px;
  border-top:1px solid rgba(255,255,255,.12);
  color:#9eb0c1;
  font-size:.84rem;
}
.ac-category-footer a{color:#fff;font-weight:650}
.ac-category-footer a:hover{text-decoration:underline}

/* Cookie banner, aligned with homepage */
#cookie-overlay{
  display:none;
  position:fixed;
  inset:0;
  z-index:190;
  background:rgba(4,15,27,.52);
  backdrop-filter:blur(4px);
}
#cookie-banner{
  display:none;
  position:fixed;
  left:50%;
  bottom:28px;
  z-index:200;
  width:min(calc(100% - 32px),720px);
  transform:translateX(-50%);
  padding:22px 24px;
  border:1px solid var(--ac-cat-line);
  border-radius:20px;
  background:#fff;
  box-shadow:0 28px 80px rgba(0,0,0,.22);
}
#cookie-banner p{margin:0;color:#526377;font-size:.9rem}
#cookie-banner>div{display:inline-block;margin:18px 8px 12px 0}
#cookie-banner button{border:0;border-radius:10px;padding:11px 15px;font-weight:800;cursor:pointer}
#cookie-banner>div:first-of-type button{background:var(--ac-cat-primary);color:#fff}
#cookie-banner>div:nth-of-type(2) button{background:#edf2f7;color:#34465a}
#cookie-banner a{color:var(--ac-cat-primary);font-weight:700}

@media (max-width:1160px){
  .ac-category-header{display:none}
  .ac-mobile-header{
    display:block;
    position:sticky;
    top:0;
    z-index:90;
    min-height:76px;
    background:rgba(255,255,255,.95);
    border-bottom:1px solid var(--ac-cat-line);
    backdrop-filter:blur(14px);
  }
  .ac-mobile-header>div>div{
    width:min(calc(100% - 36px),var(--ac-cat-max));
    min-height:76px;
    margin:0 auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;
  }
  .ac-mobile-header>div>div>div:first-child{
    order:2;
    margin-left:auto;
  }
  .ac-mobile-header>div>div>div:first-child>div,
  .ac-mobile-header>div>div>div:first-child>div>div{
    display:contents;
  }
  .ac-mobile-header>div>div>div:nth-child(2){
    order:1;
    display:flex;
    align-items:center;
  }
  .ac-mobile-header span[onclick*="openNav"]{
    width:44px;
    height:44px;
    display:grid;
    place-items:center;
    border:1px solid var(--ac-cat-line);
    border-radius:12px;
    color:#18324b;
    background:#fff;
    font-size:1.35rem;
    cursor:pointer;
  }
  .ac-mobile-header img{width:165px;height:auto}
  .ac-cat-hero-inner{grid-template-columns:minmax(0,1fr) 330px;column-gap:38px}
  .ac-cat-hero-media #mainImage{max-width:300px;max-height:245px}
  .ac-filter-panel{grid-template-columns:repeat(3,minmax(0,1fr))}
  .ac-product-grid-modern{grid-template-columns:repeat(2,minmax(0,1fr))}
}

@media (max-width:800px){
  .ac-category-hero{padding:24px 0 58px}
  .ac-breadcrumb{margin-bottom:28px}
  .ac-cat-hero-inner{grid-template-columns:1fr;grid-template-rows:auto;gap:28px}
  .ac-cat-hero-inner>h1,.ac-cat-hero-inner>h2{grid-column:1}
  .ac-cat-hero-inner>h1{font-size:clamp(2.45rem,9vw,3.6rem)}
  .ac-cat-hero-media{grid-column:1;grid-row:auto;min-height:220px;justify-items:start}
  .ac-cat-hero-media::before{inset:7% auto 7% 0;width:300px}
  .ac-cat-hero-media #mainImage{max-width:300px;max-height:220px}
  .ac-category-main{padding:58px 0 78px}
  .ac-filter-panel{grid-template-columns:repeat(2,minmax(0,1fr));padding:18px}
  .ac-category-main section{padding:23px}
  .ac-category-sidebar-wrap{padding:58px 18px}
  .ac-category-footer>div{grid-template-columns:1fr;gap:32px}
  .ac-category-footer>div>div:last-child{grid-column:1}
}

@media (max-width:600px){
  .ac-mobile-header>div>div{width:calc(100% - 28px)}
  .ac-mobile-header img{width:145px}
  .ac-breadcrumb,.ac-cat-hero-inner,.ac-category-main{width:calc(100% - 28px)}
  .ac-category-hero{padding-bottom:48px}
  .ac-cat-hero-inner>h1{font-size:clamp(2.2rem,11vw,3rem)}
  .ac-cat-hero-inner>h2{margin-top:16px;font-size:.98rem}
  .ac-cat-hero-media{min-height:190px}
  .ac-cat-hero-media #mainImage{max-width:250px;max-height:190px}
  .ac-category-main{padding-top:48px}
  .ac-filter-panel{grid-template-columns:1fr;gap:10px;margin-top:34px}
  .ac-filter-panel>div:first-child{grid-column:1}
  #searchInput{grid-column:1}
  .ac-product-grid-modern{grid-template-columns:1fr;gap:16px}
  .ac-product-tile{min-height:320px;padding:15px 15px 23px}
  .ac-product-tile img{height:225px;padding:14px}
  #sidebar{padding:24px;border-radius:21px}
  #sidebar button,#sidebar a[href*="wa.me"]{width:100%;margin:7px 0 0}
  #cookie-banner{bottom:14px;padding:18px}
  #cookie-banner>div{display:block;margin:10px 0 0}
  #cookie-banner button{width:100%}
}

@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  *,*::before,*::after{transition:none!important}
}

/* Compact footer contact form override */
.ac-category-sidebar-wrap{display:none!important}

.ac-category-footer{
  padding:62px 20px 30px;
}
.ac-category-footer>div{
  grid-template-columns:minmax(0,1.35fr) minmax(220px,.78fr) minmax(220px,.72fr);
  gap:34px 50px;
  align-items:start;
}
.ac-category-footer>div>div:first-child{
  display:block;
  padding:24px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:20px;
  background:#fff;
  color:var(--ac-cat-text);
  box-shadow:0 18px 42px rgba(0,0,0,.16);
}
.ac-category-footer>div>div:first-child p{
  margin:0;
  color:#6d7f91;
  font-size:.82rem;
  font-weight:650;
}
.ac-category-footer>div>div:first-child h5{
  margin:2px 0 17px;
  color:var(--ac-cat-text);
  font-size:1.35rem;
  line-height:1.2;
  letter-spacing:-.025em;
}
.ac-category-footer>div>div:first-child>div:last-child{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}
.ac-category-footer>div>div:first-child input:not([type="hidden"]),
.ac-category-footer>div>div:first-child textarea{
  width:100%;
  min-width:0;
  margin:0;
  padding:11px 12px;
  border:1px solid #d8e3ed;
  border-radius:10px;
  outline:none;
  background:#f7fafc;
  color:var(--ac-cat-text);
}
.ac-category-footer>div>div:first-child input:not([type="hidden"]){min-height:42px}
.ac-category-footer>div>div:first-child textarea{
  grid-column:1/-1;
  min-height:88px;
  resize:vertical;
}
.ac-category-footer>div>div:first-child input:focus,
.ac-category-footer>div>div:first-child textarea:focus{
  border-color:#67afe9;
  background:#fff;
  box-shadow:0 0 0 3px rgba(47,143,221,.11);
}
.ac-category-footer>div>div:first-child button,
.ac-category-footer>div>div:first-child a[href*="wa.me"]{
  min-height:42px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0;
  padding:0 14px;
  border:0;
  border-radius:10px;
  font-size:.82rem;
  font-weight:800;
  text-decoration:none;
  cursor:pointer;
}
.ac-category-footer>div>div:first-child button{
  background:var(--ac-cat-primary);
  color:#fff;
}
.ac-category-footer>div>div:first-child button:hover{background:var(--ac-cat-primary-dark)}
.ac-category-footer>div>div:first-child a[href*="wa.me"]{
  background:#20b861;
  color:#fff;
}
.ac-category-footer>div>div:first-child a[href*="wa.me"]:hover{
  background:#18964e;
  text-decoration:none;
}
.ac-category-footer>div>div:last-child{grid-column:1/-1}

@media (max-width:900px){
  .ac-category-footer>div{grid-template-columns:1fr 1fr;gap:28px 34px}
  .ac-category-footer>div>div:first-child{grid-column:1/-1}
  .ac-category-footer>div>div:last-child{grid-column:1/-1}
}

@media (max-width:600px){
  .ac-category-footer{padding:46px 14px 24px}
  .ac-category-footer>div{grid-template-columns:1fr;gap:26px}
  .ac-category-footer>div>div:first-child{padding:20px}
  .ac-category-footer>div>div:first-child>div:last-child{grid-template-columns:1fr}
  .ac-category-footer>div>div:first-child textarea{grid-column:1}
}

/* Footer form single-column refinement */
.ac-category-footer>div{
  grid-template-columns:minmax(320px,420px) minmax(260px,1fr) minmax(220px,.72fr);
  gap:36px 64px;
  align-items:start;
}

.ac-category-footer>div>div:first-child{
  width:100%;
  max-width:420px;
  padding:26px;
  border-radius:18px;
}

/* The existing footer form HTML contains a heading block and a fields block.
   Keep both stacked vertically instead of placing them side by side. */
.ac-category-footer>div>div:first-child>div:last-child{
  display:block;
}

.ac-category-footer>div>div:first-child>div:last-child>div:first-child{
  display:block;
  margin:0 0 18px;
}

.ac-category-footer>div>div:first-child>div:last-child>div:last-child{
  display:grid;
  grid-template-columns:1fr;
  gap:10px;
}

.ac-category-footer>div>div:first-child input:not([type="hidden"]),
.ac-category-footer>div>div:first-child textarea,
.ac-category-footer>div>div:first-child button,
.ac-category-footer>div>div:first-child a[href*="wa.me"]{
  width:100%;
  max-width:none;
  grid-column:1;
}

.ac-category-footer>div>div:first-child input:not([type="hidden"]){
  min-height:44px;
}

.ac-category-footer>div>div:first-child textarea{
  min-height:108px;
  grid-column:1;
}

.ac-category-footer>div>div:first-child button,
.ac-category-footer>div>div:first-child a[href*="wa.me"]{
  min-height:44px;
  margin:0;
}

@media (max-width:980px){
  .ac-category-footer>div{
    grid-template-columns:minmax(300px,420px) 1fr;
    gap:34px 44px;
  }
  .ac-category-footer>div>div:nth-child(3){grid-column:2}
  .ac-category-footer>div>div:last-child{grid-column:1/-1}
}

@media (max-width:720px){
  .ac-category-footer>div{
    grid-template-columns:1fr;
    gap:28px;
  }
  .ac-category-footer>div>div:first-child,
  .ac-category-footer>div>div:nth-child(2),
  .ac-category-footer>div>div:nth-child(3),
  .ac-category-footer>div>div:last-child{
    grid-column:1;
  }
  .ac-category-footer>div>div:first-child{
    max-width:none;
  }
}

/* Footer form compact right-side refinement */
.ac-category-footer{
  padding:52px 20px 28px;
}

.ac-category-footer>div{
  grid-template-columns:minmax(0,1.15fr) minmax(220px,.72fr) minmax(280px,320px);
  gap:30px 54px;
  align-items:start;
}

/* Put company/contact information first and the form on the right. */
.ac-category-footer>div>div:nth-child(2){
  grid-column:1;
  grid-row:1;
}
.ac-category-footer>div>div:nth-child(3){
  grid-column:2;
  grid-row:1;
}
.ac-category-footer>div>div:first-child{
  grid-column:3;
  grid-row:1;
  width:100%;
  max-width:320px;
  justify-self:end;
  padding:20px;
  border-radius:16px;
  box-shadow:0 14px 34px rgba(0,0,0,.14);
}

.ac-category-footer>div>div:first-child p{
  font-size:.76rem;
}
.ac-category-footer>div>div:first-child h5{
  margin:2px 0 14px;
  font-size:1.14rem;
}
.ac-category-footer>div>div:first-child>div:last-child>div:first-child{
  margin-bottom:14px;
}
.ac-category-footer>div>div:first-child>div:last-child>div:last-child{
  gap:8px;
}
.ac-category-footer>div>div:first-child input:not([type="hidden"]),
.ac-category-footer>div>div:first-child textarea{
  padding:9px 11px;
  border-radius:9px;
  font-size:.86rem;
}
.ac-category-footer>div>div:first-child input:not([type="hidden"]){
  min-height:38px;
}
.ac-category-footer>div>div:first-child textarea{
  min-height:78px;
}
.ac-category-footer>div>div:first-child button,
.ac-category-footer>div>div:first-child a[href*="wa.me"]{
  min-height:38px;
  border-radius:9px;
  font-size:.76rem;
}
.ac-category-footer>div>div:last-child{
  grid-column:1/-1;
  grid-row:2;
  margin-top:4px;
}

@media (max-width:980px){
  .ac-category-footer>div{
    grid-template-columns:minmax(0,1fr) minmax(280px,320px);
    gap:30px 40px;
  }
  .ac-category-footer>div>div:nth-child(2){grid-column:1;grid-row:1}
  .ac-category-footer>div>div:nth-child(3){grid-column:1;grid-row:2}
  .ac-category-footer>div>div:first-child{grid-column:2;grid-row:1 / span 2}
  .ac-category-footer>div>div:last-child{grid-column:1/-1;grid-row:3}
}

@media (max-width:720px){
  .ac-category-footer>div{
    grid-template-columns:1fr;
    gap:26px;
  }
  .ac-category-footer>div>div:nth-child(2){grid-column:1;grid-row:1}
  .ac-category-footer>div>div:nth-child(3){grid-column:1;grid-row:2}
  .ac-category-footer>div>div:first-child{
    grid-column:1;
    grid-row:3;
    max-width:360px;
    justify-self:start;
  }
  .ac-category-footer>div>div:last-child{grid-column:1;grid-row:4}
}

/* Sticky category contact beside catalogue */
.ac-category-main.ac-category-main-with-sidebar{
  display:grid;
  grid-template-columns:minmax(0,1fr) 320px;
  gap:54px;
  align-items:start;
}

.ac-category-main-with-sidebar>.ac-category-content-column{
  min-width:0;
}

.ac-category-main-with-sidebar>.ac-category-sidebar-wrap{
  display:block!important;
  padding:0;
  background:transparent;
  align-self:start;
}

.ac-category-main-with-sidebar .ac-category-sticky-contact{
  position:sticky;
  top:108px;
}

.ac-category-main-with-sidebar #sidebar{
  position:relative;
  top:auto;
  width:100%;
  max-width:320px;
  margin:0;
  padding:20px;
  border:1px solid #d8e4ef;
  border-radius:18px;
  background:#fff;
  box-shadow:0 16px 42px rgba(22,55,87,.12);
}

.ac-category-main-with-sidebar #sidebar p{
  font-size:.76rem;
}

.ac-category-main-with-sidebar #sidebar h5{
  margin:2px 0 14px;
  font-size:1.16rem;
}

.ac-category-main-with-sidebar #sidebar input,
.ac-category-main-with-sidebar #sidebar textarea{
  margin-bottom:8px;
  padding:9px 11px;
  border-radius:9px;
  font-size:.86rem;
}

.ac-category-main-with-sidebar #sidebar input{
  min-height:38px;
}

.ac-category-main-with-sidebar #sidebar textarea{
  min-height:82px;
  rows:4;
}

.ac-category-main-with-sidebar #sidebar button,
.ac-category-main-with-sidebar #sidebar a[href*="wa.me"]{
  min-height:38px;
  margin-top:4px;
  padding:0 12px;
  border-radius:9px;
  font-size:.76rem;
}

.ac-category-main-with-sidebar #sidebar button{
  width:100%;
}

.ac-category-main-with-sidebar #sidebar a[href*="wa.me"]{
  width:100%;
  margin-left:0;
}

/* Remove the duplicate form from the footer again. */
.ac-category-footer>div>div:first-child{
  display:none!important;
}

.ac-category-footer{
  padding:46px 20px 28px;
}

.ac-category-footer>div{
  grid-template-columns:minmax(0,1.35fr) minmax(240px,.72fr);
  gap:34px 72px;
}

.ac-category-footer>div>div:nth-child(2){
  grid-column:1;
  grid-row:1;
}

.ac-category-footer>div>div:nth-child(3){
  grid-column:2;
  grid-row:1;
}

.ac-category-footer>div>div:last-child{
  grid-column:1/-1;
  grid-row:2;
}

@media (max-width:1100px){
  .ac-category-main.ac-category-main-with-sidebar{
    grid-template-columns:minmax(0,1fr) 290px;
    gap:34px;
  }
  .ac-category-main-with-sidebar #sidebar{max-width:290px}
}

@media (max-width:900px){
  .ac-category-main.ac-category-main-with-sidebar{
    display:block;
  }
  .ac-category-main-with-sidebar>.ac-category-sidebar-wrap{
    margin-top:44px;
  }
  .ac-category-main-with-sidebar .ac-category-sticky-contact{
    position:relative;
    top:auto;
  }
  .ac-category-main-with-sidebar #sidebar{
    max-width:520px;
  }
  .ac-category-footer>div{
    grid-template-columns:1fr 1fr;
    gap:30px 36px;
  }
}

@media (max-width:650px){
  .ac-category-main-with-sidebar #sidebar{
    max-width:none;
    padding:20px;
  }
  .ac-category-footer>div{
    grid-template-columns:1fr;
    gap:26px;
  }
  .ac-category-footer>div>div:nth-child(2),
  .ac-category-footer>div>div:nth-child(3),
  .ac-category-footer>div>div:last-child{
    grid-column:1;
  }
  .ac-category-footer>div>div:nth-child(2){grid-row:1}
  .ac-category-footer>div>div:nth-child(3){grid-row:2}
  .ac-category-footer>div>div:last-child{grid-row:3}
}



/* Printing category page refinement */
.ac-cat-impressao-de-cartoes-pvc .ac-printing-content{
  display:grid;
  gap:22px;
}

.ac-cat-impressao-de-cartoes-pvc .ac-printing-content>section{
  max-width:none;
  margin:0;
  padding:30px 32px;
  border:1px solid var(--ac-cat-line);
  border-radius:22px;
  background:#fff;
  box-shadow:0 8px 24px rgba(15,35,60,.045);
}

.ac-cat-impressao-de-cartoes-pvc .ac-printing-content>section h2{
  margin:0 0 16px;
  font-size:clamp(1.45rem,2vw,1.85rem);
  line-height:1.2;
}

.ac-cat-impressao-de-cartoes-pvc .ac-printing-content>section p{
  max-width:none;
}

.ac-cat-impressao-de-cartoes-pvc .ac-printing-intro{
  position:relative;
  overflow:hidden;
  padding:34px 36px;
  background:linear-gradient(145deg,#ffffff 0%,#f2f7fc 100%);
}

.ac-cat-impressao-de-cartoes-pvc .ac-printing-intro::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  bottom:0;
  width:5px;
  background:linear-gradient(180deg,var(--ac-cat-primary),#55a7e5);
}

.ac-cat-impressao-de-cartoes-pvc .ac-printing-intro p:last-child{margin-bottom:0}

.ac-cat-impressao-de-cartoes-pvc .ac-printing-benefits ul,
.ac-cat-impressao-de-cartoes-pvc .ac-printing-applications ul,
.ac-cat-impressao-de-cartoes-pvc .ac-printing-options ul{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px 22px;
  padding:0;
  list-style:none;
}

.ac-cat-impressao-de-cartoes-pvc .ac-printing-benefits li,
.ac-cat-impressao-de-cartoes-pvc .ac-printing-applications li,
.ac-cat-impressao-de-cartoes-pvc .ac-printing-options li{
  position:relative;
  margin:0;
  padding:12px 14px 12px 38px;
  border-radius:12px;
  background:#f6f9fc;
  color:#536579;
}

.ac-cat-impressao-de-cartoes-pvc .ac-printing-benefits li::before,
.ac-cat-impressao-de-cartoes-pvc .ac-printing-applications li::before,
.ac-cat-impressao-de-cartoes-pvc .ac-printing-options li::before{
  content:"✓";
  position:absolute;
  left:14px;
  top:11px;
  color:var(--ac-cat-primary);
  font-weight:800;
}

.ac-cat-impressao-de-cartoes-pvc .ac-printing-methods{
  padding:34px 34px 36px;
}

.ac-cat-impressao-de-cartoes-pvc .ac-printing-methods>p{
  margin-bottom:24px;
}

.ac-cat-impressao-de-cartoes-pvc .ac-service-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
}

.ac-cat-impressao-de-cartoes-pvc .ac-service-cell{
  min-width:0;
}

.ac-cat-impressao-de-cartoes-pvc .ac-service-tile{
  position:relative;
  height:100%;
  min-height:275px;
  display:flex;
  flex-direction:column;
  padding:18px 18px 20px;
  overflow:hidden;
  border:1px solid #dce7f0;
  border-radius:17px;
  background:linear-gradient(145deg,#f8fbfe 0%,#eef5fa 100%);
  color:var(--ac-cat-text)!important;
  box-shadow:0 7px 20px rgba(20,50,78,.045);
}

.ac-cat-impressao-de-cartoes-pvc .ac-service-tile::after{
  content:"→";
  position:absolute;
  right:16px;
  bottom:16px;
  width:34px;
  height:34px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:#fff;
  color:var(--ac-cat-primary);
  font-weight:800;
  box-shadow:0 5px 14px rgba(16,52,83,.08);
  transition:all .22s ease;
}

.ac-cat-impressao-de-cartoes-pvc .ac-service-tile:hover{
  transform:translateY(-4px);
  border-color:#bad4ea;
  box-shadow:0 16px 34px rgba(15,35,60,.10);
}

.ac-cat-impressao-de-cartoes-pvc .ac-service-tile:hover::after{
  background:var(--ac-cat-primary);
  color:#fff;
  transform:translateX(2px);
}

.ac-cat-impressao-de-cartoes-pvc .ac-service-tile img{
  width:100%;
  height:130px;
  margin:0 0 16px;
  padding:8px;
  object-fit:contain;
  filter:drop-shadow(0 12px 15px rgba(18,58,92,.10));
  transition:transform .25s ease;
}

.ac-cat-impressao-de-cartoes-pvc .ac-service-tile:hover img{transform:scale(1.045)}

.ac-cat-impressao-de-cartoes-pvc .ac-service-tile h3{
  margin:0 42px 8px 0;
  font-size:1.08rem;
  line-height:1.25;
}

.ac-cat-impressao-de-cartoes-pvc .ac-service-tile p{
  margin:0 36px 0 0;
  color:#65778a;
  font-size:.88rem;
  line-height:1.5;
}

.ac-cat-impressao-de-cartoes-pvc .ac-printing-process ol{
  margin:4px 0 0;
  padding:0;
  list-style:none;
  counter-reset:ac-process;
}

.ac-cat-impressao-de-cartoes-pvc .ac-printing-process li{
  position:relative;
  min-height:44px;
  margin:0;
  padding:10px 0 14px 54px;
  color:#536579;
  counter-increment:ac-process;
}

.ac-cat-impressao-de-cartoes-pvc .ac-printing-process li::before{
  content:counter(ac-process);
  position:absolute;
  left:0;
  top:5px;
  width:36px;
  height:36px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:#eaf4fc;
  color:var(--ac-cat-primary);
  font-weight:800;
}

.ac-cat-impressao-de-cartoes-pvc .ac-printing-process li:not(:last-child)::after{
  content:"";
  position:absolute;
  left:17px;
  top:41px;
  width:2px;
  height:calc(100% - 34px);
  background:#d9e7f2;
}

.ac-cat-impressao-de-cartoes-pvc .ac-printing-faq{
  background:#f8fbfe;
}

.ac-cat-impressao-de-cartoes-pvc #faq-custom{
  display:grid;
  gap:10px;
}

.ac-cat-impressao-de-cartoes-pvc #faq-custom>div{
  overflow:hidden;
  border:1px solid #dce7f0;
  border-radius:14px;
  background:#fff;
}

.ac-cat-impressao-de-cartoes-pvc .faq-question{
  width:100%;
  min-height:58px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:14px 16px 14px 18px;
  border:0;
  background:#fff;
  color:#243c55;
  text-align:left;
  font-weight:750;
  cursor:pointer;
}

.ac-cat-impressao-de-cartoes-pvc .faq-question:hover,
.ac-cat-impressao-de-cartoes-pvc .faq-question.active{
  background:#f1f7fc;
  color:var(--ac-cat-primary-dark);
}

.ac-cat-impressao-de-cartoes-pvc .faq-icon{
  flex:0 0 32px;
  width:32px;
  height:32px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:#eaf4fc;
  color:var(--ac-cat-primary);
  font-size:1.2rem;
  line-height:1;
}

.ac-cat-impressao-de-cartoes-pvc .faq-answer{
  display:none;
  padding:0 18px 18px;
  color:#607286;
}

.ac-cat-impressao-de-cartoes-pvc .faq-answer.open{display:block}
.ac-cat-impressao-de-cartoes-pvc .faq-answer p{margin:0}

.ac-cat-impressao-de-cartoes-pvc .ac-printing-cta{
  position:relative;
  overflow:hidden;
  border:0!important;
  background:linear-gradient(125deg,#0a3154 0%,#0d67c7 100%)!important;
  color:#fff;
  box-shadow:0 18px 42px rgba(13,103,199,.20)!important;
}

.ac-cat-impressao-de-cartoes-pvc .ac-printing-cta::after{
  content:"";
  position:absolute;
  width:220px;
  height:220px;
  right:-80px;
  top:-100px;
  border-radius:50%;
  background:rgba(255,255,255,.08);
}

.ac-cat-impressao-de-cartoes-pvc .ac-printing-cta h2,
.ac-cat-impressao-de-cartoes-pvc .ac-printing-cta p{
  position:relative;
  z-index:1;
  color:#fff;
}

.ac-cat-impressao-de-cartoes-pvc .ac-printing-cta p{
  max-width:680px;
  color:rgba(255,255,255,.82);
}

.ac-cat-impressao-de-cartoes-pvc .ac-printing-cta>a{
  position:relative;
  z-index:1;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  padding:0 18px;
  border-radius:10px;
  background:#fff;
  color:var(--ac-cat-primary)!important;
  font-weight:800;
  box-shadow:0 10px 24px rgba(0,0,0,.12);
}

.ac-cat-impressao-de-cartoes-pvc .ac-printing-cta>a:hover{
  transform:translateY(-2px);
  background:#eef7ff;
}

@media (max-width:1100px){
  .ac-cat-impressao-de-cartoes-pvc .ac-service-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media (max-width:760px){
  .ac-cat-impressao-de-cartoes-pvc .ac-printing-content>section{
    padding:24px;
  }
  .ac-cat-impressao-de-cartoes-pvc .ac-printing-benefits ul,
  .ac-cat-impressao-de-cartoes-pvc .ac-printing-applications ul,
  .ac-cat-impressao-de-cartoes-pvc .ac-printing-options ul{
    grid-template-columns:1fr;
  }
  .ac-cat-impressao-de-cartoes-pvc .ac-service-grid{
    grid-template-columns:1fr;
  }
  .ac-cat-impressao-de-cartoes-pvc .ac-service-tile{
    min-height:0;
  }
}

@media (max-width:520px){
  .ac-cat-impressao-de-cartoes-pvc .ac-printing-content>section,
  .ac-cat-impressao-de-cartoes-pvc .ac-printing-intro{
    padding:20px;
    border-radius:18px;
  }
  .ac-cat-impressao-de-cartoes-pvc .ac-service-tile img{
    height:115px;
  }
}

/* Printing CTA strong contrast fix */
.ac-cat-impressao-de-cartoes-pvc .ac-printing-cta strong{
  color:#fff;
}

