:root {
    --navy: #071625;
    --navy-2: #0b1d32;
    --navy-3: #102d4c;
    --blue: #2f67a6;
    --blue-2: #78a8df;
    --graphite: #343033;
    --ink: #111827;
    --muted: #65758b;
    --line: #dce5f1;
    --soft: #f4f7fb;
    --white: #fff;
    --green: #149647;
    --amber: #d97706;
    --red: #b42318;
    --shadow: 0 18px 45px rgba(7,22,37,.13);
    --radius: 16px;
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: Inter,Arial,Helvetica,sans-serif;
    background: var(--soft);
    color: var(--ink)
}

a {
    color: inherit;
    text-decoration: none
}

img {
    max-width: 100%;
    display: block
}

button,input,select,textarea {
    font: inherit;
}

button {
    cursor: pointer
}

.hidden {
    display: none!important
}

.container {
    max-width: 1720px;
    margin: 0 auto;
    padding: 0 42px
}

.mini {
    font-size: 12px;
    color: #91a2b8
}

.blue {
    color: #80b7ff
}

.anchor {
    scroll-margin-top: 92px
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: linear-gradient(180deg,#071625,#081a2b);
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,.08)
}

.topbar-inner {
    max-width: 1720px;
    margin: auto;
    height: 80px;
    padding: 0 42px;
    display: grid;
    grid-template-columns: 280px 1fr 440px;
    align-items: center;
    gap: 24px
}

.logo-wrap img {
    height: 62px;
    width: auto;
    object-fit: contain
}

.nav {
    display: flex;
    justify-content: center;
    gap: 31px;
    font-weight: 850;
    font-size: 15px
}

.nav a {
    position: relative;
    color: #eef6ff;
    opacity: .92;
    white-space: nowrap
}

.nav a:hover,.nav a.active {
    color: #8fc0ff
}

.nav a.active:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -31px;
    height: 3px;
    background: #6da5ee;
    border-radius: 99px
}

.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px
}

.phone {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 8px;
    align-items: center
}

.phone span {
    grid-row: 1/3;
    color: #d7e9ff
}

.phone b {
    font-size: 15px
}

.phone small {
    color: #b6c7da;
    font-size: 12px
}

.quote-btn,.primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid rgba(255,255,255,.12);
    background: linear-gradient(180deg,#1f548d,#0e3158);
    color: #fff;
    border-radius: 7px;
    padding: 14px 22px;
    font-weight: 950;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.14)
}

