:root {
    --primary: #0868c8;
    --primary-dark: #054c94;
    --secondary: #0f2844;
    --accent: #ed1c24;
    --ink: #132238;
    --muted: #66758a;
    --surface: #f5f8fc;
    --border: #dfe8f2;
    --shadow: 0 18px 60px rgba(17, 56, 94, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; color: var(--ink); background: #fff; }
a { text-decoration: none; }
img { max-width: 100%; }
.min-vh-75 { min-height: 75vh; }
.section-padding { padding: 96px 0; }

.topbar { background: var(--secondary); color: rgba(255,255,255,.82); font-size: .9rem; }
.topbar a { color: rgba(255,255,255,.86); transition: .2s ease; }
.topbar a:hover { color: #fff; }

.navbar-brand { max-width: 330px; }
.brand-logo { object-fit: contain; }
.brand-name { color: var(--secondary); letter-spacing: -.02em; line-height: 1.1; }
.brand-subtitle { color: var(--muted); font-size: .76rem; }
.navbar .nav-link { color: #3d4b5e; font-weight: 600; padding: .75rem .9rem !important; border-radius: .8rem; }
.navbar .nav-link:hover, .navbar .nav-link.active { color: var(--primary); background: #eef6ff; }
.btn-primary { --bs-btn-bg: var(--primary); --bs-btn-border-color: var(--primary); --bs-btn-hover-bg: var(--primary-dark); --bs-btn-hover-border-color: var(--primary-dark); }
.btn-outline-primary { --bs-btn-color: var(--primary); --bs-btn-border-color: var(--primary); --bs-btn-hover-bg: var(--primary); --bs-btn-hover-border-color: var(--primary); }

.hero-section { background: linear-gradient(135deg, #f8fbff 0%, #eef6ff 55%, #fff 100%); }
.hero-grid { position: absolute; inset: 0; opacity: .22; background-image: linear-gradient(rgba(8,104,200,.09) 1px, transparent 1px), linear-gradient(90deg, rgba(8,104,200,.09) 1px, transparent 1px); background-size: 42px 42px; mask-image: linear-gradient(to bottom, #000, transparent 90%); }
.hero-section::after { content: ""; position: absolute; right: -160px; top: -220px; width: 540px; height: 540px; border-radius: 50%; background: rgba(8,104,200,.08); filter: blur(2px); }
.eyebrow { display: inline-flex; align-items: center; color: var(--primary); background: #e9f4ff; border: 1px solid #cfe7ff; border-radius: 999px; padding: .48rem .85rem; text-transform: uppercase; letter-spacing: .08em; font-size: .75rem; font-weight: 800; }
.eyebrow-light { color: #fff; background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.2); }
.text-gradient { background: linear-gradient(110deg, var(--primary), #0aa0cf); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-copy { max-width: 700px; }
.hero-points span { display: inline-flex; align-items: center; gap: .55rem; font-weight: 700; color: #405169; }
.hero-points i { color: #13a264; }
.hero-visual { position: relative; min-height: 520px; display: grid; place-items: center; }
.hero-logo-card { position: relative; width: min(100%, 430px); min-height: 430px; border-radius: 42px; background: rgba(255,255,255,.92); border: 1px solid rgba(8,104,200,.15); box-shadow: var(--shadow); padding: 2.5rem; overflow: hidden; display: flex; flex-direction: column; justify-content: space-between; }
.hero-logo-card::before { content: ""; position: absolute; right: -100px; top: -80px; width: 280px; height: 280px; border-radius: 50%; background: linear-gradient(135deg, rgba(8,104,200,.18), rgba(237,28,36,.08)); }
.hero-mark { width: 290px; height: 260px; object-fit: contain; align-self: center; z-index: 1; }
.hero-card-content { position: relative; z-index: 2; }
.floating-card { position: absolute; display: flex; align-items: center; gap: .7rem; padding: .85rem 1rem; border-radius: 16px; background: #fff; box-shadow: 0 14px 35px rgba(18,55,91,.16); font-weight: 700; font-size: .9rem; animation: float 4s ease-in-out infinite; }
.floating-card i { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 12px; background: #eaf5ff; color: var(--primary); font-size: 1.2rem; }
.floating-card-one { left: -10px; top: 20%; }
.floating-card-two { right: -10px; bottom: 16%; animation-delay: 1.2s; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }

.brand-strip { background: var(--secondary); color: #fff; }
.brand-pill { display: inline-flex; padding: .5rem .9rem; border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.07); border-radius: 999px; color: rgba(255,255,255,.85); font-size: .9rem; }
.section-heading { max-width: 760px; }
.section-heading p { font-size: 1.05rem; }
.solution-card { position: relative; background: #fff; border: 1px solid var(--border); border-radius: 24px; padding: 1.8rem; transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; display: flex; flex-direction: column; }
.solution-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: #b9d9f8; }
.solution-icon { display: grid; place-items: center; width: 64px; height: 64px; border-radius: 20px; background: linear-gradient(145deg, #e8f4ff, #f6fbff); color: var(--primary); font-size: 1.75rem; margin-bottom: 1.2rem; border: 1px solid #d7eaff; }
.solution-category { width: fit-content; color: var(--primary); font-weight: 800; font-size: .75rem; letter-spacing: .06em; text-transform: uppercase; margin-bottom: .8rem; }
.solution-card h3 { font-size: 1.32rem; font-weight: 800; margin-bottom: .8rem; }
.solution-card p { color: var(--muted); line-height: 1.7; }
.solution-link { margin-top: auto; font-weight: 800; color: var(--primary); }
.solution-link i { transition: .2s ease; }
.solution-card:hover .solution-link i { transform: translateX(5px); }

.about-image-wrap { position: relative; padding: 1.2rem; }
.about-image-wrap::before { content: ""; position: absolute; left: 0; bottom: 0; width: 65%; height: 65%; border-radius: 32px; background: #e8f4ff; z-index: -1; }
.about-badge { position: absolute; right: -5px; bottom: -5px; display: flex; gap: .8rem; align-items: center; background: #fff; padding: 1rem 1.2rem; border-radius: 18px; box-shadow: var(--shadow); }
.about-badge i { color: #13a264; font-size: 1.8rem; }
.about-badge span { font-size: .8rem; color: var(--muted); }
.about-badge strong { color: var(--ink); font-size: .95rem; }
.feature-box { display: flex; gap: .8rem; padding: 1rem; border-radius: 18px; background: #f7faff; border: 1px solid #e4edf7; }
.feature-box i { color: var(--primary); font-size: 1.4rem; }
.feature-box strong, .feature-box span { display: block; }
.feature-box span { color: var(--muted); font-size: .83rem; margin-top: .2rem; }

.partner-section { background: radial-gradient(circle at 85% 15%, rgba(24,133,235,.35), transparent 30%), linear-gradient(135deg, #071c31, #0f365c); }
.partner-card { height: 100%; background: #fff; border-radius: 24px; padding: 1.2rem; display: flex; flex-direction: column; box-shadow: 0 20px 45px rgba(0,0,0,.2); }
.partner-card img { width: 100%; height: 190px; object-fit: contain; border-radius: 16px; background: #fff; margin-bottom: 1rem; }
.partner-card strong { font-size: 1.1rem; }
.partner-card span { color: var(--muted); font-size: .86rem; margin-top: .25rem; }

.process-card { position: relative; height: 100%; padding: 1.5rem; border: 1px solid var(--border); border-radius: 22px; background: #fff; }
.process-card > span { position: absolute; top: 1.2rem; right: 1.2rem; color: #d4e8fb; font-weight: 900; font-size: 2.2rem; }
.process-card > i { display: grid; place-items: center; width: 58px; height: 58px; border-radius: 18px; background: #eef7ff; color: var(--primary); font-size: 1.5rem; margin-bottom: 1.25rem; }
.process-card h4 { font-size: 1.15rem; font-weight: 800; }
.process-card p { color: var(--muted); margin-bottom: 0; }
.cta-section { background: #f4f8fd; }
.cta-box { border-radius: 30px; background: linear-gradient(135deg, #fff, #edf6ff); border: 1px solid #d6e9fa; box-shadow: 0 20px 50px rgba(20,79,131,.09); }

.page-hero { position: relative; background: radial-gradient(circle at 80% 20%, rgba(36,142,240,.35), transparent 32%), linear-gradient(135deg, #071c31, #0e4c83); overflow: hidden; }
.page-hero::after { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px); background-size: 46px 46px; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero p { max-width: 720px; }
.page-hero-small { text-align: left; }
.breadcrumb-light .breadcrumb-item a { color: rgba(255,255,255,.75); }
.breadcrumb-light .breadcrumb-item.active { color: #fff; }
.breadcrumb-light .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.55); }

.contact-highlight { display: flex; align-items: center; gap: 1rem; background: #f0f7ff; border: 1px solid #d7eaff; padding: 1rem 1.2rem; border-radius: 18px; }
.contact-highlight i { font-size: 2rem; color: var(--primary); }
.contact-highlight span, .contact-highlight strong, .contact-highlight a { display: block; }
.contact-highlight span { color: var(--muted); font-size: .8rem; }
.contact-highlight strong { font-size: 1.2rem; }
.contact-highlight a { color: var(--primary); font-weight: 700; }
.value-card { padding: 2rem; border-radius: 24px; background: #fff; border: 1px solid var(--border); box-shadow: 0 12px 35px rgba(24,66,105,.06); }
.value-card i { font-size: 2rem; color: var(--primary); }
.value-card h3 { margin: 1rem 0 .6rem; font-weight: 800; }
.value-card p { color: var(--muted); margin: 0; }
.info-list { display: grid; gap: .8rem; }
.info-list > div { display: flex; align-items: flex-start; gap: 1rem; padding: 1rem; border-radius: 16px; background: #f7faff; border: 1px solid #e4edf7; }
.info-list i { color: var(--primary); font-size: 1.25rem; margin-top: .15rem; }
.info-list small, .info-list strong { display: block; }
.info-list small { color: var(--muted); }

.filter-panel { padding: 1rem; border: 1px solid var(--border); background: #f8fbff; border-radius: 20px; }
.filter-btn { border: 1px solid #cfe0f1; background: #fff; color: #465a70; border-radius: 999px; font-weight: 700; padding: .55rem 1rem; }
.filter-btn:hover, .filter-btn.active { color: #fff; background: var(--primary); border-color: var(--primary); }
.solution-card-large .solution-icon { margin-bottom: 0; }
.solution-card-large h3 { margin-top: 1.3rem; }
.mini-feature-list { list-style: none; padding: 0; margin: .5rem 0 0; display: grid; gap: .5rem; color: #53657a; font-size: .9rem; }
.mini-feature-list i { color: #13a264; margin-right: .5rem; }

.product-detail-visual { min-height: 420px; border-radius: 30px; position: relative; overflow: hidden; display: grid; place-items: center; background: linear-gradient(145deg, #e9f5ff, #f8fbff); border: 1px solid #d4e7f9; }
.product-detail-icon { display: grid; place-items: center; width: 180px; height: 180px; border-radius: 48px; background: #fff; color: var(--primary); box-shadow: var(--shadow); font-size: 5rem; position: relative; z-index: 2; }
.product-detail-visual > span { position: absolute; bottom: 1.5rem; left: 1.5rem; font-weight: 800; color: var(--primary); text-transform: uppercase; letter-spacing: .08em; }
.machine-lines { position: absolute; inset: -20%; background: repeating-radial-gradient(circle, rgba(8,104,200,.08) 0 1px, transparent 2px 42px); transform: rotate(-12deg); }
.detail-feature { display: flex; gap: .7rem; align-items: center; padding: .9rem 1rem; border-radius: 14px; background: #f8fbff; border: 1px solid #e0ebf5; font-weight: 700; }
.detail-feature i { color: #13a264; }
.notice-box { display: flex; align-items: flex-start; gap: .8rem; padding: 1rem 1.2rem; border-radius: 16px; background: #fff9e8; border: 1px solid #f4dda1; color: #725a1f; }
.notice-box i { font-size: 1.2rem; }
.quote-card { top: 110px; padding: 2rem; border-radius: 26px; border: 1px solid var(--border); box-shadow: var(--shadow); background: #fff; }
.quote-list { list-style: none; padding: 0; display: grid; gap: .7rem; color: #53657a; }
.quote-list i { color: #13a264; margin-right: .5rem; }

.contact-methods { display: grid; gap: .8rem; }
.contact-methods > a, .contact-methods > div { display: flex; align-items: flex-start; gap: 1rem; padding: 1rem; border-radius: 18px; border: 1px solid var(--border); background: #fff; color: var(--ink); transition: .2s ease; }
.contact-methods > a:hover { border-color: #afd2f3; transform: translateY(-2px); }
.contact-methods > a > i, .contact-methods > div > i { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 14px; background: #eef7ff; color: var(--primary); font-size: 1.2rem; flex: 0 0 auto; }
.contact-methods small, .contact-methods strong { display: block; }
.contact-methods small { color: var(--muted); }
.contact-methods strong { word-break: break-word; }
.business-person-card { display: flex; align-items: center; gap: 1rem; padding: 1rem; background: var(--secondary); color: #fff; border-radius: 18px; }
.business-person-card img { width: 78px; height: 78px; object-fit: contain; background: #fff; border-radius: 18px; padding: .35rem; }
.business-person-card small, .business-person-card strong, .business-person-card span { display: block; }
.business-person-card small, .business-person-card span { color: rgba(255,255,255,.7); }
.business-person-card strong { font-size: 1.35rem; }
.form-card { padding: 2rem; border-radius: 26px; border: 1px solid var(--border); background: #fff; box-shadow: var(--shadow); }
.form-control, .input-group-text { border-color: #cfdae6; }
.form-control:focus { border-color: #7fb9ef; box-shadow: 0 0 0 .25rem rgba(8,104,200,.12); }

.site-footer { background: #071829; color: rgba(255,255,255,.7); }
.footer-logo { object-fit: contain; background: #fff; border-radius: 16px; padding: .3rem; }
.footer-copy { max-width: 520px; }
.footer-links { display: grid; gap: .55rem; }
.footer-links a, .footer-contact a { color: rgba(255,255,255,.67); }
.footer-links a:hover, .footer-contact a:hover { color: #fff; }
.footer-contact { display: grid; gap: .75rem; }
.footer-contact li { display: flex; gap: .7rem; align-items: flex-start; }
.footer-contact i { color: #73baff; margin-top: .1rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); }
.back-to-top, .whatsapp-float { position: fixed; right: 22px; display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%; color: #fff; z-index: 1040; box-shadow: 0 10px 25px rgba(0,0,0,.22); transition: .2s ease; }
.back-to-top { bottom: 82px; background: var(--primary); opacity: 0; pointer-events: none; transform: translateY(12px); }
.back-to-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.whatsapp-float { bottom: 22px; background: #17a864; font-size: 1.35rem; }
.back-to-top:hover, .whatsapp-float:hover { color: #fff; transform: translateY(-3px); }

[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
[data-reveal].revealed { opacity: 1; transform: translateY(0); }

@media (max-width: 991.98px) {
    .section-padding { padding: 72px 0; }
    .navbar-brand { max-width: 250px; }
    .brand-name { font-size: .96rem; }
    .brand-subtitle { display: none; }
    .hero-visual { min-height: 460px; }
    .floating-card-one { left: 0; }
    .floating-card-two { right: 0; }
    .quote-card { position: static !important; }
}
@media (max-width: 575.98px) {
    .section-padding { padding: 58px 0; }
    .hero-section h1 { font-size: 2.55rem; }
    .hero-logo-card { min-height: 380px; padding: 1.5rem; }
    .hero-mark { width: 240px; height: 230px; }
    .hero-visual { min-height: 430px; }
    .floating-card { font-size: .75rem; padding: .65rem .8rem; }
    .floating-card i { width: 32px; height: 32px; }
    .about-badge { position: relative; right: auto; bottom: auto; margin-top: -12px; }
    .form-card { padding: 1.25rem; }
    .product-detail-visual { min-height: 330px; }
    .product-detail-icon { width: 145px; height: 145px; font-size: 4rem; }
}


/* Product visuals and graphics */
.hero-machine-graphic { width: 100%; height: 265px; object-fit: contain; position: relative; z-index: 1; border-radius: 24px; }
.hero-brand-badge { position: absolute; top: 1.3rem; left: 1.3rem; z-index: 3; display: inline-flex; align-items: center; gap: .65rem; padding: .5rem .8rem; border-radius: 999px; background: rgba(255,255,255,.92); border: 1px solid rgba(8,104,200,.15); box-shadow: 0 10px 28px rgba(18,55,91,.12); font-size: .75rem; font-weight: 800; color: var(--secondary); }
.hero-brand-badge img { width: 34px; height: 34px; object-fit: contain; }
.solution-image-wrap { position: relative; display: block; height: 205px; margin: -1rem -1rem 1.15rem; border-radius: 19px; overflow: hidden; background: linear-gradient(145deg,#eff8ff,#f9fcff); border: 1px solid #dceaf7; }
.solution-image-wrap-large { height: 230px; margin: -1rem -1rem .3rem; }
.solution-image { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.solution-card:hover .solution-image { transform: scale(1.045); }
.solution-image-icon { position: absolute; right: 12px; bottom: 12px; width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center; background: rgba(255,255,255,.94); color: var(--primary); font-size: 1.2rem; box-shadow: 0 10px 25px rgba(17,56,94,.16); }
.machine-gallery-section { background: linear-gradient(180deg,#071c31 0%,#0f365c 100%); color: #fff; }
.machine-gallery-section .section-heading p, .machine-gallery-section p { color: rgba(255,255,255,.62) !important; }
.machine-gallery-section .eyebrow { color: #fff; background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.16); }
.machine-gallery-section .btn-outline-primary { --bs-btn-color:#fff; --bs-btn-border-color:rgba(255,255,255,.5); --bs-btn-hover-bg:#fff; --bs-btn-hover-border-color:#fff; --bs-btn-hover-color:#0f2844; }
.gallery-card { position: relative; display: block; min-height: 280px; border-radius: 26px; overflow: hidden; background: #fff; box-shadow: 0 18px 44px rgba(0,0,0,.2); }
.gallery-card img { width: 100%; height: 280px; object-fit: cover; transition: transform .45s ease; }
.gallery-card::after { content:""; position:absolute; inset:0; background:linear-gradient(to top,rgba(3,17,31,.9) 0%,rgba(3,17,31,.08) 62%); }
.gallery-card:hover img { transform: scale(1.055); }
.gallery-card-overlay { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 1.4rem; display: grid; grid-template-columns: 1fr auto; align-items: end; gap: .15rem 1rem; color: #fff; }
.gallery-card-overlay small { grid-column: 1; text-transform: uppercase; letter-spacing: .09em; color: #72c3ff; font-weight: 800; }
.gallery-card-overlay strong { grid-column: 1; font-size: 1.15rem; }
.gallery-card-overlay i { grid-column: 2; grid-row: 1 / span 2; font-size: 1.75rem; }
.product-detail-image-visual { display: block; background: #f4f9fd; }
.product-detail-image { width: 100%; height: 100%; min-height: 420px; object-fit: cover; }
.product-detail-caption { position: absolute; left: 1.2rem; bottom: 1.2rem; z-index: 2; display: inline-flex; align-items: center; gap: .65rem; padding: .7rem 1rem; border-radius: 999px; background: rgba(255,255,255,.94); color: var(--primary); box-shadow: 0 12px 30px rgba(17,56,94,.14); font-weight: 800; text-transform: uppercase; letter-spacing: .05em; font-size: .78rem; }
.related-product-card { display: grid; grid-template-columns: 150px 1fr; gap: 1rem; align-items: center; height: 100%; padding: .8rem; border-radius: 22px; background: #fff; border: 1px solid var(--border); color: var(--ink); transition: .25s ease; }
.related-product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: #b9d9f8; }
.related-product-card img { width: 150px; height: 120px; object-fit: cover; border-radius: 16px; background: #edf6ff; }
.related-product-card small, .related-product-card strong, .related-product-card span { display: block; }
.related-product-card small { color: var(--primary); font-size: .72rem; text-transform: uppercase; font-weight: 800; letter-spacing: .06em; }
.related-product-card strong { margin-top: .3rem; font-size: 1rem; }
.related-product-card span { margin-top: .7rem; color: var(--primary); font-weight: 800; font-size: .82rem; }
@media (max-width: 575.98px) {
    .hero-machine-graphic { height: 225px; }
    .hero-brand-badge { position: relative; top: auto; left: auto; align-self: flex-start; margin-bottom: .5rem; }
    .solution-image-wrap { height: 190px; }
    .gallery-card, .gallery-card img { min-height: 235px; height: 235px; }
    .product-detail-image { min-height: 300px; }
    .related-product-card { grid-template-columns: 112px 1fr; }
    .related-product-card img { width: 112px; height: 100px; }
}

/* Advanced product catalogue */
.product-card-flags{position:absolute;top:1rem;left:1rem;z-index:3;display:flex;flex-wrap:wrap;gap:.35rem;max-width:75%}.solution-card{position:relative}.product-card-flags span,.product-status-badge{display:inline-flex;align-items:center;padding:.35rem .65rem;border-radius:999px;background:#fff3cd;color:#765b00;border:1px solid #ffe69c;font-size:.7rem;font-weight:800;text-transform:uppercase;letter-spacing:.04em}.image-count-badge{position:absolute;left:12px;bottom:12px;display:inline-flex;align-items:center;gap:.35rem;padding:.38rem .65rem;border-radius:999px;background:rgba(7,24,41,.82);color:#fff;font-size:.72rem;font-weight:700}.product-card-specs{display:flex;flex-wrap:wrap;gap:.45rem;margin:.65rem 0 1rem}.product-card-specs span{display:inline-flex;align-items:center;gap:.35rem;padding:.35rem .55rem;border-radius:9px;background:#f0f6fb;color:#476079;font-size:.75rem;font-weight:700}.product-compare-control{border-top:1px solid #e3ebf2;margin-top:1rem;padding-top:.85rem;color:#4d6277;font-weight:700}.compare-floating-bar{position:fixed;left:50%;bottom:20px;transform:translateX(-50%);width:min(920px,calc(100% - 28px));z-index:1050;display:flex;align-items:center;justify-content:space-between;gap:1rem;padding:1rem 1.2rem;border-radius:18px;background:#071c31;color:#fff;box-shadow:0 20px 55px rgba(0,0,0,.32)}.compare-floating-bar strong,.compare-floating-bar small{display:block}.compare-floating-bar small{color:rgba(255,255,255,.62);max-width:620px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.product-gallery{background:#f3f8fc;border:1px solid #dbe8f3;border-radius:26px;padding:1rem;overflow:hidden}.product-gallery-main{width:100%;height:480px;object-fit:contain;border-radius:18px;background:#fff}.product-gallery .carousel-control-prev,.product-gallery .carousel-control-next{width:48px;height:48px;top:50%;transform:translateY(-50%);border-radius:50%;background:rgba(7,28,49,.75)}.product-gallery .carousel-control-prev{left:24px}.product-gallery .carousel-control-next{right:24px}.product-gallery-thumbs{display:flex;gap:.65rem;overflow-x:auto;padding-top:1rem}.product-gallery-thumbs button{border:2px solid transparent;border-radius:12px;padding:0;background:#fff;flex:0 0 auto}.product-gallery-thumbs button.active{border-color:var(--primary)}.product-gallery-thumbs img{width:76px;height:62px;object-fit:cover;border-radius:9px}.specification-table{border:1px solid #dfe8f0;border-radius:16px;overflow:hidden}.specification-table th{width:34%;background:#f4f8fb;color:#334d66}.specification-table th,.specification-table td{padding:1rem;border-color:#e3ebf2}.product-video{width:100%;height:280px;object-fit:contain;border-radius:18px;background:#071829}.product-video-frame{border-radius:18px;overflow:hidden;background:#071829}.external-video-link{min-height:220px;display:grid;place-items:center;align-content:center;gap:.6rem;border:1px dashed #aac2d8;border-radius:18px;background:#f5f9fc;color:var(--primary);font-weight:800}.external-video-link i{font-size:3rem}.document-download-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:1rem}.document-download-card{display:grid;grid-template-columns:auto 1fr auto;align-items:center;gap:1rem;padding:1rem 1.15rem;border:1px solid #dce6ef;border-radius:16px;background:#fff;color:#233b52;transition:.2s ease}.document-download-card:hover{transform:translateY(-3px);border-color:#a9cfee;box-shadow:0 12px 30px rgba(20,54,85,.08)}.document-download-card>i:first-child{font-size:2rem;color:#dc3545}.document-download-card strong,.document-download-card small{display:block}.document-download-card small{color:#72869a}.quick-machine-info{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.75rem;margin:1.2rem 0}.quick-machine-info div{padding:.8rem;border-radius:12px;background:#f3f8fc;border:1px solid #e0eaf3}.quick-machine-info small,.quick-machine-info strong{display:block}.quick-machine-info small{color:#708397;font-size:.72rem}.quick-machine-info strong{font-size:.9rem;margin-top:.2rem}.compare-picker{padding:1.25rem;border:1px solid #dce6ef;border-radius:20px;background:#fff;box-shadow:0 10px 30px rgba(22,55,86,.05)}.empty-compare-state{text-align:center;padding:5rem 1rem;border:1px dashed #b8cad9;border-radius:24px;background:#f8fbfd}.empty-compare-state i{font-size:4rem;color:#8aa7c0}.empty-compare-state p{color:#6e8294;max-width:560px;margin:0 auto 1.5rem}.compare-table-wrap{border:1px solid #dce6ef;border-radius:20px;overflow:auto;background:#fff}.compare-table{min-width:900px;margin:0}.compare-table th,.compare-table td{padding:1rem;vertical-align:top;border-color:#e3ebf2}.compare-table thead th{background:#f5f9fc;text-align:center;min-width:220px}.compare-table thead th:first-child,.compare-label-column{min-width:170px;text-align:left}.compare-table thead a{display:grid;gap:.55rem;color:#20384f}.compare-table thead img{width:100%;height:150px;object-fit:contain;border-radius:14px;background:#fff}.compare-table thead strong,.compare-table thead small{display:block}.compare-table tbody th{background:#f8fbfd;color:#3b536a}.compare-feature-list{list-style:none;padding:0;margin:0;display:grid;gap:.45rem}.compare-feature-list li{display:flex;gap:.45rem;align-items:flex-start}.compare-feature-list i{color:#17a864;margin-top:.15rem}
@media(max-width:767px){.compare-floating-bar{align-items:stretch;flex-direction:column}.compare-floating-bar>div:last-child{width:100%}.compare-floating-bar .btn{flex:1}.product-gallery-main{height:320px}.document-download-grid{grid-template-columns:1fr}.quick-machine-info{grid-template-columns:1fr}.product-video{height:220px}}

/* Responsive product detail and spare parts catalogue */
.product-page-title { font-size: clamp(2rem, 4.6vw, 3.6rem); line-height: 1.08; max-width: 1050px; overflow-wrap: anywhere; }
.product-breadcrumb-wrap { overflow-x: auto; scrollbar-width: none; }
.product-breadcrumb-wrap::-webkit-scrollbar { display: none; }
.product-breadcrumb-wrap .breadcrumb { min-width: max-content; }
.product-main-section { background: linear-gradient(180deg, #fff 0%, #f7faff 100%); }
.product-content-panel { padding: clamp(1.2rem, 3vw, 2rem); border: 1px solid var(--border); border-radius: 24px; background: #fff; box-shadow: 0 14px 42px rgba(17,56,94,.07); }
.product-description { font-size: clamp(1rem, 1.7vw, 1.18rem); line-height: 1.8; overflow-wrap: anywhere; }
.product-quote-card { max-width: 100%; overflow: hidden; }
.product-quote-card .btn { white-space: normal; }
.product-spec-section { min-width: 0; }
.product-spec-table-wrap { border-radius: 16px; }
.mobile-product-actions { position: fixed; left: 0; right: 0; bottom: 0; z-index: 1060; display: grid; grid-template-columns: 1fr 1fr; gap: .65rem; padding: .75rem max(.8rem, env(safe-area-inset-left)) calc(.75rem + env(safe-area-inset-bottom)) max(.8rem, env(safe-area-inset-right)); background: rgba(255,255,255,.96); border-top: 1px solid #dbe6ef; box-shadow: 0 -10px 30px rgba(10,39,66,.12); backdrop-filter: blur(12px); }
.mobile-product-actions .btn { display: inline-flex; align-items: center; justify-content: center; gap: .45rem; min-height: 46px; border-radius: 13px; font-weight: 800; }
.product-detail-page { padding-bottom: 74px; }

.spare-parts-intro { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1rem; }
.spare-parts-intro > div { display: grid; grid-template-columns: auto 1fr; gap: .25rem .8rem; align-items: start; padding: 1rem; border: 1px solid var(--border); border-radius: 18px; background: #fff; box-shadow: 0 10px 30px rgba(20,54,85,.05); }
.spare-parts-intro i { grid-row: 1 / span 2; display: grid; place-items: center; width: 46px; height: 46px; border-radius: 14px; background: #eaf5ff; color: var(--primary); font-size: 1.25rem; }
.spare-parts-intro strong, .spare-parts-intro span { display: block; }
.spare-parts-intro span { color: var(--muted); font-size: .86rem; line-height: 1.5; }
.spare-part-card { display: flex; flex-direction: column; overflow: hidden; border: 1px solid var(--border); border-radius: 24px; background: #fff; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.spare-part-card:hover { transform: translateY(-6px); border-color: #b9d9f8; box-shadow: var(--shadow); }
.spare-part-image { position: relative; display: block; height: 245px; overflow: hidden; background: #f1f6fa; }
.spare-part-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.spare-part-card:hover .spare-part-image img { transform: scale(1.04); }
.spare-part-image > span { position: absolute; left: .85rem; bottom: .85rem; display: inline-flex; align-items: center; gap: .4rem; max-width: calc(100% - 1.7rem); padding: .45rem .7rem; border-radius: 999px; background: rgba(7,28,49,.86); color: #fff; font-size: .72rem; font-weight: 800; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.spare-part-body { display: flex; flex: 1; flex-direction: column; padding: 1.25rem; min-width: 0; }
.spare-part-body h2 { overflow-wrap: anywhere; }
.spare-part-meta { display: flex; flex-wrap: wrap; gap: .45rem; }
.spare-part-meta span { display: inline-flex; align-items: center; gap: .35rem; max-width: 100%; padding: .38rem .55rem; border-radius: 9px; background: #f0f6fb; color: #476079; font-size: .74rem; font-weight: 700; overflow-wrap: anywhere; }
.home-spare-card { display: flex; flex-direction: column; height: 100%; overflow: hidden; border: 1px solid var(--border); border-radius: 20px; background: #fff; color: var(--ink); transition: .25s ease; }
.home-spare-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: #b9d9f8; }
.home-spare-card img { width: 100%; height: 190px; object-fit: cover; background: #f1f6fa; }
.home-spare-card span { margin: 1rem 1rem .35rem; color: var(--primary); font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; }
.home-spare-card strong { margin: 0 1rem; overflow-wrap: anywhere; }
.home-spare-card small { margin: auto 1rem 1rem; padding-top: .8rem; color: var(--primary); font-weight: 800; }

@media (max-width: 1199.98px) {
    .product-gallery-main { height: 430px; }
    .quote-card { padding: 1.5rem; }
}

@media (max-width: 991.98px) {
    .product-main-section { padding-top: 48px; }
    .product-quote-card { position: static !important; }
    .spare-parts-intro { grid-template-columns: 1fr; }
    .navbar-collapse { max-height: calc(100vh - 90px); overflow-y: auto; padding-bottom: .75rem; }
}

@media (max-width: 767.98px) {
    .product-page-hero .container { padding-top: 1.8rem !important; padding-bottom: 1.8rem !important; }
    .product-gallery { padding: .65rem; border-radius: 20px; }
    .product-gallery-main { height: min(68vw, 360px); min-height: 245px; border-radius: 14px; }
    .product-gallery .carousel-control-prev, .product-gallery .carousel-control-next { width: 40px; height: 40px; }
    .product-gallery .carousel-control-prev { left: 12px; }
    .product-gallery .carousel-control-next { right: 12px; }
    .product-gallery-thumbs { gap: .5rem; padding-top: .65rem; }
    .product-gallery-thumbs img { width: 62px; height: 52px; }
    .product-content-panel { border-radius: 18px; }
    .specification-table, .specification-table tbody, .specification-table tr, .specification-table th, .specification-table td { display: block; width: 100%; }
    .specification-table tr { padding: .8rem 0; border-bottom: 1px solid #e3ebf2; }
    .specification-table tr:last-child { border-bottom: 0; }
    .specification-table th { padding: 0 1rem .25rem; border: 0; background: transparent; color: var(--primary); font-size: .74rem; text-transform: uppercase; letter-spacing: .05em; }
    .specification-table td { padding: 0 1rem; border: 0; overflow-wrap: anywhere; }
    .related-product-card { grid-template-columns: 105px minmax(0,1fr); gap: .8rem; }
    .related-product-card img { width: 105px; height: 98px; }
    .related-product-card strong { overflow-wrap: anywhere; }
    .document-download-card { grid-template-columns: auto minmax(0,1fr) auto; padding: .9rem; }
    .spare-part-image { height: 220px; }
    .product-detail-page .whatsapp-float { display: none; }
    .product-detail-page .back-to-top { bottom: 88px; }
}

@media (max-width: 575.98px) {
    .navbar-brand { max-width: calc(100% - 72px); }
    .brand-logo { width: 44px; height: 44px; }
    .brand-name { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 190px; }
    .page-hero .display-4 { font-size: 2.25rem; }
    .filter-panel { padding: .85rem; }
    .filter-panel .form-select-lg, .filter-panel .form-control, .filter-panel .input-group-text { font-size: 1rem; }
    .filter-btn { padding: .48rem .75rem; font-size: .8rem; }
    .solution-card { padding: 1.25rem; border-radius: 20px; }
    .solution-image-wrap-large { height: 220px; }
    .product-card-flags { top: .75rem; left: .75rem; max-width: calc(100% - 1.5rem); }
    .product-card-flags span { font-size: .62rem; padding: .28rem .48rem; }
    .quick-machine-info { grid-template-columns: repeat(2, minmax(0,1fr)); gap: .5rem; }
    .quick-machine-info div { padding: .65rem; min-width: 0; }
    .quick-machine-info strong { overflow-wrap: anywhere; font-size: .82rem; }
    .product-content-panel { padding: 1rem; }
    .detail-feature { align-items: flex-start; padding: .8rem; }
    .related-product-card { grid-template-columns: 90px minmax(0,1fr); padding: .6rem; border-radius: 17px; }
    .related-product-card img { width: 90px; height: 88px; border-radius: 12px; }
    .related-product-card span { margin-top: .4rem; }
    .spare-part-image { height: 205px; }
    .spare-part-body { padding: 1rem; }
    .home-spare-card img { height: 175px; }
}

/* E-commerce product media gallery */
.commerce-product-gallery {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    grid-template-areas: "thumbs stage";
    gap: 1rem;
    padding: 1rem;
    border: 1px solid #dce8f2;
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 18px 50px rgba(16, 51, 82, .08);
    outline: none;
}
.commerce-product-gallery:focus-visible {
    box-shadow: 0 0 0 4px rgba(13, 110, 253, .14), 0 18px 50px rgba(16, 51, 82, .08);
}
.commerce-gallery-thumbs {
    grid-area: thumbs;
    display: flex;
    flex-direction: column;
    gap: .7rem;
    max-height: 610px;
    overflow-y: auto;
    overflow-x: hidden;
    padding: .15rem .2rem .15rem 0;
    scrollbar-width: thin;
}
.commerce-gallery-thumb {
    position: relative;
    width: 82px;
    height: 82px;
    flex: 0 0 82px;
    display: grid;
    place-items: center;
    padding: 4px;
    border: 2px solid #e1e9f0;
    border-radius: 14px;
    background: #fff;
    overflow: hidden;
    transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.commerce-gallery-thumb:hover {
    transform: translateY(-2px);
    border-color: #98bddd;
}
.commerce-gallery-thumb.active {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(13, 110, 253, .12);
}
.commerce-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 9px;
}
.commerce-gallery-video-thumb {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    align-content: center;
    gap: .15rem;
    border-radius: 9px;
    background: linear-gradient(145deg, #071c31, #123f68);
    color: #fff;
}
.commerce-gallery-video-thumb i { font-size: 1.65rem; }
.commerce-gallery-video-thumb small { font-size: .62rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.commerce-gallery-stage {
    grid-area: stage;
    position: relative;
    min-width: 0;
    border-radius: 20px;
    background: #f5f8fb;
    overflow: hidden;
}
.commerce-gallery-viewer {
    min-height: 560px;
    display: grid;
    place-items: center;
    padding: 3.8rem 3.6rem 3.2rem;
    touch-action: pan-y;
}
.commerce-gallery-main-image {
    width: 100%;
    height: 490px;
    object-fit: contain;
    cursor: zoom-in;
    user-select: none;
}
.commerce-gallery-main-video,
.commerce-gallery-main-frame {
    width: 100%;
    height: 455px;
    border: 0;
    border-radius: 16px;
    background: #071829;
}
.commerce-gallery-main-video { object-fit: contain; }
.commerce-gallery-external-video {
    width: min(520px, 90%);
    min-height: 280px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: .55rem;
    border: 1px dashed #90adc6;
    border-radius: 22px;
    background: #fff;
    color: var(--primary);
    text-align: center;
}
.commerce-gallery-external-video i { font-size: 4rem; }
.commerce-gallery-external-video strong { font-size: 1.1rem; }
.commerce-gallery-external-video span { color: #6d8295; font-size: .85rem; }
.commerce-gallery-toolbar {
    position: absolute;
    z-index: 3;
    top: 14px;
    left: 14px;
    right: 14px;
    display: flex;
    align-items: center;
    gap: .55rem;
    pointer-events: none;
}
.commerce-gallery-counter,
.commerce-gallery-kind {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: .42rem .72rem;
    border: 1px solid rgba(24, 57, 87, .1);
    border-radius: 999px;
    background: rgba(255, 255, 255, .94);
    color: #2c465f;
    box-shadow: 0 7px 20px rgba(12, 42, 70, .08);
    font-size: .72rem;
    font-weight: 800;
    backdrop-filter: blur(7px);
}
.commerce-gallery-expand {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    margin-left: auto;
    border: 1px solid rgba(24, 57, 87, .12);
    border-radius: 50%;
    background: rgba(255, 255, 255, .96);
    color: #183a58;
    box-shadow: 0 8px 22px rgba(12, 42, 70, .12);
    pointer-events: auto;
}
.commerce-gallery-expand:hover { background: var(--primary); color: #fff; }
.commerce-gallery-nav {
    position: absolute;
    z-index: 3;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: rgba(7, 28, 49, .82);
    color: #fff;
    box-shadow: 0 8px 20px rgba(7, 28, 49, .22);
}
.commerce-gallery-nav:hover { background: var(--primary); }
.commerce-gallery-prev { left: 16px; }
.commerce-gallery-next { right: 16px; }
.commerce-gallery-caption {
    position: absolute;
    z-index: 2;
    left: 50%;
    bottom: 14px;
    transform: translateX(-50%);
    width: max-content;
    max-width: calc(100% - 28px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .45rem;
    padding: .48rem .8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, .94);
    color: #577086;
    box-shadow: 0 7px 18px rgba(12, 42, 70, .08);
    font-size: .72rem;
    text-align: center;
}
.product-media-modal .modal-content {
    border: 0;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, .28);
}
.product-media-modal .modal-header { border-bottom: 1px solid #e5edf4; }
.product-media-modal .modal-body {
    min-height: min(74vh, 760px);
    display: grid;
    place-items: center;
    padding: 1rem;
    background: #eef3f7;
}
.product-modal-image {
    width: 100%;
    height: min(70vh, 720px);
    object-fit: contain;
}
.product-modal-video,
.product-modal-frame {
    width: min(1100px, 100%);
    height: min(68vh, 680px);
    border: 0;
    border-radius: 16px;
    background: #071829;
}
.product-modal-video { object-fit: contain; }

/* PDF document cards */
.product-documents-section {
    padding: clamp(1.2rem, 3vw, 2rem);
    border: 1px solid var(--border);
    border-radius: 24px;
    background: linear-gradient(145deg, #ffffff, #f6f9fc);
    box-shadow: 0 14px 42px rgba(17, 56, 94, .07);
}
.product-documents-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.35rem;
}
.product-documents-count {
    min-width: 105px;
    display: grid;
    grid-template-columns: auto auto;
    align-items: center;
    justify-content: center;
    column-gap: .45rem;
    padding: .8rem 1rem;
    border: 1px solid #f0c8cd;
    border-radius: 16px;
    background: #fff5f6;
    color: #b42331;
}
.product-documents-count i { grid-row: 1 / span 2; font-size: 1.9rem; }
.product-documents-count strong { font-size: 1.2rem; line-height: 1; }
.product-documents-count span { font-size: .67rem; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; }
.product-document-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}
.product-document-card {
    min-width: 0;
    display: flex;
    flex-direction: column;
    padding: 1.15rem;
    border: 1px solid #dbe5ed;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(22, 55, 86, .06);
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.product-document-card:hover {
    transform: translateY(-4px);
    border-color: #a8c9e3;
    box-shadow: 0 18px 38px rgba(22, 55, 86, .11);
}
.product-document-icon {
    width: 58px;
    height: 64px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: .1rem;
    margin-bottom: 1rem;
    border-radius: 14px;
    background: linear-gradient(145deg, #dc3545, #a90f20);
    color: #fff;
    box-shadow: 0 10px 24px rgba(220, 53, 69, .2);
}
.product-document-icon i { font-size: 1.65rem; }
.product-document-icon span { font-size: .62rem; font-weight: 900; letter-spacing: .08em; }
.product-document-content { flex: 1; min-width: 0; }
.product-document-type { color: var(--primary); font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.product-document-content h4 { margin: .4rem 0 .55rem; font-size: 1.1rem; font-weight: 800; color: #203b54; }
.product-document-content p { min-height: 3.1em; margin-bottom: .9rem; color: #6b7f91; font-size: .88rem; }
.product-document-meta {
    display: grid;
    gap: .35rem;
    min-width: 0;
    color: #71879a;
    font-size: .73rem;
}
.product-document-meta span {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: .4rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.product-document-meta i { flex: 0 0 auto; }
.product-document-actions {
    display: grid;
    gap: .55rem;
    margin-top: 1.15rem;
}
.product-document-actions .btn { font-weight: 800; }

@media (max-width: 1199px) {
    .commerce-gallery-viewer { min-height: 500px; }
    .commerce-gallery-main-image { height: 430px; }
    .product-document-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 767px) {
    .commerce-product-gallery {
        grid-template-columns: 1fr;
        grid-template-areas: "stage" "thumbs";
        gap: .7rem;
        padding: .65rem;
        border-radius: 20px;
    }
    .commerce-gallery-thumbs {
        flex-direction: row;
        max-height: none;
        overflow-x: auto;
        overflow-y: hidden;
        padding: .1rem 0 .2rem;
    }
    .commerce-gallery-thumb {
        width: 68px;
        height: 68px;
        flex-basis: 68px;
        border-radius: 12px;
    }
    .commerce-gallery-stage { border-radius: 15px; }
    .commerce-gallery-viewer {
        min-height: min(98vw, 410px);
        padding: 3rem 2.25rem 3.1rem;
    }
    .commerce-gallery-main-image { height: min(72vw, 340px); }
    .commerce-gallery-main-video,
    .commerce-gallery-main-frame { height: min(60vw, 300px); border-radius: 12px; }
    .commerce-gallery-kind { display: none; }
    .commerce-gallery-toolbar { top: 10px; left: 10px; right: 10px; }
    .commerce-gallery-counter { min-height: 31px; padding: .35rem .62rem; }
    .commerce-gallery-expand { width: 34px; height: 34px; }
    .commerce-gallery-nav { width: 38px; height: 38px; }
    .commerce-gallery-prev { left: 8px; }
    .commerce-gallery-next { right: 8px; }
    .commerce-gallery-caption {
        bottom: 8px;
        max-width: calc(100% - 16px);
        border-radius: 12px;
        font-size: .65rem;
    }
    .product-documents-section { padding: 1rem; border-radius: 18px; }
    .product-documents-heading { align-items: flex-start; }
    .product-documents-count { min-width: 92px; padding: .65rem .75rem; }
    .product-document-card-grid { grid-template-columns: 1fr; }
    .product-document-content p { min-height: auto; }
}
@media (max-width: 420px) {
    .product-documents-heading { flex-direction: column; }
    .product-documents-count { width: 100%; grid-template-columns: auto auto auto; grid-template-rows: auto; }
    .product-documents-count i { grid-row: auto; }
}

/* Suote-inspired industrial product details layout */
.suote-inspired-product-page { background: #f5f6f8; }
.suote-breadcrumb-bar { background: #fff; border-top: 1px solid #eef1f4; border-bottom: 1px solid #e5e8ec; }
.suote-breadcrumb-bar .container { padding-top: 1rem; padding-bottom: 1rem; }
.suote-breadcrumb-bar .breadcrumb { flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; font-size: .86rem; }
.suote-breadcrumb-bar .breadcrumb::-webkit-scrollbar { display: none; }
.suote-breadcrumb-bar .breadcrumb-item { min-width: max-content; }
.suote-breadcrumb-bar .breadcrumb-item a { color: #667383; }
.suote-breadcrumb-bar .breadcrumb-item.active { color: var(--primary); max-width: min(430px, 45vw); }
.suote-product-main { padding: 42px 0 76px; }
.suote-sidebar-stack { top: 108px; display: grid; gap: 1.25rem; }
.suote-category-card, .suote-contact-card, .suote-showcase-card, .suote-content-card, .suote-inquiry-card { background: #fff; border: 1px solid #e1e5e9; box-shadow: 0 8px 28px rgba(20, 39, 60, .06); }
.suote-category-card { overflow: hidden; }
.suote-sidebar-title { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 1.05rem 1.15rem; border: 0; background: var(--secondary); color: #fff; font-weight: 800; text-align: left; }
.suote-category-list, .suote-category-list ul { list-style: none; margin: 0; padding: 0; }
.suote-category-list > li { border-bottom: 1px solid #ebedf0; }
.suote-category-list > li:last-child { border-bottom: 0; }
.suote-category-list a { display: flex; align-items: center; justify-content: space-between; gap: .75rem; padding: .86rem 1rem; color: #2e3c4d; font-size: .9rem; font-weight: 700; transition: .2s ease; }
.suote-category-list a:hover, .suote-category-list li.active > a { color: var(--primary); background: #edf6ff; }
.suote-category-list a small { min-width: 25px; padding: .12rem .38rem; border-radius: 999px; background: #eff2f5; color: #7b8794; text-align: center; font-size: .68rem; }
.suote-category-list li.active > a small { background: #d9edff; color: var(--primary); }
.suote-category-list ul { padding: .15rem 0 .55rem; background: #fafbfc; }
.suote-category-list ul a { padding: .55rem 1rem .55rem 1.7rem; font-size: .8rem; font-weight: 600; }
.suote-category-list ul a::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: #bcc5ce; margin-right: .15rem; }
.suote-category-list ul a span { margin-right: auto; }
.suote-contact-card { padding: 1.5rem; background: linear-gradient(145deg, var(--secondary), #174d78); color: #fff; }
.suote-contact-icon { display: grid; place-items: center; width: 50px; height: 50px; margin-bottom: 1rem; border-radius: 50%; background: rgba(255,255,255,.12); font-size: 1.35rem; }
.suote-contact-card > span { color: rgba(255,255,255,.65); font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; }
.suote-contact-card h3 { margin: .45rem 0 1.15rem; font-size: 1.18rem; line-height: 1.4; }
.suote-contact-card a { display: flex; align-items: center; gap: .65rem; margin-top: .65rem; color: #fff; font-size: .88rem; font-weight: 700; }
.suote-showcase-card { overflow: hidden; }
.suote-gallery-wrap { height: 100%; min-height: 580px; padding: 1.25rem; background: #fbfcfd; border-right: 1px solid #e5e9ed; }
.suote-gallery-wrap .commerce-product-gallery { height: 100%; min-height: 535px; box-shadow: none; border: 0; border-radius: 0; background: transparent; }
.suote-gallery-wrap .commerce-gallery-stage { border-radius: 4px; background: #fff; border: 1px solid #e5e8ec; }
.suote-gallery-wrap .commerce-gallery-viewer { min-height: 445px; }
.suote-gallery-wrap .commerce-gallery-main-image { object-fit: contain; }
.suote-gallery-wrap .commerce-gallery-caption { display: none; }
.suote-gallery-wrap .commerce-gallery-toolbar { top: .75rem; left: .75rem; right: .75rem; }
.suote-gallery-wrap .commerce-gallery-thumbs { gap: .55rem; }
.suote-gallery-wrap .commerce-gallery-thumb { border-radius: 3px; }
.suote-product-summary { height: 100%; padding: clamp(1.6rem, 3vw, 2.5rem); display: flex; flex-direction: column; }
.suote-product-labels { display: flex; flex-wrap: wrap; gap: .45rem; margin-bottom: 1rem; }
.suote-product-labels span { padding: .35rem .58rem; border-radius: 3px; background: #eef5fb; color: var(--primary); font-size: .69rem; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; }
.suote-product-labels span:not(:first-child) { background: #fff3f3; color: #d62828; }
.suote-product-summary h1 { margin: 0; color: #1c2733; font-size: clamp(1.75rem, 3vw, 2.7rem); line-height: 1.18; font-weight: 750; letter-spacing: -.025em; overflow-wrap: anywhere; }
.suote-product-lead { margin: 1.15rem 0; color: #677383; font-size: .98rem; line-height: 1.75; }
.suote-model-line { display: flex; align-items: center; gap: 1rem; padding: .8rem 0; border-top: 1px solid #e7e9ec; border-bottom: 1px solid #e7e9ec; }
.suote-model-line span { color: #788391; font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.suote-model-line strong { color: var(--primary); font-size: 1.1rem; }
.suote-quick-specs { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 0; margin: 1rem 0 0; border: 1px solid #e6e9ec; }
.suote-quick-specs div { min-width: 0; padding: .8rem .9rem; border-right: 1px solid #e6e9ec; border-bottom: 1px solid #e6e9ec; }
.suote-quick-specs div:nth-child(2n) { border-right: 0; }
.suote-quick-specs div:nth-last-child(-n+2) { border-bottom: 0; }
.suote-quick-specs dt { margin-bottom: .2rem; color: #84909c; font-size: .67rem; text-transform: uppercase; letter-spacing: .06em; }
.suote-quick-specs dd { margin: 0; color: #263545; font-size: .87rem; font-weight: 750; overflow-wrap: anywhere; }
.suote-price-line { margin-top: 1.1rem; padding: .85rem 1rem; background: #f6f9fc; border-left: 4px solid var(--primary); }
.suote-price-line small, .suote-price-line strong { display: block; }
.suote-price-line small { color: #7e8995; font-size: .74rem; }
.suote-price-line strong { margin-top: .18rem; color: var(--primary); font-size: 1.15rem; }
.suote-product-actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.25rem; }
.suote-product-actions .btn { border-radius: 3px; font-size: .9rem; font-weight: 750; }
.suote-trust-row { display: flex; flex-wrap: wrap; gap: .75rem 1rem; margin-top: auto; padding-top: 1.4rem; color: #667484; font-size: .75rem; }
.suote-trust-row span { display: inline-flex; align-items: center; gap: .35rem; }
.suote-trust-row i { color: #1b9b5f; }
.suote-section-nav { position: sticky; top: 84px; z-index: 20; display: flex; gap: 0; margin-top: 1.5rem; overflow-x: auto; border: 1px solid #e1e5e9; background: #fff; box-shadow: 0 6px 20px rgba(24,39,55,.06); scrollbar-width: none; }
.suote-section-nav::-webkit-scrollbar { display: none; }
.suote-section-nav a { min-width: max-content; padding: .9rem 1.1rem; border-right: 1px solid #e8ebee; color: #44515f; font-size: .8rem; font-weight: 750; }
.suote-section-nav a:hover { color: #fff; background: var(--primary); }
.suote-content-card { margin-top: 1.5rem; padding: clamp(1.5rem, 3vw, 2.25rem); scroll-margin-top: 150px; }
.suote-content-heading { margin-bottom: 1.35rem; padding-bottom: .9rem; border-bottom: 2px solid #e7eaed; }
.suote-content-heading span { display: inline-block; margin-bottom: .35rem; color: var(--primary); font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.suote-content-heading h2 { margin: 0; color: #1d2935; font-size: clamp(1.4rem, 2.2vw, 2rem); font-weight: 750; }
.suote-content-heading h2::after { content: ""; display: block; width: 58px; height: 3px; margin-top: .8rem; background: var(--primary); }
.suote-description-copy { color: #5e6b78; font-size: 1rem; line-height: 1.9; }
.suote-application-note { display: flex; gap: 1rem; margin-top: 1.4rem; padding: 1.1rem; border: 1px solid #dce9f5; background: #f4f9fe; }
.suote-application-note > i { color: var(--primary); font-size: 1.6rem; }
.suote-application-note strong, .suote-application-note span { display: block; }
.suote-application-note span { margin-top: .25rem; color: #667585; font-size: .88rem; line-height: 1.6; }
.suote-spec-table-wrap { border: 1px solid #e0e4e8; }
.suote-spec-table th, .suote-spec-table td { padding: .9rem 1rem; border-color: #e0e4e8; vertical-align: middle; }
.suote-spec-table th { width: 32%; background: #f4f6f8; color: #2d3b49; font-size: .86rem; }
.suote-spec-table td { color: #606e7b; font-size: .9rem; }
.suote-spec-table tr:nth-child(even) td { background: #fbfcfd; }
.suote-feature-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1px; background: #e5e8eb; border: 1px solid #e5e8eb; }
.suote-feature-item { display: grid; grid-template-columns: auto auto 1fr; align-items: start; gap: .8rem; padding: 1.1rem; background: #fff; }
.suote-feature-item > span { color: #c2c8ce; font-size: .75rem; font-weight: 800; }
.suote-feature-item i { color: #16a064; }
.suote-feature-item p { margin: 0; color: #536171; font-size: .9rem; line-height: 1.55; }
.suote-document-grid { grid-template-columns: 1fr; }
.suote-inquiry-card { margin-top: 1.5rem; padding: clamp(1.5rem, 3vw, 2.5rem); scroll-margin-top: 150px; background: linear-gradient(135deg, #0d2c48, #0f4f81); color: #fff; }
.suote-inquiry-kicker { color: #70c0ff; font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.suote-inquiry-card h2 { margin: .55rem 0 .9rem; font-size: clamp(1.65rem, 3vw, 2.5rem); font-weight: 750; }
.suote-inquiry-card p { color: rgba(255,255,255,.68); line-height: 1.75; }
.suote-inquiry-card ul { list-style: none; padding: 0; margin: 1.25rem 0 0; display: grid; gap: .65rem; }
.suote-inquiry-card li { display: flex; align-items: center; gap: .55rem; color: rgba(255,255,255,.88); font-size: .88rem; }
.suote-inquiry-card li i { color: #61db9e; }
.suote-inline-form { padding: 1.3rem; background: #fff; color: #273646; }
.suote-inline-form .form-label { font-size: .78rem; font-weight: 750; }
.suote-inline-form .form-control { min-height: 46px; border-radius: 2px; border-color: #d9dee3; font-size: .9rem; }
.suote-inline-form textarea.form-control { min-height: 130px; }
.suote-inline-form .btn { border-radius: 2px; }
.suote-related-section { padding: 70px 0; background: #fff; }
.suote-related-heading { display: flex; align-items: end; justify-content: space-between; gap: 1rem; margin-bottom: 1.7rem; }
.suote-related-heading span { color: var(--primary); font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.suote-related-heading h2 { margin: .35rem 0 0; font-size: clamp(1.6rem, 3vw, 2.35rem); font-weight: 750; }
.suote-related-heading > a { color: var(--primary); font-size: .88rem; font-weight: 750; }
.suote-related-card { display: flex; flex-direction: column; height: 100%; overflow: hidden; border: 1px solid #e1e5e9; background: #fff; color: #233140; transition: .22s ease; }
.suote-related-card:hover { transform: translateY(-4px); border-color: #b7d8f4; box-shadow: 0 14px 35px rgba(26,52,78,.1); }
.suote-related-card img { width: 100%; height: 210px; object-fit: contain; padding: .7rem; background: #f7f8fa; border-bottom: 1px solid #e6e9ec; }
.suote-related-card > div { display: flex; flex: 1; flex-direction: column; padding: 1rem; }
.suote-related-card small { color: var(--primary); font-size: .67rem; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; }
.suote-related-card strong { margin-top: .45rem; line-height: 1.45; overflow-wrap: anywhere; }
.suote-related-card span { margin-top: auto; padding-top: .8rem; color: #73808d; font-size: .78rem; font-weight: 700; }

@media (max-width: 1199.98px) {
    .suote-gallery-wrap { min-height: auto; border-right: 0; border-bottom: 1px solid #e5e9ed; }
    .suote-gallery-wrap .commerce-product-gallery { min-height: 520px; }
    .suote-product-summary { min-height: 560px; }
}
@media (max-width: 991.98px) {
    .suote-product-main { padding-top: 28px; }
    .suote-sidebar-stack { position: static !important; }
    .suote-category-card { margin-bottom: .2rem; }
    .suote-section-nav { top: 73px; }
    .suote-product-summary { min-height: auto; }
    .suote-inquiry-card { scroll-margin-top: 132px; }
}
@media (max-width: 767.98px) {
    .suote-breadcrumb-bar .breadcrumb-item.active { max-width: 180px; }
    .suote-product-main { padding-bottom: 55px; }
    .suote-gallery-wrap { padding: .7rem; }
    .suote-gallery-wrap .commerce-product-gallery { min-height: auto; }
    .suote-gallery-wrap .commerce-gallery-viewer { min-height: 320px; }
    .suote-product-summary { padding: 1.35rem; }
    .suote-product-summary h1 { font-size: 1.75rem; }
    .suote-product-actions { display: grid; grid-template-columns: 1fr; }
    .suote-product-actions .btn { width: 100%; }
    .suote-section-nav { margin-top: 1rem; }
    .suote-section-nav a { padding: .8rem .9rem; }
    .suote-content-card, .suote-inquiry-card { margin-top: 1rem; border-left: 0; border-right: 0; }
    .suote-feature-grid { grid-template-columns: 1fr; }
    .suote-related-heading { align-items: flex-start; flex-direction: column; }
    .suote-related-card img { height: 190px; }
}
@media (max-width: 575.98px) {
    .suote-breadcrumb-bar .container { padding-top: .75rem; padding-bottom: .75rem; }
    .suote-gallery-wrap .commerce-gallery-viewer { min-height: 275px; }
    .suote-quick-specs { grid-template-columns: 1fr; }
    .suote-quick-specs div, .suote-quick-specs div:nth-child(2n), .suote-quick-specs div:nth-last-child(-n+2) { border-right: 0; border-bottom: 1px solid #e6e9ec; }
    .suote-quick-specs div:last-child { border-bottom: 0; }
    .suote-spec-table, .suote-spec-table tbody, .suote-spec-table tr, .suote-spec-table th, .suote-spec-table td { display: block; width: 100%; }
    .suote-spec-table tr { border-bottom: 1px solid #e0e4e8; }
    .suote-spec-table tr:last-child { border-bottom: 0; }
    .suote-spec-table th { padding-bottom: .25rem; border: 0; }
    .suote-spec-table td { padding-top: .25rem; border: 0; }
    .suote-inline-form { padding: 1rem; }
}

/* =========================================================
   Product details UI polish + motion system (July 2026)
   Scoped to the dynamic product page to avoid admin conflicts.
   ========================================================= */
.suote-inspired-product-page {
    --product-surface: #ffffff;
    --product-soft: #f4f8fc;
    --product-ink: #162638;
    --product-muted: #647487;
    --product-line: #dfe7ef;
    --product-radius: 18px;
    background:
        radial-gradient(circle at 8% 4%, rgba(8,104,200,.075), transparent 25rem),
        radial-gradient(circle at 94% 24%, rgba(237,28,36,.035), transparent 20rem),
        #f4f6f8;
}

.suote-inspired-product-page main { overflow: clip; }
.suote-inspired-product-page .suote-breadcrumb-bar {
    position: relative;
    z-index: 5;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(28,49,69,.04);
}
.suote-inspired-product-page .suote-breadcrumb-bar .breadcrumb-item a {
    transition: color .2s ease;
}
.suote-inspired-product-page .suote-breadcrumb-bar .breadcrumb-item a:hover { color: var(--primary); }

.suote-inspired-product-page .suote-product-main { padding-top: 34px; }
.suote-inspired-product-page .suote-category-card,
.suote-inspired-product-page .suote-contact-card,
.suote-inspired-product-page .suote-showcase-card,
.suote-inspired-product-page .suote-content-card,
.suote-inspired-product-page .suote-inquiry-card {
    border-color: rgba(201,214,226,.82);
    border-radius: var(--product-radius);
    box-shadow: 0 14px 44px rgba(21,48,75,.075);
}

/* Category sidebar */
.suote-inspired-product-page .suote-category-card { background: rgba(255,255,255,.96); }
.suote-inspired-product-page .suote-sidebar-title {
    padding: 1rem 1.1rem;
    background: linear-gradient(135deg, var(--secondary), #174f7e);
    letter-spacing: .01em;
}
.suote-inspired-product-page .suote-category-list a {
    position: relative;
    padding-top: .82rem;
    padding-bottom: .82rem;
    transition: color .22s ease, background .22s ease, padding-left .22s ease;
}
.suote-inspired-product-page .suote-category-list > li > a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 18%;
    width: 3px;
    height: 64%;
    border-radius: 0 4px 4px 0;
    background: var(--primary);
    transform: scaleY(0);
    transition: transform .22s ease;
}
.suote-inspired-product-page .suote-category-list a:hover,
.suote-inspired-product-page .suote-category-list li.active > a {
    padding-left: 1.15rem;
    background: linear-gradient(90deg, rgba(8,104,200,.10), rgba(8,104,200,.025));
}
.suote-inspired-product-page .suote-category-list > li.active > a::before,
.suote-inspired-product-page .suote-category-list > li > a:hover::before { transform: scaleY(1); }
.suote-inspired-product-page .suote-category-list a small { transition: background .2s ease, color .2s ease, transform .2s ease; }
.suote-inspired-product-page .suote-category-list a:hover small { transform: scale(1.06); }

.suote-inspired-product-page .suote-contact-card {
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, #0b2742, #0e5d94);
}
.suote-inspired-product-page .suote-contact-card::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    right: -70px;
    bottom: -75px;
    border: 24px solid rgba(255,255,255,.055);
    border-radius: 50%;
}
.suote-inspired-product-page .suote-contact-card > * { position: relative; z-index: 1; }
.suote-inspired-product-page .suote-contact-icon {
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.12), 0 12px 26px rgba(0,0,0,.13);
    animation: productSoftPulse 3.2s ease-in-out infinite;
}
.suote-inspired-product-page .suote-contact-card a { transition: transform .2s ease, opacity .2s ease; }
.suote-inspired-product-page .suote-contact-card a:hover { transform: translateX(4px); opacity: .9; }

/* Main product showcase */
.suote-inspired-product-page .suote-showcase-card {
    position: relative;
    background: rgba(255,255,255,.98);
    overflow: hidden;
}
.suote-inspired-product-page .suote-showcase-card::before {
    content: "";
    position: absolute;
    z-index: 3;
    left: 0;
    right: 0;
    top: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), #47a8ef 58%, var(--accent));
}
.suote-inspired-product-page .suote-gallery-wrap {
    min-height: 535px;
    padding: 1.15rem;
    background:
        linear-gradient(135deg, rgba(8,104,200,.028), transparent 45%),
        #f8fafc;
}
.suote-inspired-product-page .suote-gallery-wrap .commerce-product-gallery { min-height: 500px; }
.suote-inspired-product-page .suote-gallery-wrap .commerce-gallery-stage {
    border-color: #dfe7ef;
    border-radius: 14px;
    background:
        linear-gradient(45deg, rgba(15,40,68,.018) 25%, transparent 25%, transparent 75%, rgba(15,40,68,.018) 75%),
        linear-gradient(45deg, rgba(15,40,68,.018) 25%, #fff 25%, #fff 75%, rgba(15,40,68,.018) 75%);
    background-size: 26px 26px;
    background-position: 0 0, 13px 13px;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.7);
}
.suote-inspired-product-page .suote-gallery-wrap .commerce-gallery-viewer {
    min-height: 420px;
    padding: 3.6rem 2.6rem 2.7rem;
}
.suote-inspired-product-page .commerce-gallery-main-image {
    height: 420px;
    filter: drop-shadow(0 18px 22px rgba(18,44,68,.12));
}
.suote-inspired-product-page .commerce-gallery-thumb {
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 5px 15px rgba(25,53,80,.055);
}
.suote-inspired-product-page .commerce-gallery-thumb:hover {
    transform: translateY(-3px) scale(1.015);
    box-shadow: 0 10px 22px rgba(25,53,80,.10);
}
.suote-inspired-product-page .commerce-gallery-thumb.active {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(8,104,200,.12), 0 10px 22px rgba(25,53,80,.10);
}
.suote-inspired-product-page .commerce-gallery-toolbar > * { transition: transform .2s ease, background .2s ease, color .2s ease; }
.suote-inspired-product-page .commerce-gallery-expand:hover { transform: rotate(6deg) scale(1.05); }
.suote-inspired-product-page .commerce-gallery-nav {
    opacity: .86;
    transition: transform .2s ease, opacity .2s ease, background .2s ease;
}
.suote-inspired-product-page .commerce-gallery-nav:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.08);
}
.suote-inspired-product-page .commerce-gallery-viewer > .gallery-media-enter {
    animation: productMediaReveal .46s cubic-bezier(.2,.7,.2,1) both;
}

.suote-inspired-product-page .suote-product-summary {
    min-height: 535px;
    padding: clamp(1.6rem, 3vw, 2.55rem);
    background: linear-gradient(180deg, #fff, #fcfdff);
}
.suote-inspired-product-page .suote-product-labels span {
    border: 1px solid rgba(8,104,200,.10);
    border-radius: 999px;
}
.suote-inspired-product-page .suote-product-summary h1 {
    color: var(--product-ink);
    font-weight: 800;
    text-wrap: balance;
}
.suote-inspired-product-page .suote-product-lead { color: var(--product-muted); }
.suote-inspired-product-page .suote-model-line {
    padding: .85rem 1rem;
    border: 1px solid #e1e8ef;
    border-radius: 12px;
    background: #f8fafc;
}
.suote-inspired-product-page .suote-quick-specs {
    gap: .65rem;
    border: 0;
}
.suote-inspired-product-page .suote-quick-specs div {
    position: relative;
    padding: .9rem .95rem;
    border: 1px solid #e2e9f0 !important;
    border-radius: 12px;
    background: #fff;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.suote-inspired-product-page .suote-quick-specs div:hover {
    transform: translateY(-2px);
    border-color: #b8d8f1 !important;
    box-shadow: 0 8px 20px rgba(24,65,101,.07);
}
.suote-inspired-product-page .suote-price-line {
    border: 1px solid #d9e8f5;
    border-left: 4px solid var(--primary);
    border-radius: 10px;
    background: linear-gradient(90deg, #eef7ff, #f9fcff);
}
.suote-inspired-product-page .suote-product-actions .btn {
    position: relative;
    overflow: hidden;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(18,53,84,.08);
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.suote-inspired-product-page .suote-product-actions .btn::after,
.suote-inspired-product-page .product-document-actions .btn::after,
.suote-inspired-product-page .suote-inline-form .btn::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,.28) 50%, transparent 65%);
    transform: translateX(-120%);
    transition: transform .55s ease;
}
.suote-inspired-product-page .suote-product-actions .btn:hover,
.suote-inspired-product-page .product-document-actions .btn:hover,
.suote-inspired-product-page .suote-inline-form .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(18,53,84,.15);
}
.suote-inspired-product-page .suote-product-actions .btn:hover::after,
.suote-inspired-product-page .product-document-actions .btn:hover::after,
.suote-inspired-product-page .suote-inline-form .btn:hover::after { transform: translateX(120%); }
.suote-inspired-product-page .suote-trust-row {
    border-top: 1px dashed #d9e2eb;
    margin-top: 1.35rem;
    padding-top: 1rem;
}
.suote-inspired-product-page .suote-trust-row span { padding: .35rem .5rem; border-radius: 8px; background: #f6f9fb; }

/* Sticky product tabs */
.suote-inspired-product-page .suote-section-nav {
    top: 82px;
    gap: .35rem;
    padding: .45rem;
    border-color: rgba(201,214,226,.88);
    border-radius: 14px;
    background: rgba(255,255,255,.94);
    backdrop-filter: blur(14px);
    box-shadow: 0 12px 30px rgba(22,49,76,.09);
}
.suote-inspired-product-page .suote-section-nav a {
    position: relative;
    padding: .72rem .95rem;
    border: 0;
    border-radius: 9px;
    transition: color .2s ease, background .2s ease, transform .2s ease;
}
.suote-inspired-product-page .suote-section-nav a:hover,
.suote-inspired-product-page .suote-section-nav a.active {
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    transform: translateY(-1px);
}

/* Content cards */
.suote-inspired-product-page .suote-content-card {
    position: relative;
    overflow: hidden;
    background: rgba(255,255,255,.98);
}
.suote-inspired-product-page .suote-content-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary), rgba(8,104,200,.15));
}
.suote-inspired-product-page .suote-content-heading {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-bottom-color: #e8edf2;
}
.suote-inspired-product-page .suote-content-heading h2::after {
    width: 66px;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--primary), #5cb6f2);
    transform-origin: left;
    animation: productLineGrow .7s .15s both;
}
.suote-inspired-product-page .suote-description-copy { color: #536476; }
.suote-inspired-product-page .suote-application-note {
    border-color: #d6e7f5;
    border-radius: 14px;
    background: linear-gradient(135deg, #f1f8ff, #fbfdff);
}
.suote-inspired-product-page .suote-application-note > i {
    display: grid;
    place-items: center;
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(27,69,105,.09);
}

.suote-inspired-product-page .suote-spec-table-wrap {
    overflow: hidden;
    border-radius: 13px;
}
.suote-inspired-product-page .suote-spec-table tr { transition: background .2s ease, transform .2s ease; }
.suote-inspired-product-page .suote-spec-table tr:hover { background: #f3f8fd; }
.suote-inspired-product-page .suote-spec-table th { background: #eef4f9; color: #26394c; }
.suote-inspired-product-page .suote-spec-table td { color: #526579; }

.suote-inspired-product-page .suote-feature-grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: .8rem;
    border: 0;
    background: transparent;
}
.suote-inspired-product-page .suote-feature-item {
    position: relative;
    overflow: hidden;
    border: 1px solid #e1e8ef;
    border-radius: 13px;
    background: linear-gradient(145deg, #fff, #fbfcfe);
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.suote-inspired-product-page .suote-feature-item::after {
    content: "";
    position: absolute;
    right: -22px;
    bottom: -25px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(8,104,200,.045);
}
.suote-inspired-product-page .suote-feature-item:hover {
    transform: translateY(-3px);
    border-color: #b9d7ef;
    box-shadow: 0 12px 27px rgba(26,63,96,.08);
}
.suote-inspired-product-page .suote-feature-item i { transition: transform .2s ease; }
.suote-inspired-product-page .suote-feature-item:hover i { transform: scale(1.15); }

/* PDF cards: true card grid, not a single long column */
.suote-inspired-product-page .suote-document-grid {
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 1rem;
}
.suote-inspired-product-page .product-document-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    border-color: #dfe7ef;
    background: linear-gradient(160deg, #fff, #fbfcfe);
}
.suote-inspired-product-page .product-document-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #d82332, #ff6b73);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s ease;
}
.suote-inspired-product-page .product-document-card:hover::before { transform: scaleX(1); }
.suote-inspired-product-page .product-document-card:hover { transform: translateY(-5px); }
.suote-inspired-product-page .product-document-icon {
    border-radius: 13px;
    transition: transform .25s ease, box-shadow .25s ease;
}
.suote-inspired-product-page .product-document-card:hover .product-document-icon {
    transform: rotate(-3deg) scale(1.04);
    box-shadow: 0 14px 28px rgba(220,53,69,.27);
}
.suote-inspired-product-page .product-document-content h4 { text-wrap: balance; }
.suote-inspired-product-page .product-document-actions .btn {
    position: relative;
    overflow: hidden;
    border-radius: 9px;
}

/* Inquiry */
.suote-inspired-product-page .suote-inquiry-card {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #092844 0%, #0b5284 60%, #0c6fac 100%);
}
.suote-inspired-product-page .suote-inquiry-card::before,
.suote-inspired-product-page .suote-inquiry-card::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 50%;
}
.suote-inspired-product-page .suote-inquiry-card::before { width: 300px; height: 300px; right: -150px; top: -170px; }
.suote-inspired-product-page .suote-inquiry-card::after { width: 210px; height: 210px; left: -120px; bottom: -120px; }
.suote-inspired-product-page .suote-inquiry-card > .row { position: relative; z-index: 1; }
.suote-inspired-product-page .suote-inline-form {
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(2,23,40,.22);
}
.suote-inspired-product-page .suote-inline-form .form-control {
    border-radius: 9px;
    background: #fbfcfd;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.suote-inspired-product-page .suote-inline-form .form-control:focus {
    background: #fff;
    border-color: #7db8e8;
    box-shadow: 0 0 0 .23rem rgba(8,104,200,.10);
}
.suote-inspired-product-page .suote-inline-form .btn {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

/* Related products */
.suote-inspired-product-page .suote-related-section { padding: 62px 0; }
.suote-inspired-product-page .suote-related-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(24,53,80,.055);
}
.suote-inspired-product-page .suote-related-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 18px 40px rgba(24,53,80,.13);
}
.suote-inspired-product-page .suote-related-card img { transition: transform .45s cubic-bezier(.2,.7,.2,1); }
.suote-inspired-product-page .suote-related-card:hover img { transform: scale(1.045); }
.suote-inspired-product-page .suote-related-card span i { transition: transform .2s ease; }
.suote-inspired-product-page .suote-related-card:hover span i { transform: translateX(4px); }

/* Mobile bottom bar */
.suote-inspired-product-page .mobile-product-actions {
    padding: .65rem max(.75rem, env(safe-area-inset-left)) calc(.65rem + env(safe-area-inset-bottom)) max(.75rem, env(safe-area-inset-right));
    border-top: 1px solid rgba(198,211,223,.9);
    background: rgba(255,255,255,.94);
    backdrop-filter: blur(14px);
    box-shadow: 0 -12px 30px rgba(19,46,71,.09);
}
.suote-inspired-product-page .mobile-product-actions .btn { border-radius: 11px; }

/* Reveal and page motion */
.suote-inspired-product-page [data-reveal] {
    opacity: 0;
    transform: translateY(24px) scale(.992);
    filter: blur(3px);
    transition:
        opacity .68s cubic-bezier(.2,.7,.2,1),
        transform .68s cubic-bezier(.2,.7,.2,1),
        filter .68s cubic-bezier(.2,.7,.2,1);
}
.suote-inspired-product-page [data-reveal].revealed {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}
.suote-inspired-product-page .suote-showcase-card.revealed .suote-gallery-wrap {
    animation: productFadeUp .62s .08s both;
}
.suote-inspired-product-page .suote-showcase-card.revealed .suote-product-labels { animation: productFadeUp .5s .13s both; }
.suote-inspired-product-page .suote-showcase-card.revealed h1 { animation: productFadeUp .56s .19s both; }
.suote-inspired-product-page .suote-showcase-card.revealed .suote-product-lead { animation: productFadeUp .56s .25s both; }
.suote-inspired-product-page .suote-showcase-card.revealed .suote-model-line,
.suote-inspired-product-page .suote-showcase-card.revealed .suote-quick-specs { animation: productFadeUp .56s .31s both; }
.suote-inspired-product-page .suote-showcase-card.revealed .suote-price-line,
.suote-inspired-product-page .suote-showcase-card.revealed .suote-product-actions { animation: productFadeUp .56s .37s both; }

@keyframes productFadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes productMediaReveal {
    from { opacity: 0; transform: translateY(7px) scale(.975); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes productSoftPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.045); }
}
@keyframes productLineGrow {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

@media (max-width: 1199.98px) {
    .suote-inspired-product-page .suote-gallery-wrap { min-height: 500px; }
    .suote-inspired-product-page .suote-product-summary { min-height: 500px; }
    .suote-inspired-product-page .suote-gallery-wrap .commerce-gallery-viewer { min-height: 390px; }
    .suote-inspired-product-page .commerce-gallery-main-image { height: 385px; }
    .suote-inspired-product-page .suote-document-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 991.98px) {
    .suote-inspired-product-page .suote-product-main { padding-top: 24px; }
    .suote-inspired-product-page .suote-gallery-wrap,
    .suote-inspired-product-page .suote-product-summary { min-height: auto; }
    .suote-inspired-product-page .suote-gallery-wrap { border-right: 0; }
    .suote-inspired-product-page .suote-section-nav { top: 72px; }
    .suote-inspired-product-page .suote-showcase-card.revealed .suote-gallery-wrap,
    .suote-inspired-product-page .suote-showcase-card.revealed .suote-product-labels,
    .suote-inspired-product-page .suote-showcase-card.revealed h1,
    .suote-inspired-product-page .suote-showcase-card.revealed .suote-product-lead,
    .suote-inspired-product-page .suote-showcase-card.revealed .suote-model-line,
    .suote-inspired-product-page .suote-showcase-card.revealed .suote-quick-specs,
    .suote-inspired-product-page .suote-showcase-card.revealed .suote-price-line,
    .suote-inspired-product-page .suote-showcase-card.revealed .suote-product-actions { animation-delay: .06s; }
}

@media (max-width: 767.98px) {
    .suote-inspired-product-page .suote-category-card,
    .suote-inspired-product-page .suote-showcase-card,
    .suote-inspired-product-page .suote-content-card,
    .suote-inspired-product-page .suote-inquiry-card { border-radius: 14px; }
    .suote-inspired-product-page .suote-gallery-wrap { padding: .65rem; }
    .suote-inspired-product-page .suote-gallery-wrap .commerce-gallery-viewer {
        min-height: min(92vw, 390px);
        padding: 3.1rem 2rem 2.3rem;
    }
    .suote-inspired-product-page .commerce-gallery-main-image { height: min(70vw, 330px); }
    .suote-inspired-product-page .suote-product-summary { padding: 1.25rem; }
    .suote-inspired-product-page .suote-quick-specs { gap: .55rem; }
    .suote-inspired-product-page .suote-quick-specs div { border-bottom: 1px solid #e2e9f0 !important; }
    .suote-inspired-product-page .suote-section-nav {
        margin-left: -.15rem;
        margin-right: -.15rem;
        border-radius: 11px;
    }
    .suote-inspired-product-page .suote-content-card,
    .suote-inspired-product-page .suote-inquiry-card { margin-left: 0; margin-right: 0; }
    .suote-inspired-product-page .suote-feature-grid,
    .suote-inspired-product-page .suote-document-grid { grid-template-columns: 1fr; }
    .suote-inspired-product-page .suote-application-note { align-items: flex-start; }
    .suote-inspired-product-page .product-document-card { padding: 1rem; }
    .suote-inspired-product-page .suote-related-section { padding: 48px 0; }
}

@media (max-width: 420px) {
    .suote-inspired-product-page .suote-gallery-wrap .commerce-gallery-viewer { min-height: 310px; padding-inline: 1.3rem; }
    .suote-inspired-product-page .commerce-gallery-main-image { height: 255px; }
    .suote-inspired-product-page .suote-product-summary h1 { font-size: 1.62rem; }
    .suote-inspired-product-page .suote-product-labels span { font-size: .61rem; }
    .suote-inspired-product-page .suote-content-card { padding: 1.2rem; }
}

@media (prefers-reduced-motion: reduce) {
    .suote-inspired-product-page *,
    .suote-inspired-product-page *::before,
    .suote-inspired-product-page *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}
