/* CretePro Trading — static site styles
   Palette matches the live app: navy #1a2b4a, orange #e88a3c, surface #faf9f6 */
:root {
  --navy: #1a2b4a;
  --navy-foreground: #ffffff;
  --orange: #e65401;
  --orange-foreground: #ffffff;
  --bg: #ffffff;
  --fg: #1a2b4a;
  --muted: #6b7280;
  --border: #e5e7eb;
  --surface: #faf9f6;
  --shadow-card: 0 10px 40px -15px rgba(26,43,74,0.15);
  --shadow-elev: 0 25px 60px -20px rgba(26,43,74,0.25);
  --font-display: "Plus Jakarta Sans","Inter",sans-serif;
  --font-sans: "Inter",sans-serif;
}
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--fg);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: 0; background: none; font: inherit; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.text-orange { color: var(--orange); }
.bg-surface { background: var(--surface); }
.section { padding: 80px 0; }
@media (min-width: 1024px) { .section { padding: 75px 0; } }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; line-height: 1.05; color: var(--navy); }
h1 { font-size: clamp(2rem, 5.5vw, 4.75rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.75rem, 4vw, 2.4rem);
    line-height: 43px;}
h3 { font-size: 1.25rem; }
p  { color: var(--muted); }
.lead { color: var(--muted); font-size: 1.05rem; margin-top: 12px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 24px; font-weight: 800; text-transform: uppercase;
  font-size: 12.5px; letter-spacing: .06em; transition: all .2s;
  white-space: nowrap;
}
.btn-orange { background: var(--orange); color: #fff; box-shadow: 0 10px 25px -12px rgba(232,138,60,.6); }
.btn-orange:hover { background: #d67a2c; transform: translateY(-1px); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: #14213a; }
.btn-outline {border: 1px solid rgba(26, 43, 74, .15); color: var(--navy); }
.btn-outline:hover { border-color: var(--orange); color: var(--orange); }
.btn-ghost { border: 2px solid rgba(255,255,255,.3); color: #fff; }
.btn-ghost:hover { background: rgba(255,255,255,.1); }
.btn-pill { border-radius: 999px; }
.btn-sm { padding: 10px 16px; font-size: 11.5px; }
.btn-lg { padding: 18px 32px; font-size: 13px; }
.btn-cta { padding: 14px 20px; }
.arrow { font-weight: 400; }

.link-orange { color: var(--orange); font-weight: 700; text-transform: uppercase; font-size: 12.5px; letter-spacing: .05em; }
.link-orange:hover { text-decoration: underline; }

/* Top utility bar */
.topbar { background: var(--navy); color: rgba(255,255,255,.9); font-size: 13px; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; padding: 8px 24px; }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 20px; }
.topbar-left span, .topbar-right a { display: inline-flex; align-items: center; gap: 6px; }
.topbar-right a:hover { color: var(--orange); }
.sep { opacity: .5; }
.muted { opacity: .8; }
@media (max-width: 767px) { .topbar { display: none; } }

/* Header */
.site-header { position: sticky; top: 0; z-index: 40; background: rgba(255,255,255,.95); backdrop-filter: blur(8px); border-bottom: 1px solid var(--border); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 16px 24px; }
.brand img {
    height: 48px!important;
    width: auto;
    padding: 0px!important;
}
.nav-desktop { display: none; gap: 32px; font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }
.nav-desktop a:hover, .nav-desktop a.active { color: var(--orange); }
.menu-toggle { display: block; padding: 8px; font-size: 24px; color: var(--navy); }
@media (min-width: 1024px) { .nav-desktop { display: flex; } .menu-toggle { display: none; } .btn-cta { display: inline-flex; } }
@media (max-width: 640px) { .btn-cta { display: none; } }

/* Mobile drawer */
.mobile-drawer { position: fixed; inset: 0; z-index: 50; pointer-events: none; opacity: 0; transition: opacity .25s; }
body.menu-open .mobile-drawer { pointer-events: auto; opacity: 1; }
.drawer-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.5); }
.drawer-panel { position: absolute; top: 0; right: 0; height: 100%; width: 300px; background: #fff; box-shadow: -10px 0 40px rgba(0,0,0,.2); transform: translateX(100%); transition: transform .3s; display: flex; flex-direction: column; }
body.menu-open .drawer-panel { transform: translateX(0); }
.drawer-head { display: flex; justify-content: space-between; align-items: center; padding: 20px; border-bottom: 1px solid var(--border); }
.drawer-head img { height: 40px; }
.drawer-head button { font-size: 22px; color: var(--navy); }
.drawer-nav { display: flex; flex-direction: column; padding: 20px; gap: 4px; font-weight: 600; text-transform: uppercase; font-size: 13px; letter-spacing: .04em; }
.drawer-nav a { padding: 12px; border-radius: 4px; }
.drawer-nav a:hover, .drawer-nav a.active { background: rgba(232,138,60,.1); color: var(--orange); }
.drawer-nav .btn { justify-content: center; margin-top: 12px; }

/* Hero (home) */
.hero { position: relative; background: var(--navy); min-height: 520px; overflow: hidden; }
@media (min-width: 1024px) { .hero { min-height: 600px; } }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgb(11 11 11 / 95%), rgb(0 0 0 / 18%), rgb(26 43 74 / 9%));
}
/* .hero-grid { position: absolute; inset: 0; opacity: .08; pointer-events: none; background-image: linear-gradient(to right, #fff 1px, transparent 1px), linear-gradient(to bottom, #fff 1px, transparent 1px); background-size: 44px 44px; } */
.hero-inner { position: relative; display: flex; align-items: center; min-height: 520px; padding-top: 60px; padding-bottom: 60px; }
@media (min-width: 1024px) { .hero-inner { min-height: 600px; } }
.hero-content { max-width: 640px; }
.hero-content h1 { color: #fff; }
.hero-content p { color: rgba(255,255,255,.75); margin-top: 20px; font-size: 1.05rem; max-width: 560px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 28px; }
.eyebrow { display: inline-flex; align-items: center; gap: 12px; color: var(--orange); font-weight: 700; text-transform: uppercase; letter-spacing: .25em; font-size: 11px; margin-bottom: 16px; }
.dash { display: inline-block; width: 40px; height: 2px; background: var(--orange); }
.play { display: inline-grid; place-items: center; width: 26px; height: 26px; border-radius: 999px; background: rgba(255,255,255,.1); font-size: 10px; }
.hero-corner { position: absolute; width: 48px; height: 48px; }
.hero-corner.tl { top: 24px; left: 24px; border-top: 2px solid var(--orange); border-left: 2px solid var(--orange); }
.hero-corner.br { bottom: 24px; right: 24px; border-bottom: 2px solid var(--orange); border-right: 2px solid var(--orange); }
.hero-badge { position: absolute; bottom: 24px; right: 90px; background: var(--orange); color: #fff; padding: 12px 20px; border-radius: 8px; box-shadow: 0 20px 40px -10px rgba(0,0,0,.3); }
.hero-badge .mini { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; opacity: .8; font-weight: 700; }
.hero-badge .big { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; font-size: 15px; }
@media (max-width: 767px) { .hero-badge { display: none; } }

.eyebrow-line { color: var(--orange); font-weight: 700; text-transform: uppercase; letter-spacing: .3em; font-size: 13px; margin-bottom: 12px; }

/* About section */
.about-grid { display: grid; gap: 48px; align-items: center; }
@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; gap: 80px; } }
.about-media {
    position: relative;
    box-shadow: 0px 0px 5px #ddd;
}
.about-badge {
    position: absolute;
    bottom: -30px;
    left: -27px;
    background: var(--orange);
    color: #fff;
    padding: 15px;
    box-shadow: var(--shadow-elev);
}
.about-badge .big { font-family: var(--font-display); font-size: 3rem; font-weight: 800; line-height: 1; }
.about-badge .small { margin-top: 4px; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; font-size: 13px; }
.feature-list { margin: 32px 0; display: flex; flex-direction: column; gap: 20px; }
.feature { display: flex; gap: 16px; }
.feature-icon { display: grid; place-items: center; width: 48px; height: 48px; background: rgba(232,138,60,.1); color: var(--orange); flex-shrink: 0; font-size: 22px; }
.feature h3 { font-size: 1.05rem; margin-bottom: 4px; }
.feature p { font-size: 14px; }