.quote-btn:hover,.primary-btn:hover {
    background: linear-gradient(180deg,#2a67a8,#123e70)
}

.lang-select {
    background: #0c2239;
    color: #fff;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 7px;
    padding: 12px 10px;
    font-weight: 850
}

.burger {
    display: none;
    background: transparent;
    border: 0;
    color: #fff;
    font-size: 28px
}

.hero {
    position: relative;
    min-height: 330px;
    background-image: linear-gradient(90deg,rgba(7,22,37,.92),rgba(7,22,37,.70),rgba(7,22,37,.88)),url('assets/img/hero-drilling.png');
    background-size: cover;
    background-position: center 48%;
    color: white;
    overflow: hidden
}

.hero:after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 80px;
    background: linear-gradient(180deg,transparent,#071625)
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1450px;
    margin: 0 auto;
    padding: 52px 42px 58px;
    text-align: center;
}

.hero h1 {
    margin: 0;
    font-size: 64px;
    line-height: .96;
    letter-spacing: -2.7px;
    font-weight: 1000;
    text-shadow: 0 6px 24px rgba(0,0,0,.35)
}

.hero h1 .accent {
    color: #83b8ff
}

.hero p {
    font-size: 19px;
    line-height: 1.45;
    margin: 18px 0 20px;
    color: #eef6ff;
    max-width: 1400px;
}

.hero-search {
    display: flex;
    align-items: center;
    background: white;
    border: 1px solid rgba(255,255,255,.42);
    border-radius: 8px;
    box-shadow: 0 14px 45px rgba(0,0,0,.25);
    overflow: hidden;
    max-width: 1400px;
}

.hero-search span {
    color: #173456;
    font-size: 24px;
    padding-left: 20px
}

.hero-search input {
    flex: 1;
    border: 0;
    outline: 0;
    padding: 19px 18px;
    font-size: 16px
}

.hero-search button {
    align-self: stretch;
    border: 0;
    background: #0e3158;
    color: #fff;
    font-weight: 950;
    padding: 0 42px
}

.popular-tags {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 8px;
    margin-top: 12px;
    font-size: 12px;
    flex-direction: row;
    align-content: space-around;
    justify-content: space-around;
}

.popular-tags b {
    color: #e9f2ff
}

.popular-tags button {
    background: rgba(7,22,37,.65);
    border: 1px solid rgba(255,255,255,.25);
    color: #fff;
    border-radius: 6px;
    padding: 6px 14px;
    font-weight: 800
}

.benefit-strip {
    background: linear-gradient(180deg,#102d4c,#081a2b);
    color: #fff
}

.benefit-inner {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    align-items: center
}

.benefit {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 17px;
    border-right: 1px solid rgba(255,255,255,.18)
}

.benefit:last-child {
    border-right: 0
}

.benefit i {
    font-style: normal;
    font-size: 32px;
    color: #fff
}

.benefit strong {
    display: block;
    font-size: 24px;
    line-height: 1
}

.benefit span {
    display: block;
    font-size: 13px;
    color: #c7d6e8;
    margin-top: 4px
}

.category-strip {
    background: #fff;
    border-bottom: 1px solid var(--line)
}

.category-row {
    display: grid;
    grid-template-columns: repeat(8,1fr);
    gap: 10px;
    padding: 12px 0
}

.category-tile {
    min-height: 102px;
    border: 1px solid var(--line);
    background: linear-gradient(180deg,#fff,#f8fbff);
    border-radius: 8px;
    display: grid;
    grid-template-columns: 1fr 86px;
    align-items: center;
    padding: 13px 14px;
    overflow: hidden;
    transition: .18s
}

.category-tile:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    border-color: #aec6e5
}

.category-tile b {
    color: #0b2b4d;
    font-size: 15px;
    line-height: 1.12
}

.category-tile span {
    display: inline-block;
    margin-top: 18px;
    color: #0e3158;
    font-size: 18px
}

.category-tile img {
    width: 86px;
    height: 72px;
    object-fit: contain;
    justify-self: end
}

.catalog-shell {
    max-width: 1720px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 310px 1fr;
    gap: 12px;
    padding: 12px 42px 16px;
    background: #fff
}

.filters-card,.catalog-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px
}

.filters-card {
    padding: 18px
}

.filters-title {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.filters-title h2 {
    margin: 0;
    font-size: 22px;
    color: #0b2b4d
}

.reset-filter {
    background: transparent;
    border: 0;
    color: #1e5d9e;
    font-weight: 900
}

.filters-body {
    display: grid;
    gap: 13px;
    margin-top: 12px
}

.filters-body label {
    display: grid;
    gap: 5px;
    font-size: 12px;
    font-weight: 850;
    color: #31425a
}

.filters-body input,.filters-body select,.filters-body textarea {
    border: 1px solid var(--line);
    border-radius: 7px;
    background: #fff;
    padding: 10px 11px;
    outline: 0
}

.check-group {
    display: grid;
    gap: 8px;
    font-size: 13px
}

.check-group span {
    font-size: 12px;
    font-weight: 900;
    color: #31425a
}

.check {
    display: flex!important;
    grid-template-columns: auto 1fr!important;
    align-items: center;
    gap: 8px;
    font-weight: 700!important;
    color: #354760!important
}

.clear-btn {
    background: transparent;
    border: 0;
    text-align: left;
    color: #1e5d9e;
    font-weight: 950
}

.catalog-card {
    padding: 13px
}

.catalog-toolbar {
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px
}

.sort-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px
}

.sort-wrap select {
    border: 1px solid var(--line);
    padding: 8px 42px 8px 12px;
    border-radius: 6px;
    background: white
}

.catalog-count {
    color: #5f6f85;
    font-size: 13px;
    flex: 1
}

.view-all {
    background: transparent;
    border: 0;
    color: #0e4b82;
    font-weight: 950
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(6,1fr);
    gap: 12px
}

.product-card {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    padding: 14px;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    transition: .18s
}

.product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(7,22,37,.12)
}

.product-thumb {
    height: 94px;
    display: flex;
    align-items: center;
    justify-content: center
}

.product-thumb img {
    max-width: 100%;
    max-height: 104px;
    object-fit: contain
}

.stock {
    margin-top: 4px;
    color: var(--green);
    font-size: 12px;
    font-weight: 950
}

.stock:before {
    content: "●";
    margin-right: 5px
}

.stock.order {
    color: var(--amber)
}

.stock.transit {
    color: #2563eb
}

.article {
    font-weight: 1000;
    color: #0b2b4d;
    margin-top: 7px
}

.part-name {
    font-weight: 850;
    color: #172033;
    margin: 2px 0 10px
}

.details-btn {
    margin-top: auto;
    border: 1px solid #adc1d8;
    background: #fff;
    color: #0b2b4d;
    border-radius: 5px;
    padding: 9px 14px;
    font-weight: 950
}

.details-btn:hover {
    background: #0e3158;
    color: #fff;
    border-color: #0e3158
}

.request-strip {
    background: linear-gradient(90deg,#0d2d4d,#0a2037);
    color: white;
    padding: 16px 42px;
    display: grid;
    grid-template-columns: 70px 275px 1fr;
    align-items: center;
    gap: 22px
}

.request-icon {
    font-size: 46px;
    border: 2px solid #cfe1f7;
    border-radius: 10px;
    width: 58px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center
}

.request-copy h3 {
    margin: 0 0 8px;
    font-size: 18px
}

.request-copy p {
    margin: 0;
    color: #d4e2f3;
    line-height: 1.45
}

.quick-request {
    display: grid;
    grid-template-columns: 1.7fr 1.05fr 1fr 1fr 1fr 1.05fr;
    gap: 14px;
    align-items: center
}

.quick-request textarea,.quick-request input {
    height: 58px;
    border: 0;
    border-radius: 6px;
    background: #fff;
    padding: 12px;
    outline: 0
}

.quick-request textarea {
    height: 68px;
    resize: none
}

.quick-request button {
    height: 58px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 7px;
    background: linear-gradient(180deg,#1e5792,#10355f);
    color: #fff;
    font-weight: 1000
}

.quick-request small {
    grid-column: 2/7;
    color: #c5d5e7;
    margin-top: -8px
}

.section {
    padding: 64px 0
}

.section.dark {
    background: linear-gradient(180deg,#071625,#0b1f35);
    color: #fff
}

.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 34px;
    margin-bottom: 28px
}

.section-head h2 {
    margin: 0;
    font-size: 38px;
    line-height: 1.05;
    letter-spacing: -1.2px;
    max-width: 780px
}

.section-head p {
    max-width: 650px;
    color: #6c7c91;
    line-height: 1.65
}

.dark .section-head p {
    color: #c6d5e7
}

.kicker {
    text-transform: uppercase;
    letter-spacing: .18em;
    color: #2f67a6;
    font-weight: 1000;
    font-size: 12px;
    margin-bottom: 10px
}

.page-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 18px
}

.info-card,.brand-card,.industry-card,.photo-card {
    background: white;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 4px 18px rgba(7,22,37,.06)
}

.info-card h3,.brand-card h3,.industry-card h3 {
    margin: 0 0 10px;
    color: #0b2b4d
}

.info-card p,.brand-card p,.industry-card p {
    margin: 0;
    color: #65758b;
    line-height: 1.6
}

.brand-grid,.industry-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 18px
}

.brand-card {
    display: grid;
    grid-template-columns: 130px 1fr;
    align-items: center;
    gap: 18px;
    transition: .18s
}

.brand-card:hover,.industry-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow)
}

.brand-card img {
    height: 110px;
    object-fit: contain
}

.brand-card b,.industry-card b {
    display: inline-block;
    margin-top: 14px;
    color: #0e4b82
}