/* Section head */
.section-head { display: grid; gap: 14px; align-items: end; margin-bottom: 48px; }
.section-head.narrow { max-width: 720px; margin-bottom: 48px; }
@media (min-width: 1024px) {
  .section-head:not(.narrow) { grid-template-columns: 2fr 1fr; }
  .section-head:not(.narrow) > *:last-child { justify-self: end; }
}
.section-title { margin-bottom: 32px; }

/* Services grid */
.services-grid { display: grid; gap: 24px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }
.service-card { background: #fff; border: 1px solid var(--border); overflow: hidden; transition: box-shadow .3s; }
.service-card:hover { box-shadow: var(--shadow-card); }
.service-image { position: relative; aspect-ratio: 3/3; overflow: hidden; }
.service-image img { width: 100%; height: 100%; object-fit: contain; transition: transform .5s; }
.service-card:hover .service-image img { transform: scale(1.05); }
.service-num { position: absolute; top: 16px; left: 16px; background: var(--orange); color: #fff; padding: 4px 10px; font-weight: 800; font-size: 13px; }
.service-body { padding: 24px; }
.service-body h3 { margin-bottom: 10px; }
.service-body p { font-size: 14px; margin-bottom: 14px; }

/* Process */
.process-grid { display: grid; gap: 48px; align-items: center; }
@media (min-width: 1024px) { .process-grid { grid-template-columns: 1fr 1fr; } }
.process-image { margin-top: 32px; width: 100%; }
.steps { display: flex; flex-direction: column; }
.step { display: flex; gap: 24px; padding: 24px 0; border-bottom: 1px solid var(--border); transition: color .2s; }
.step:last-child { border-bottom: 0; }
.step-num { font-family: var(--font-display); font-weight: 800; font-size: 3rem; color: rgba(107,114,128,.4); width: 80px; flex-shrink: 0; transition: color .2s; }
.step:hover .step-num { color: var(--orange); }
.step h3 { margin-bottom: 6px; }
.step p { font-size: 14px; }

/* Stats */
.stats { background: var(--navy); color: #fff; padding: 64px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
@media (min-width: 1024px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat { text-align: center; padding-left: 24px; border-left: 2px solid var(--orange); }
.stat:first-child { border-left: 0; padding-left: 0; }
@media (max-width: 1023px) { .stat:nth-child(odd) { border-left: 0; padding-left: 0; } }
.stat-n { font-family: var(--font-display); font-weight: 800; color: var(--orange); font-size: 3rem; }
@media (min-width: 1024px) { .stat-n { font-size: 3rem; } }
.stat-l { margin-top: 8px; text-transform: uppercase; letter-spacing: .05em; font-size: 13px; opacity: .8; }

/* Why choose */
.why-grid { display: grid; gap: 24px; grid-template-columns: 1fr; }
@media (min-width: 768px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }
.why-card { background: #fff; padding: 28px; border-left: 4px solid var(--orange); box-shadow: var(--shadow-card); }
.why-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.check { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 999px; background: rgba(232,138,60,.1); color: var(--orange); font-weight: 800; }
.why-card h3 { font-size: 1.15rem; }
.why-card p { font-size: 14px; }
.value-icon { width: 48px; height: 48px; display: grid; place-items: center; background: rgba(232,138,60,.1); color: var(--orange); font-size: 22px; margin-bottom: 16px; }
.values-grid { display: grid; gap: 24px; grid-template-columns: 1fr; }
@media (min-width: 768px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .values-grid { grid-template-columns: repeat(4, 1fr); } }

/* FAQ */
.faq-grid { display: grid; gap: 48px; }
@media (min-width: 1024px) { .faq-grid { grid-template-columns: 4fr 8fr; } }
.faqs { display: flex; flex-direction: column; gap: 12px; }
.faq { background: var(--surface); border-left: 4px solid var(--orange); padding: 24px; }
.faq summary { display: flex; align-items: center; justify-content: space-between; gap: 16px; cursor: pointer; font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: 1.05rem; color: var(--navy); list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.plus { display: grid; place-items: center; width: 32px; height: 32px; border-radius: 999px; background: var(--orange); color: #fff; font-weight: 800; flex-shrink: 0; transition: transform .2s; }
.faq[open] .plus { transform: rotate(45deg); }
.faq p { margin-top: 16px; }

/* CTA sections */
.strip-cta { background: var(--orange); color: #fff; }
.strip-cta-inner { display: grid; gap: 24px; padding: 32px 24px; align-items: center; }
@media (min-width: 768px) { .strip-cta-inner { grid-template-columns: 1fr auto; } }
.strip-cta-left { display: flex; align-items: center; gap: 16px; }
.strip-cta-left p{color:#fff;}
.strip-cta-icon { width: 56px; height: 56px; border-radius: 999px; background: rgba(255,255,255,.15); display: grid; place-items: center; flex-shrink: 0; font-size: 22px; }
.strip-cta .bold { font-weight: 700; font-size: 1.1rem; }
.strip-cta .small { font-size: 14px; opacity: .85; }
.strip-cta-phone { font-family: var(--font-display); font-weight: 800; font-size: 2rem; }
@media (min-width: 1024px) { .strip-cta-phone { font-size: 1.7rem; } }

.strip-orange { background: var(--orange); color: #fff; }
.strip-orange-inner { display: grid; gap: 24px; padding: 48px 24px; align-items: center; }
@media (min-width: 768px) { .strip-orange-inner { grid-template-columns: 1fr auto; } }
.strip-orange h2 { color: #fff; font-size: 1.75rem; }
.strip-orange p { color: rgba(255,255,255,.85); margin-top: 4px; }

.cta-dark { position: relative; background: var(--navy); color: #fff; overflow: hidden; }
.cta-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .2; }
.cta-overlay { position: absolute; inset: 0; background: rgba(26,43,74,.85); }
.cta-inner { position: relative; padding: 96px 24px; text-align: center;     max-width: 80%; margin: 0 auto; }
.cta-inner h2 {
    color: #fff;
    font-size: clamp(2rem, 4.5vw, 3rem);
    line-height: 60px;
}
.cta-inner p { color: rgba(255,255,255,.8); }
.cta-actions { margin-top: 40px; display: grid; grid-template-columns: 1fr; gap: 16px; max-width: 420px; margin-left: auto; margin-right: auto; }
@media (min-width: 640px) { .cta-actions { grid-template-columns: 1fr 1fr; } }

/* Page hero (about/products/blogs/enquiry) */
.page-hero { position: relative; background: var(--navy); color: #fff; overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .4; }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, var(--navy), rgba(26,43,74,.85), rgba(26,43,74,.4)); }
.page-hero-inner { position: relative; padding: 80px 24px; }
@media (min-width: 1024px) { .page-hero-inner { padding: 112px 24px; } }
.page-hero h1 {
    color: #fff;
    max-width: 800px;
    font-size: clamp(2rem, 5.5vw, 3.5rem);
    line-height: 70px;
}
.page-hero p { color: rgba(255,255,255,.8); max-width: 640px; font-size: 1.1rem; margin-top: 20px;  font-size: 14px;
    color: var(--muted);
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;color: #ffffff;
    text-overflow: ellipsis;}
.page-hero.small .page-hero-inner { padding: 64px 24px; }

/* Products toolbar */
.products-toolbar { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 32px; align-items: center; }
#product-search { flex: 1 1 240px; min-width: 200px; padding: 12px 16px; border: 1px solid var(--border); background: #fff; }
#product-search:focus { outline: 2px solid var(--orange); outline-offset: -1px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { padding: 8px 14px; border: 1px solid var(--border); background: #fff; font-size: 12.5px; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }
.chip:hover { border-color: var(--orange); color: var(--orange); }
.chip.active { background: var(--orange); color: #fff; border-color: var(--orange); }
.empty-state { text-align: center; padding: 40px; color: var(--muted); }

/* Product grid */
.product-grid { display: grid; gap: 24px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1280px) { .product-grid { grid-template-columns: repeat(4, 1fr); } }
.product-card { background: #fff; border: 1px solid var(--border); overflow: hidden; display: flex; flex-direction: column; transition: border-color .2s, box-shadow .2s; }
.product-card:hover { border-color: var(--orange); box-shadow: var(--shadow-card); }
.product-image { display: block;     aspect-ratio: 3 / 3; overflow: hidden; background: var(--surface); }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.product-card:hover .product-image img { transform: scale(1.05); }
.product-body { padding: 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.product-cat { color: var(--orange); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.product-body h3 { font-size: 1.1rem; }
.product-desc { font-size: 14px; color: var(--muted); flex: 1; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.product-body .btn { align-self: flex-start; margin-top: 8px; }

/* Breadcrumb */
.breadcrumb { background: var(--surface); border-bottom: 1px solid var(--border); font-size: 12px; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); }
.breadcrumb .container { padding-top: 16px; padding-bottom: 16px; overflow-x: auto; white-space: nowrap; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span { color: var(--navy); font-weight: 600; }

/* Product detail */
.product-hero { display: grid; gap: 40px; align-items: start; }
@media (min-width: 1024px) { .product-hero { grid-template-columns: 1fr 1fr; gap: 64px; } }
.product-hero-image { background: #fff; border: 1px solid var(--border); }
.product-hero h1 { font-size: clamp(2rem, 4vw, 3.2rem); }
.product-hero .lead { font-size: 1.1rem; margin: 20px 0; }
.two-col { display: grid; gap: 40px; }
@media (min-width: 1024px) { .two-col { grid-template-columns: 1fr 1fr; } }
.info-card { background: #fff; padding: 32px; }
.info-card.border-orange { border-left: 4px solid var(--orange); }
.info-card.border-navy { border-left: 4px solid var(--navy); }
.info-card h2 { font-size: 1.5rem; margin-bottom: 20px; }
.check-list { display: flex; flex-direction: column; gap: 12px; }
.check-list li { display: flex; gap: 12px; font-size: 14px; color: var(--muted); }
.check-list li::before { content: "✓"; display: grid; place-items: center; width: 24px; height: 24px; border-radius: 999px; background: rgba(232,138,60,.1); color: var(--orange); flex-shrink: 0; font-weight: 800; font-size: 12px; }
.check-list.navy li::before { background: rgba(26,43,74,.1); color: var(--navy); }
.tech-table { border: 1px solid var(--border); overflow-x: auto; }
.tech-table table { width: 100%; border-collapse: collapse; font-size: 14px; }
.tech-table th, .tech-table td { padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--border); vertical-align: top; }
.tech-table tr:last-child th, .tech-table tr:last-child td { border-bottom: 0; }
.tech-table tr:nth-child(even) { background: var(--surface); }
.tech-table th { font-weight: 700; color: var(--navy); width: 33%; }
.tech-table td { color: var(--muted); }

/* Blogs */
.blog-card { background: #fff; border: 1px solid var(--border); overflow: hidden; display: flex; flex-direction: column; transition: border-color .2s; }
.blog-card:hover { border-color: var(--orange); }
.blog-image { display: block; aspect-ratio: 16/10; overflow: hidden; background: var(--surface); }
.blog-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.blog-card:hover .blog-image img { transform: scale(1.05); }
.blog-body { padding: 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.blog-body h3 { font-size: 1.1rem; }
.blog-meta { font-size: 12px; color: var(--muted); display: flex; gap: 12px; }

/* Blog article */
.blog-article { padding: 48px 0; }
.container.narrow { max-width: 820px; }
.blog-article h1 { font-size: clamp(1.8rem, 4vw, 3rem); margin-bottom: 20px; }
.blog-meta-row { display: flex; flex-wrap: wrap; gap: 20px; padding-bottom: 24px; border-bottom: 1px solid var(--border); font-size: 14px; color: var(--muted); }
.blog-hero-image { margin: 0px 0px 32px 0;aspect-ratio: 19 / 9; overflow: hidden; background: var(--surface); }
.blog-hero-image img { width: 100%; height: 100%; object-fit: cover; }
.prose p { color: var(--muted); font-size: 1.05rem; line-height: 1.75; margin-bottom: 20px; }
.prev-next { display: grid; gap: 16px; margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--border); }
@media (min-width: 640px) { .prev-next { grid-template-columns: 1fr 1fr; } }
.pn-card { display: block; border: 1px solid var(--border); padding: 20px; transition: border-color .2s; }
.pn-card:hover { border-color: var(--orange); }
.pn-card small { color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .1em; }
.pn-card strong { display: block; font-family: var(--font-display); color: var(--navy); margin-top: 8px; text-transform: uppercase; font-size: 15px; }
.pn-card.right { text-align: right; }

/* Related products slider (Swiper) */
.related-swiper-outer { position: relative; padding: 0 4px 44px; }
.related-swiper { overflow: hidden; }
.related-swiper .swiper-slide { height: auto; }
.related-swiper .swiper-slide .product-card { height: 100%; }
.related-swiper-prev, .related-swiper-next {
  width: 44px; height: 44px; margin-top: -22px;
  background: #fff; border: 1px solid var(--border); color: var(--navy);
  box-shadow: var(--shadow-card); transition: all .2s;
}
.related-swiper-prev::after, .related-swiper-next::after { font-size: 15px; font-weight: 800; }
.related-swiper-prev:hover, .related-swiper-next:hover { background: var(--orange); border-color: var(--orange); color: #fff; }
.related-swiper-prev.swiper-button-disabled, .related-swiper-next.swiper-button-disabled { opacity: .35; }
@media (max-width: 767px) { .related-swiper-prev, .related-swiper-next { display: none; } }
.related-swiper-pagination { position: absolute; left: 0; right: 0; bottom: 0; display: flex; justify-content: center; }
.related-swiper-pagination .swiper-pagination-bullet { width: 9px; height: 9px; background: rgba(26,43,74,.25); opacity: 1; border-radius: 999px; transition: all .2s; }
.related-swiper-pagination .swiper-pagination-bullet-active { background: var(--orange); width: 22px; border-radius: 999px; }

/* Blog article — main + sidebar layout */
.blog-layout { display: grid; gap: 40px; }
@media (min-width: 1024px) { .blog-layout { grid-template-columns: 8fr 4fr; align-items: start; } }
.blog-main { min-width: 0; }
.blog-sidebar { display: flex; flex-direction: column; gap: 32px; }
@media (min-width: 1024px) { .blog-sidebar { position: sticky; top: 96px; } }
.sidebar-widget { background: #fff; border: 1px solid var(--border); padding: 28px; box-shadow: var(--shadow-card); }
.sidebar-title { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; font-size: 1.05rem; letter-spacing: .02em; color: var(--navy); margin-bottom: 20px; padding-bottom: 16px; border-bottom: 2px solid var(--orange); }
.recent-posts { display: flex; flex-direction: column; gap: 20px; }
.recent-post-item { display: flex; gap: 14px; }
.recent-post-thumb { flex-shrink: 0; width: 72px; height: 72px; overflow: hidden; background: var(--surface); }
.recent-post-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.recent-post-item:hover .recent-post-thumb img { transform: scale(1.08); }
.recent-post-body { min-width: 0; }
.recent-post-body h4 { font-family: var(--font-display); font-weight: 700; text-transform: none; letter-spacing: 0; font-size: 13.5px; line-height: 1.4; color: var(--navy); transition: color .2s; }
.recent-post-body a:hover h4 { color: var(--orange); }
.recent-post-date { display: block; margin-top: 6px; font-size: 11.5px; color: var(--muted); }

/* Enquiry form */
.enquiry-grid { display: grid; gap: 32px; }
@media (min-width: 1024px) { .enquiry-grid { grid-template-columns: 4fr 8fr; } }
.contact-list { display: flex; flex-direction: column; gap: 16px; }
.contact-list li { display: flex; flex-direction: column; padding: 12px 0; border-bottom: 1px solid var(--border); font-size: 14px; }
.contact-list li:last-child { border-bottom: 0; }
.contact-list strong { color: var(--navy); text-transform: uppercase; font-size: 12px; letter-spacing: .05em; margin-bottom: 4px; }
.enquiry-form { display: flex; flex-direction: column; gap: 20px; background: var(--surface); padding: 32px; }
.enquiry-form label { display: flex; flex-direction: column; gap: 6px; font-weight: 600; text-transform: uppercase; font-size: 12px; letter-spacing: .04em; color: var(--navy); }
.enquiry-form input, .enquiry-form textarea, .enquiry-form select { padding: 12px 14px; border: 1px solid var(--border); background: #fff; font-size: 15px; font-weight: 400; text-transform: none; letter-spacing: 0; color: var(--fg); }
.enquiry-form input:focus, .enquiry-form textarea:focus, .enquiry-form select:focus { outline: 2px solid var(--orange); outline-offset: -1px; border-color: var(--orange); }
.enquiry-form textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; gap: 20px; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-success { background: rgba(34,197,94,.1); color: #16a34a; padding: 16px; border-left: 4px solid #16a34a; font-weight: 600; font-size: 14px; }

/* Footer */
.site-footer { background: #0f1a2e; color: rgba(255,255,255,.75); padding-top: 64px; }
.footer-grid { display: grid; gap: 40px; grid-template-columns: 1fr; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }
.footer-logo { background: #fff; display: inline-block; padding: 12px; margin-bottom: 20px; }
.footer-logo img { height: 40px; }
.site-footer p { color: rgba(255,255,255,.75); font-size: 14px; }
.site-footer h4 { color: #fff; margin-bottom: 20px; font-size: 1.05rem; }
.site-footer ul { display: flex; flex-direction: column; gap: 12px; font-size: 14px; }
.site-footer ul a:hover { color: var(--orange); }
.site-footer ul li { display: flex; align-items: flex-start; gap: 8px; }
.socials { margin-top: 20px; display: flex; gap: 12px; }
.socials a { width: 36px; height: 36px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.2); transition: all .2s; }
.socials a:hover { background: var(--orange); border-color: var(--orange); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 48px; padding: 24px 0; font-size: 13px; text-align: center; color: rgba(255,255,255,.55); }

/* SVG icon rendering via CSS mask — crisp, consistent on all devices (no emoji fallback issues) */
[data-icon]::before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: -0.15em;
  background-color: currentColor;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}
[data-icon="clock"]::before { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpolyline points='12 6 12 12 16 14'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpolyline points='12 6 12 12 16 14'/%3E%3C/svg%3E"); }
[data-icon="pin"]::before { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E"); }
[data-icon="phone"]::before { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.127.96.361 1.903.7 2.81a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45c.907.339 1.85.573 2.81.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.127.96.361 1.903.7 2.81a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45c.907.339 1.85.573 2.81.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E"); }
[data-icon="mail"]::before { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 4h16a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2z'/%3E%3Cpolyline points='22 6 12 13 2 6'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 4h16a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2z'/%3E%3Cpolyline points='22 6 12 13 2 6'/%3E%3C/svg%3E"); }
[data-icon="fb"]::before { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M22 12a10 10 0 1 0-11.6 9.87v-6.98H7.9V12h2.5V9.8c0-2.47 1.47-3.84 3.72-3.84 1.08 0 2.2.19 2.2.19v2.43h-1.24c-1.22 0-1.6.76-1.6 1.54V12h2.72l-.44 2.89h-2.28v6.98A10 10 0 0 0 22 12z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M22 12a10 10 0 1 0-11.6 9.87v-6.98H7.9V12h2.5V9.8c0-2.47 1.47-3.84 3.72-3.84 1.08 0 2.2.19 2.2.19v2.43h-1.24c-1.22 0-1.6.76-1.6 1.54V12h2.72l-.44 2.89h-2.28v6.98A10 10 0 0 0 22 12z'/%3E%3C/svg%3E"); }
[data-icon="ig"]::before { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='2' width='20' height='20' rx='5' ry='5'/%3E%3Cpath d='M16 11.37A4 4 0 1 1 12.63 8 4 4 0 0 1 16 11.37z'/%3E%3Cline x1='17.5' y1='6.5' x2='17.51' y2='6.5'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='2' width='20' height='20' rx='5' ry='5'/%3E%3Cpath d='M16 11.37A4 4 0 1 1 12.63 8 4 4 0 0 1 16 11.37z'/%3E%3Cline x1='17.5' y1='6.5' x2='17.51' y2='6.5'/%3E%3C/svg%3E"); }
[data-icon="tw"]::before { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M22 5.92c-.77.35-1.6.58-2.46.68a4.3 4.3 0 0 0 1.88-2.37 8.59 8.59 0 0 1-2.72 1.04 4.28 4.28 0 0 0-7.29 3.9A12.14 12.14 0 0 1 3.16 4.6a4.27 4.27 0 0 0 1.32 5.71 4.25 4.25 0 0 1-1.94-.54v.05a4.28 4.28 0 0 0 3.43 4.2 4.3 4.3 0 0 1-1.93.07 4.28 4.28 0 0 0 4 2.97A8.6 8.6 0 0 1 2 18.57a12.13 12.13 0 0 0 6.56 1.92c7.88 0 12.2-6.53 12.2-12.2 0-.19 0-.37-.01-.55A8.7 8.7 0 0 0 22 5.92z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M22 5.92c-.77.35-1.6.58-2.46.68a4.3 4.3 0 0 0 1.88-2.37 8.59 8.59 0 0 1-2.72 1.04 4.28 4.28 0 0 0-7.29 3.9A12.14 12.14 0 0 1 3.16 4.6a4.27 4.27 0 0 0 1.32 5.71 4.25 4.25 0 0 1-1.94-.54v.05a4.28 4.28 0 0 0 3.43 4.2 4.3 4.3 0 0 1-1.93.07 4.28 4.28 0 0 0 4 2.97A8.6 8.6 0 0 1 2 18.57a12.13 12.13 0 0 0 6.56 1.92c7.88 0 12.2-6.53 12.2-12.2 0-.19 0-.37-.01-.55A8.7 8.7 0 0 0 22 5.92z'/%3E%3C/svg%3E"); }
[data-icon="in"]::before { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M20.45 20.45h-3.55v-5.57c0-1.33-.02-3.04-1.85-3.04-1.85 0-2.14 1.45-2.14 2.94v5.67H9.36V9h3.41v1.56h.05c.48-.9 1.64-1.85 3.37-1.85 3.6 0 4.27 2.37 4.27 5.46v6.28zM5.34 7.43a2.06 2.06 0 1 1 0-4.12 2.06 2.06 0 0 1 0 4.12zM7.12 20.45H3.56V9h3.56v11.45z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M20.45 20.45h-3.55v-5.57c0-1.33-.02-3.04-1.85-3.04-1.85 0-2.14 1.45-2.14 2.94v5.67H9.36V9h3.41v1.56h.05c.48-.9 1.64-1.85 3.37-1.85 3.6 0 4.27 2.37 4.27 5.46v6.28zM5.34 7.43a2.06 2.06 0 1 1 0-4.12 2.06 2.06 0 0 1 0 4.12zM7.12 20.45H3.56V9h3.56v11.45z'/%3E%3C/svg%3E"); }


@media (max-width:700px) {
  .page-hero h1 {
    color: #fff;
    max-width: 800px;
    font-size: clamp(1.7rem, 5.5vw, 3.5rem);
    line-height: 43px;
}
.blog-layout {
    display: grid;
    gap: 20px;
}
.product-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: 1fr;
    grid-template-columns: repeat(2, 1fr);
}
.section {
    padding: 50px 0;
}
.info-card {
    padding: 15px;
}
.info-card h2 {
    font-size: 1.1rem;}
    h2 {
    font-size: clamp(1.5rem, 4vw, 2.4rem);
    line-height: 36px;
    margin-bottom: 25px;
}
.services-grid { grid-template-columns: repeat(2, 1fr); }
.section-head h2{ margin-bottom: 5px;}
.cta-inner {
    padding: 60px 21px;
    max-width: 100%;
}
.btn {
    justify-content: center;
}
.cta-inner h2 {
    line-height: 47px;
}
}
@media (max-width:450px) {.product-grid {grid-template-columns: 1fr;}
.services-grid { grid-template-columns: 1fr; }
}

.enquiry-form select.wpcf7-form-control.wpcf7-select {
    width: 100%;
}
.enquiry-form textarea.wpcf7-form-control.wpcf7-textarea.wpcf7-validates-as-required {
    width: 100%;
}
.btn-orange {
    background: var(--orange)!important;
    color: #fff !important;
    box-shadow: 0 10px 25px -12px rgba(232,138,60,.6);
}
.btn-orange {
    background: var(--orange)!important;
    color: #fff !important;
    box-shadow: 0 10px 25px -12px rgba(232,138,60,.6);
    cursor: pointer;
}
.enquiry-form br {
    display: none;
}
.woocommerce img, .woocommerce-page img {
    height: auto;
    max-width: 100%;
    text-align: center;
    margin: auto;
    padding: 20px;
}