.industry-card {
    display: flex;
    flex-direction: column;
    min-height: 260px
}

.industry-card img {
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 16px
}

.photo-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 18px
}

.photo-card {
    padding: 0;
    overflow: hidden
}

.photo-card.big {
    grid-row: span 2
}

.photo-card img {
    width: 100%;
    height: 100%;
    min-height: 250px;
    object-fit: cover
}

.photo-card.big img {
    min-height: 520px
}

.content-page {
    padding: 44px 0 70px
}

.page-hero {
    background: linear-gradient(90deg,rgba(7,22,37,.94),rgba(12,35,58,.72)),url('assets/img/field-operation.png');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 72px 0
}

.page-hero h1 {
    margin: 0;
    font-size: 54px;
    line-height: 1;
    letter-spacing: -1.8px
}

.page-hero p {
    max-width: 760px;
    color: #dce9f7;
    line-height: 1.65;
    font-size: 18px
}

.text-block {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 28px;
    line-height: 1.75;
    color: #3b4658;
	max-width: 1640px;
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px
}

.request-page {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 26px
}

.request-page form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px
}

.request-page textarea {
    grid-column: 1/3;
    min-height: 130px
}

.request-page input,.request-page textarea,.request-page select {
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 14px
}

.request-page button {
    grid-column: 1/3;
    border: 0;
    border-radius: 8px;
    padding: 16px;
    background: #0e3158;
    color: white;
    font-weight: 1000
}

.footer {
    background: linear-gradient(180deg,#081a2b,#071625);
    color: #fff
}

.footer-inner {
    max-width: 1720px;
    margin: auto;
    padding: 34px 42px;
    display: grid;
    grid-template-columns: 310px repeat(4,1fr) 300px;
    gap: 32px;
    border-top: 1px solid rgba(255,255,255,.08)
}

.footer-brand img {
    height: 72px
}

.footer-brand p {
    color: #c7d6e8;
    line-height: 1.55
}

.socials {
    display: flex;
    gap: 10px
}

.socials span {
    width: 30px;
    height: 30px;
    border: 1px solid rgba(255,255,255,.28);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: #c8d7e8
}

.footer-col b {
    color: #fff;
    margin-bottom: 5px
}

.footer-col a:hover {
    color: #8fc0ff
}

.contact-col span {
    line-height: 1.5
}

.map-dots {
    min-height: 130px;
    background: radial-gradient(circle at 63% 42%,#5eb0ff 0 4px,transparent 6px),radial-gradient(circle,#496b8b 1.2px,transparent 1.5px);
    background-size: 100% 100%,12px 12px;
    opacity: .75;
    border-radius: 16px
}

.copyright {
    text-align: center;
    color: #95a9c0;
    font-size: 13px;
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 16px
}

.modal {
    border: 0;
    border-radius: 18px;
    padding: 0;
    max-width: 960px;
    width: 92%;
    box-shadow: 0 30px 100px rgba(0,0,0,.35)
}

.modal::backdrop {
    background: rgba(4,13,23,.72)
}

.close-modal {
    position: absolute;
    right: 14px;
    top: 14px;
    z-index: 2;
    border: 0;
    background: #eef4fb;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    font-size: 24px
}

.product-modal {
    display: grid;
    grid-template-columns: 1fr 1.2fr
}

.modal-visual {
    background: #f8fbff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px
}

.modal-visual img {
    max-height: 360px;
    object-fit: contain
}

.modal-info {
    padding: 34px
}

.modal-info h2 {
    font-size: 34px;
    line-height: 1;
    margin: 10px 0
}

.spec-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 18px
}

.spec-list div {
    background: #f4f7fb;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 12px
}

.spec-list span {
    display: block;
    font-size: 12px;
    color: #667085
}

.spec-list b {
    color: #0b2b4d
}

.modal-actions {
    display: flex;
    gap: 12px;
    margin-top: 22px
}

.modal-actions .primary {
    border: 0;
    border-radius: 8px;
    background: #0e3158;
    color: #fff;
    padding: 14px 18px;
    font-weight: 1000
}

.modal-actions a {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 14px 18px;
    font-weight: 900
}

.toast {
    position: fixed;
    right: 22px;
    bottom: 22px;
    background: #0b1f35;
    color: #fff;
    border-radius: 10px;
    padding: 14px 18px;
    font-weight: 850;
    box-shadow: var(--shadow);
    transform: translateY(130%);
    transition: .25s;
    z-index: 120
}

.toast.show {
    transform: translateY(0)
}

.admin-body {
    background: #0c1726
}

.admin-shell {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 28px
}

.admin-login,.admin-panel {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 30px 100px rgba(0,0,0,.28);
    width: min(1120px,100%);
    padding: 28px
}

.admin-login {
    max-width: 460px
}

.admin-login img {
    height: 72px;
    margin-bottom: 20px
}

.admin-login input {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 14px;
    margin: 10px 0
}

.admin-login button,.admin-actions button,.admin-form button {
    border: 0;
    border-radius: 10px;
    background: #0e3158;
    color: #fff;
    padding: 13px 18px;
    font-weight: 1000
}

.admin-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 16px
}

.admin-top img {
    height: 64px
}

.admin-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px
}

.admin-grid {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 20px
}

.admin-form {
    border: 1px solid #ffffff;
    border-radius: 14px;
    padding: 16px;
    display: grid;
    gap: 10px;
}

.admin-form input,.admin-form select,.admin-form textarea {
    border: 1px solid #7b818a;
    border-radius: 8px;
    padding: 7px;
}

.admin-list {
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: auto
}

.admin-item {
    display: grid;
    grid-template-columns: 72px 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 12px;
    border-bottom: 1px solid var(--line)
}

.admin-item img {
    width: 72px;
    height: 55px;
    object-fit: contain;
    background: #f5f8fc;
    border-radius: 8px
}

.admin-item button {
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 8px;
    padding: 8px 10px;
    font-weight: 850
}

.admin-item .danger {
    color: #b42318
}

.lead-list {
    display: grid;
    gap: 10px;
    margin-top: 16px
}

.lead-card {
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 14px;
    background: #f8fbff
}

.mobile-only {
    display: none
}

@media (max-width: 1180px) {
    .topbar-inner {
        grid-template-columns:220px 1fr auto
    }

    .header-actions {
        gap: 8px
    }

    .phone {
        display: none
    }

    .nav {
        gap: 18px
    }

    .product-grid {
        grid-template-columns: repeat(3,1fr)
    }

    .category-row {
        grid-template-columns: repeat(4,1fr)
    }

    .quick-request {
        grid-template-columns: 1fr 1fr
    }

    .quick-request small {
        grid-column: 1/3
    }

    .request-strip {
        grid-template-columns: 60px 1fr
    }

    .quick-request {
        grid-column: 1/3
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr 1fr
    }

    .map-dots {
        display: none
    }

    .brand-grid,.industry-grid {
        grid-template-columns: repeat(2,1fr)
    }
}

@media (max-width: 820px) {
    .container {
        padding:0 16px
    }

    .topbar-inner {
        height: auto;
        min-height: 74px;
        padding: 10px 16px;
        grid-template-columns: 1fr auto
    }

    .logo-wrap img {
        height: 54px
    }

    .burger {
        display: block
    }

    .nav {
        display: none;
        grid-column: 1/3;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: #0b1f35;
        border-radius: 12px;
        overflow: hidden
    }

    .nav.open {
        display: flex
    }

    .nav a {
        padding: 14px 16px;
        border-top: 1px solid rgba(255,255,255,.08)
    }

    .nav a.active:after {
        display: none
    }

    .header-actions {
        grid-column: 1/3;
        justify-content: space-between
    }

    .quote-btn {
        padding: 12px 14px
    }

    .hero-content {
        padding: 44px 16px 48px
    }

    .hero h1 {
        font-size: 42px;
        letter-spacing: -1.4px
    }

    .hero p {
        font-size: 16px
    }

    .hero-search {
        display: grid;
        grid-template-columns: auto 1fr
    }

    .hero-search button {
        grid-column: 1/3;
        height: 48px
    }

    .benefit-inner {
        grid-template-columns: 1fr 1fr
    }

    .benefit {
        border-bottom: 1px solid rgba(255,255,255,.12)
    }

    .category-row {
        grid-template-columns: 1fr 1fr;
        padding: 10px 0
    }

    .catalog-shell {
        grid-template-columns: 1fr;
        padding: 10px 16px
    }

    .catalog-toolbar {
        height: auto;
        flex-wrap: wrap
    }

    .product-grid {
        grid-template-columns: 1fr 1fr
    }

    .request-strip {
        padding: 18px 16px;
        grid-template-columns: 1fr
    }

    .request-icon {
        display: none
    }

    .quick-request {
        grid-template-columns: 1fr;
        grid-column: auto
    }

    .quick-request small {
        grid-column: auto
    }

    .section-head {
        display: block
    }

    .section-head h2 {
        font-size: 32px
    }

    .page-grid,.two-col,.photo-grid,.brand-grid,.industry-grid {
        grid-template-columns: 1fr
    }

    .photo-card.big img {
        min-height: 280px
    }

    .footer-inner {
        padding: 28px 16px;
        grid-template-columns: 1fr
    }

    .product-modal {
        grid-template-columns: 1fr
    }

    .admin-grid {
        grid-template-columns: 1fr
    }

    .admin-panel,.admin-login {
        padding: 16px
    }

    .admin-top {
        display: block
    }

    .admin-actions {
        margin-top: 12px
    }

    .request-page form {
        grid-template-columns: 1fr
    }

    .request-page textarea,.request-page button {
        grid-column: auto
    }
}

@media (max-width: 520px) {
    .product-grid {
        grid-template-columns:1fr
    }

    .category-row {
        grid-template-columns: 1fr
    }

    .benefit-inner {
        grid-template-columns: 1fr
    }

    .hero h1 {
        font-size: 34px
    }

    .topbar-inner {
        gap: 10px
    }

    .header-actions {
        flex-direction: column;
        align-items: stretch
    }

    .lang-select,.quote-btn {
        width: 100%
    }
}

/* Admin v5: full catalog control */
.admin-panel {
    width: min(1580px,100%)
}

.admin-main {
    min-width: 0
}

.admin-section-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 14px
}

.admin-section-head h2 {
    margin: 0 0 6px
}

.admin-import-mode {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: end
}

.admin-import-mode label {
    font-size: 12px;
    font-weight: 800;
    color: #475467
}

.admin-import-mode select {
    display: block;
    margin-top: 6px;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 10px;
    background: #fff
}

.admin-stats {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 10px;
    margin: 10px 0 14px
}

.admin-stats div {
    border: 1px solid var(--line);
    border-radius: 12px;
    background: linear-gradient(180deg,#fff,#f6f9fd);
    padding: 14px
}

.admin-stats b {
    display: block;
    font-size: 24px;
    color: #0b2b4d
}

.admin-stats span {
    font-size: 12px;
    color: #667085;
    font-weight: 800
}

.admin-product-tools {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr .9fr auto auto auto;
    gap: 8px;
    margin-bottom: 12px
}

.admin-product-tools input,.admin-product-tools select {
    border: 1px solid var(--line);
    border-radius: 9px;
    padding: 11px;
    min-width: 0
}

.admin-product-tools button {
    border: 1px solid var(--line);
    border-radius: 9px;
    background: #fff;
    padding: 10px 12px;
    font-weight: 900;
    color: #0b2b4d;
    white-space: nowrap
}

.admin-product-tools .danger,.admin-item .danger,.admin-table .danger {
    color: #b42318;
    border-color: #f2c7c3
}

.admin-meta {
    background: #f4f8fd;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 10px 12px;
    margin-bottom: 10px;
    color: #43546b;
    font-weight: 750
}

.admin-table-wrap {
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: auto;
    max-height: 68vh;
    background: #fff
}

.admin-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    min-width: 980px
}

.admin-table th {
    position: sticky;
    top: 0;
    z-index: 1;
    background: #edf3f9;
    color: #0b2b4d;
    font-size: 12px;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: .04em;
    padding: 11px;
    border-bottom: 1px solid var(--line)
}

.admin-table td {
    padding: 10px;
    border-bottom: 1px solid var(--line);
    vertical-align: middle
}

.admin-table tr:hover {
    background: #f8fbff
}

.admin-table img {
    width: 68px;
    height: 50px;
    object-fit: contain;
    background: #f4f7fb;
    border-radius: 8px
}

.admin-table button {
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 8px;
    padding: 8px 10px;
    font-weight: 850;
    margin: 2px
}

.admin-table .stock {
    display: inline-flex;
    margin: 0
}

.admin-pagination {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: flex-end;
    margin: 12px 0 20px;
    flex-wrap: wrap
}

.admin-pagination button {
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 8px;
    padding: 9px 12px;
    font-weight: 900
}

.admin-pagination button.active {
    background: #0e3158;
    color: #fff
}

.admin-pagination button:disabled {
    opacity: .45
}

.admin-pagination span {
    color: #667085;
    font-weight: 800
}

.admin-list {
    max-height: 68vh
}

.lead-list {
    max-height: 360px;
    overflow: auto
}

.lead-card pre {
    white-space: pre-wrap;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 8px;
    margin: 8px 0 4px
}

.admin-actions .primary-btn {
    border-radius: 10px;
    background: #0e3158;
    color: #fff;
    padding: 13px 18px;
    font-weight: 1000;
    display: inline-flex;
    align-items: center;
    cursor: pointer
}

.admin-actions a.primary-btn {
    text-decoration: none
}

.admin-actions .primary-btn input {
    display: none
}

@media (max-width: 1280px) {
    .admin-product-tools {
        grid-template-columns:1fr 1fr 1fr
    }

    .admin-stats {
        grid-template-columns: 1fr 1fr
    }

    .admin-section-head {
        display: block
    }

    .admin-import-mode {
        margin-top: 12px
    }
}

@media (max-width: 820px) {
    .admin-product-tools {
        grid-template-columns:1fr
    }

    .admin-stats {
        grid-template-columns: 1fr
    }

    .admin-table-wrap {
        max-height: none
    }

    .admin-table {
        min-width: 880px
    }

    .admin-pagination {
        justify-content: flex-start
    }
}
.footer-map {
  min-height: 150px;
  border-radius: 18px;
  padding: 18px;
  background:
    radial-gradient(circle at 70% 45%, rgba(59, 130, 246, .45) 0 4px, transparent 5px),
    radial-gradient(circle at 68% 43%, rgba(255, 255, 255, .25) 0 18px, transparent 19px),
    linear-gradient(135deg, rgba(15, 35, 58, .96), rgba(5, 18, 33, .98));
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
  position: relative;
  overflow: hidden;
}

.footer-map::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .16;
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 18px 18px;
}

.map-card {
  position: relative;
  z-index: 2;
}

.map-title {
  color: #ffffff;
  font-weight: 800;
  font-size: 15px;
  margin-bottom: 8px;
}

.map-address {
  color: rgba(255, 255, 255, .76);
  font-size: 13px;
  line-height: 1.55;
  margin-bottom: 14px;
}

.map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.map-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 13px;
  border-radius: 10px;
  background: #1e5aa8;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  transition: .2s ease;
}

.map-btn:hover {
  background: #2b74d6;
  transform: translateY(-1px);
}

.map-link {
  color: #9fc5ff;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.map-link:hover {
  color: #ffffff;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px 12px 13px;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 18px 45px rgba(18, 140, 126, .35);
  border: 1px solid rgba(255, 255, 255, .25);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 60px rgba(18, 140, 126, .45);
  filter: brightness(1.04);
}

.wa-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .18);
  font-size: 24px;
  font-weight: 900;
}

.wa-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.wa-text b {
  font-size: 14px;
  font-weight: 900;
}

.wa-text small {
  margin-top: 3px;
  font-size: 11px;
  opacity: .9;
}

@media (max-width: 640px) {
  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    padding: 10px;
  }

  .wa-text {
    display: none;
  }

  .wa-icon {
    width: 48px;
    height: 48px;
  }
}
