:root {
    --primary: #0d2d52;
    --primary-deep: #081c33;
    --accent: #ef7d22;
    --accent-dark: #cf6310;
    --text: #19314b;
    --muted: #6d7c8c;
    --surface: #ffffff;
    --soft: #f1f4f7;
    --border: #dbe3ea;
    --shadow: 0 20px 45px rgba(8, 28, 51, 0.12);
    --radius: 18px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font: inherit;
}

.container {
    width: min(100% - 24px, 1500px);
    margin: 0 auto;
}

.section-space {
    padding: 88px 0;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(239, 125, 34, 0.12);
    color: var(--accent);
    font-size: 0.84rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 42px;
}

.section-heading.light {
    color: #fff;
}

h1,
h2,
h3,
h4 {
    margin: 0 0 14px;
    line-height: 1.15;
    font-family: 'Montserrat', sans-serif;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.6rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

p {
    margin: 0 0 16px;
    color: black;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 100;
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background: #fff;
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 140px;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
    min-height: 126px;
    padding: 10px 20px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 470px;
    flex: 1 1 auto;
}

.logo-mark {
    width: 92px;
    height: 92px;
    display: grid;
    place-items: center;
    /* border-radius: 20px; */
    background: #ffffff;
    /* border: 1px solid rgba(15, 44, 73, 0.12); */
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    padding: 6px;
}

.logo-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.08;
    min-width: 0;
}

.logo-text strong {
    font-size: 1.1rem;
    color: #111;
    margin-bottom: 6px;
    overflow-wrap: anywhere;
}

.logo-text small {
    color: #3d3d3d;
    overflow-wrap: anywhere;
}

.logo-meta {
    font-size: 0.82rem;
}

.location-line {
    position: relative;
    padding-left: 15px;
}

.location-line::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4f4f4f;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.site-nav a {
    font-weight: 500;
    position: relative;
    padding: 24px 28px;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    color: #111;
    font-size: 0.95rem;
}

.site-nav a.active,
.site-nav a:hover {
    color: #fff;
    background: #2f5bdd;
}

.site-nav a.active::after,
.site-nav a:hover::after {
    display: none;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    min-width: 0;
}

.btn-call {
    flex-direction: column;
    align-items: center;
    gap: 2px;
    background: #fff;
    border: 1px solid #2f5bdd;
    color: #2f5bdd;
    border-radius: 2px;
    padding: 9px 18px 6px;
    min-width: 194px;
}

.btn-call small {
    font-size: 0.75rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 0;
    border-radius: 999px;
    padding: 14px 24px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.25s ease;
}

.btn .btn-icon {
    width: 18px;
    height: 18px;
    display: block;
}

.btn-primary {
    color: #fff;
    background: #2f5bdd;
    box-shadow: none;
    border-radius: 2px;
    min-width: 194px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, var(--accent-dark), var(--accent));
}

.btn-light {
    color: var(--primary);
    background: var(--soft);
}

.btn-light:hover,
.btn-secondary:hover {
    transform: translateY(-2px);
    background: #e8eef4;
}

.btn-outline {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.16);
}

.btn-secondary {
    color: var(--primary);
    background: #eef4fa;
}

.top-catalog-section {
    background: #f4f4f4;
    padding: 0 0 0;
    position: relative;
}

.range-strip {
    display: grid;
    grid-template-columns: 150px 1fr 325px;
    align-items: center;
    gap: 20px;
    padding: 10px 18px;
    background: #fff;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}

.range-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.96rem;
    font-weight: 700;
    color: #2f5bdd;
    white-space: nowrap;
}

.range-title span {
    margin-left: 10px;
    color: #6a6a6a;
}

.range-links {
    display: flex;
    align-items: center;
    gap: 0;
    overflow: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    min-width: 0;
}

.range-links a {
    color: #111;
    font-size: 0.92rem;
    padding: 0 16px;
    border-right: 1px solid #dadada;
}

.range-links a:last-child {
    border-right: 0;
}

.range-search {
    display: flex;
    align-items: center;
    border: 1px solid #cfcfcf;
    background: #fff;
}

.range-search input {
    width: 100%;
    border: 0;
    padding: 12px 16px;
    background: transparent;
}

.range-search button {
    border: 0;
    background: transparent;
    padding: 0 16px;
    font-size: 1.4rem;
    cursor: pointer;
}

.catalog-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 0;
    padding: 8px 24px 0;
    background: #fff;
    position: relative;
}

.hImgSldrWrp {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

.hPi_txt {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    height: clamp(240px, 28vw, 340px);
    box-shadow: 0 18px 40px rgba(8, 24, 44, 0.2);
}

.hPiBlur {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: blur(10px);
    transform: scale(1.1);
    opacity: 0.65;
}

.hPi {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 18px 18px 68px;
}

.hPi img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.hItxt {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    pointer-events: none;
    text-align: center;
    padding: 12px 14px;
    color: #fff;
    background: linear-gradient(180deg, transparent, rgba(9, 29, 47, 0.8));
}

.hItxt p {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
}

.hItxt span {
    display: inline-block;
    margin-top: 4px;
    font-size: 0.86rem;
    opacity: 0.85;
}

.catalog-card {
    position: relative;
    min-height: 430px;
    overflow: hidden;
    border-right: 2px solid #3f3f3f;
}

.catalog-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.catalog-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 11px 16px;
    text-align: center;
    background: rgba(57, 35, 43, 0.75);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
}

.catalog-arrow {
    position: absolute;
    top: 53%;
    width: 48px;
    height: 48px;
    margin-top: -24px;
    border-radius: 50%;
    background: #f2f2f2;
    color: #7a7a7a;
    display: grid;
    place-items: center;
    font-size: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    z-index: 2;
}

.catalog-arrow-left {
    left: 18px;
}

.catalog-arrow-right {
    right: 18px;
}

.blue-company-strip {
    background: #2f5bdd;
    padding: 22px 0;
}

.blue-company-strip p {
    margin: 0;
    color: #fff;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
}

.hero-card ul {
    margin: 0;
    padding-left: 20px;
}

.stats-strip {
    margin-top: -34px;
    position: relative;
    z-index: 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.stats-grid div {
    padding: 28px;
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
}

.stats-grid strong {
    display: block;
    color: var(--primary);
    font-size: 2rem;
    font-family: 'Montserrat', sans-serif;
}

.stats-grid span {
    color: var(--muted);
}

.split-layout,
.detail-layout,
.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 38px;
}

.info-grid,
.quality-grid,
.testimonial-grid,
.footer-grid {
    display: grid;
    gap: 24px;
}

.info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 28px;
}

.info-card,
.quality-card,
.testimonial-card,
.contact-form,
.contact-card-panel,
.about-highlight,
.listing-card,
.detail-content,
.gallery-panel,
.map-embed,
.product-card {
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
}

.info-card,
.quality-card,
.testimonial-card,
.contact-form,
.contact-card-panel,
.about-highlight,
.detail-content,
.gallery-panel {
    padding: 28px;
}

.about-panel {
    display: grid;
    gap: 22px;
}

.about-media img {
    border-radius: var(--radius);
    min-height: 100%;
    object-fit: cover;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.quick-products {
    background: #f7f9fc;
}

.quick-products-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 28px;
    align-items: start;
}

.category-sidebar,
.featured-card,
.highlight-box {
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
}

.category-sidebar {
    padding: 28px;
    position: sticky;
    top: 110px;
}

.category-sidebar ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.category-sidebar li + li {
    margin-top: 10px;
}

.category-sidebar a {
    display: block;
    padding: 12px 14px;
    border-radius: 12px;
    background: #f4f7fb;
    color: var(--primary);
    font-weight: 500;
}

.category-sidebar a:hover {
    background: #e7eef7;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.featured-card {
    overflow: hidden;
}

.featured-card img {
    height: 230px;
    width: 100%;
    object-fit: cover;
}

.featured-card-content {
    padding: 24px;
}

.featured-card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.company-highlights {
    padding: 0 0 88px;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.highlight-box {
    padding: 24px;
    border-top: 4px solid var(--accent);
}

.product-card {
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover,
.listing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 50px rgba(8, 28, 51, 0.16);
}

.product-card img {
    height: 220px;
    width: 100%;
    object-fit: cover;
}

.product-card-content {
    padding: 24px;
}

.quality-section {
    background:
        linear-gradient(135deg, rgba(8, 28, 51, 0.96), rgba(13, 45, 82, 0.9)),
        url('https://images.unsplash.com/photo-1581092580497-e0d23cbdf1dc?auto=format&fit=crop&w=1600&q=80') center/cover;
}

.quality-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.quality-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.quality-card h3,
.quality-card p {
    color: #fff;
}

.testimonial-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stars {
    margin-bottom: 16px;
    color: var(--accent);
    font-size: 1.1rem;
    letter-spacing: 0.16em;
}

.contact-form {
    display: grid;
    gap: 16px;
}

.contact-form input,
.contact-form textarea,
.inquiry-form input,
.inquiry-form textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: #f9fbfd;
}

.page-banner {
    padding: 110px 0 70px;
 background:
linear-gradient(120deg, #102d49, #7d9fc0 50%, rgb(142 153 187 / 85%) 100%);

    color: #fff;
}

.page-banner p {
    color: rgba(255, 255, 255, 0.78);
    max-width: 760px;
}

.small-banner {
    padding-top: 92px;
}

.listing-grid {
    display: grid;
    gap: 24px;
}

.listing-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    overflow: hidden;
}

.listing-card img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
}

.listing-content {
    padding: 28px;
}

.spec-list,
.contact-list,
.site-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.spec-list {
    display: grid;
    gap: 8px;
    margin: 18px 0;
}

.listing-actions,
.detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.price-tag {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(13, 45, 82, 0.08);
    color: var(--primary);
    font-weight: 600;
}

.main-gallery-image,
.thumb-grid img {
    border-radius: 16px;
}

.main-gallery-image {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.thumb-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 14px;
}

.thumb-grid img {
    height: 110px;
    object-fit: cover;
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    margin: 22px 0;
}

.spec-table th,
.spec-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
    text-align: left;
}

.spec-table th {
    width: 34%;
    color: var(--primary);
    background: #f5f8fb;
}

.detail-boxes {
    display: grid;
    gap: 18px;
}

.prdCard {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: 28px;
    padding: 26px;
    border-radius: 28px;
    border: 1px solid rgba(16, 45, 73, 0.08);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 20px 48px rgba(12, 35, 58, 0.12);
}

.prdCardMedia {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 16px;
    align-items: start;
}

.prdCardThumbs {
    display: grid;
    gap: 10px;
}

.prdCardThumb {
    border: 1px solid rgba(16, 45, 73, 0.12);
    border-radius: 14px;
    padding: 4px;
    background: #fff;
    cursor: pointer;
    transition: border 0.25s ease, transform 0.25s ease;
}

.prdCardThumb img {
    width: 100%;
    height: 70px;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}

.prdCardThumb.is-active {
    border-color: #b78b3b;
    transform: translateY(-2px);
}

.prdCardMain {
    border: 1px solid rgba(16, 45, 73, 0.12);
    border-radius: 18px;
    background: #fff;
    padding: 10px;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prdCardMain img {
    width: 100%;
    max-height: 360px;
    object-fit: cover;
    border-radius: 12px;
}

.prdCardInfo h1,
.prdCardInfo h2 {
    margin-top: 0;
}

.prdCardInfo .spec-table {
    margin-top: 16px;
}

.company-note {
    padding: 16px 18px;
    margin: 18px 0;
    border-radius: 20px;
    background: #f7f9fc;
    border: 1px solid rgba(47, 91, 221, 0.14);
    color: var(--primary);
    font-weight: 600;
}

.company-note strong {
    display: inline-block;
    margin-right: 6px;
}

.map-embed {
    overflow: hidden;
    min-height: 320px;
}

.map-embed iframe {
    width: 100%;
    height: 100%;
    min-height: 320px;
    border: 0;
}

.site-footer {
    background: #091827;
    color: rgba(255, 255, 255, 0.78);
}

.footer-grid {
    grid-template-columns: 1.2fr 0.8fr 0.9fr 1fr;
    padding: 70px 0 34px;
}

.site-footer h3 {
    color: #fff;
    margin-bottom: 20px;
}

.site-footer li + li {
    margin-top: 12px;
}

.site-footer a:hover {
    color: #fff;
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-links a,
.whatsapp-float {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px 0;
}

.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 90;
    background: #25d366;
    box-shadow: 0 18px 34px rgba(37, 211, 102, 0.28);
}

.whatsapp-float img {
    width: 51px;
    /* height: 22px; */
    display: block;
}

.modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 120;
}

.modal.active {
    display: flex;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 28, 51, 0.68);
}

.modal-dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 520px);
    background: #fff;
    padding: 32px;
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 18px;
    border: 0;
    background: transparent;
    font-size: 2rem;
    color: var(--primary);
    cursor: pointer;
}

.inquiry-form {
    display: grid;
    gap: 14px;
    margin-top: 20px;
}

.nav-toggle {
    display: none;
    background: transparent;
    border: 0;
    padding: 0;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    margin: 5px 0;
    background: var(--primary);
}

body.modal-open {
    overflow: hidden;
}

.homepage-clone {
    background: #f3f3f3;
}

.narrow-container {
    width: min(100% - 48px, 1450px);
}

.catalog-stage {
    position: relative;
}

.blue-company-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.trust-badge {
    position: absolute;
    right: 40px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #ffd338;
    color: #c61e00;
    display: grid;
    place-items: center;
    text-align: center;
    font-size: 0.62rem;
    font-weight: 700;
    line-height: 1.05;
}

.company-facts-panel {
    background: #3558e6;
    color: #fff;
    padding: 0 0 18px;
}

.company-facts-inner {
    padding: 10px 24px 20px;
}

.mini-read-more {
    display: table;
    margin: 0 auto 18px;
    padding: 4px 10px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    font-size: 0.72rem;
}

.fact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px 24px;
}

.fact-item {
    border-right: 1px solid rgba(255, 255, 255, 0.35);
    padding-right: 18px;
    min-height: 42px;
}

.fact-item:nth-child(4),
.fact-item:nth-child(7) {
    border-right: 0;
}

.fact-item span {
    display: block;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.85);
}

.fact-item strong {
    display: block;
    margin-top: 2px;
    font-size: 0.88rem;
    color: #fff;
    overflow-wrap: anywhere;
}

.best-deals-box {
    margin-top: 24px;
    text-align: center;
}

.best-deals-box p {
    color: #fff;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.btn-white {
    background: #fff;
    color: #111;
    border-radius: 2px;
    min-width: 122px;
    padding: 10px 18px;
}

.clone-heading {
    text-align: center;
    margin-bottom: 24px;
}

.clone-heading h2 {
    font-size: 1.8rem;
    text-transform: uppercase;
    color: #242424;
    display: inline-block;
    position: relative;
    padding-bottom: 10px;
}

.clone-heading h2::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 54px;
    height: 3px;
    margin: 0 auto;
    background: #3558e6;
}

.home-range-section,
.home-video-section,
.contact-split-section,
.ratings-section {
    padding: 22px 0 0;
}

.clone-product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 34px 38px;
}

.clone-product-card {
    background: transparent;
}

.clone-product-image {
    height: 175px;
    border: 1px solid #e1e1e1;
    background: #fff;
    display: grid;
    place-items: center;
    padding: 18px;
}

.clone-product-image img {
    max-height: 136px;
    width: auto;
    object-fit: contain;
}

.clone-product-card h3 {
    font-size: 1.2rem;
    margin: 14px 0 10px;
    color: #121212;
}

.clone-product-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 10px;
}

.clone-product-card li {
    padding: 7px 0;
    border-bottom: 1px dotted #d4d4d4;
    font-size: 0.88rem;
    color: #4a4a4a;
}

.view-all-link {
    display: block;
    text-align: center;
    color: #111;
    font-size: 0.92rem;
    margin-top: 10px;
}

.complete-range-wrap {
    text-align: center;
    margin-top: 26px;
}

.btn-outline-blue {
    background: transparent;
    border: 1px solid #3558e6;
    color: #3558e6;
    border-radius: 2px;
    padding: 10px 20px;
    min-width: 0;
}

.video-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 28px;
    align-items: start;
}

.video-frame {
    position: relative;
    background: #000;
}

.video-frame img {
    width: 100%;
    height: 365px;
    object-fit: cover;
    opacity: 0.82;
}

.play-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: #3558e6;
    display: grid;
    place-items: center;
    font-size: 1.4rem;
}

.play-badge.small {
    width: 38px;
    height: 38px;
    font-size: 1rem;
}

.video-main h3 {
    font-size: 1.1rem;
    margin: 10px 0 4px;
}

.video-main p,
.video-thumb p {
    font-size: 0.84rem;
}

.video-thumb {
    position: relative;
    margin-bottom: 18px;
}

.video-thumb img {
    width: 100%;
    height: 92px;
    object-fit: cover;
}

.contact-split-grid {
    display: grid;
    grid-template-columns: 43% 57%;
    background: #fff;
    border-top: 1px solid #3558e6;
}

.contact-blue-panel {
    background: #3558e6;
    color: #fff;
    padding: 18px 22px 26px;
}

.contact-blue-panel h2,
.contact-form-panel h2 {
    font-size: 1.5rem;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.blue-contact-item {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    padding: 18px 0;
}

.blue-contact-item strong {
    display: block;
    margin-bottom: 4px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.blue-contact-item p {
    color: #fff;
    margin: 0;
    font-size: 0.92rem;
}

.share-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 6px;
}

.share-row span {
    font-size: 0.88rem;
}

.share-row a {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #fff;
    color: #3558e6;
    display: grid;
    place-items: center;
    font-size: 0.82rem;
    font-weight: 700;
}

.contact-form-panel {
    padding: 18px 28px;
    background: #fff;
}

.simple-contact-form label {
    display: block;
    margin-bottom: 10px;
    font-size: 0.88rem;
}

.simple-contact-form textarea {
    width: 100%;
    border: 1px solid #d8d8d8;
    resize: vertical;
    padding: 12px 14px;
}

.submit-small {
    margin-top: 12px;
    min-width: 0;
    padding: 10px 30px;
}

.ratings-section {
    background: #f3f3f3;
    padding-bottom: 0;
}

.ratings-section h2 {
    text-align: center;
    font-size: 1.6rem;
    margin-bottom: 22px;
}

.ratings-grid {
    display: grid;
    grid-template-columns: 260px 1fr 1fr;
    gap: 26px;
    align-items: start;
}

.big-rating {
    font-size: 2rem;
    color: #444;
}

.big-rating span {
    font-size: 1.4rem;
    color: #f2b01e;
}

.bar-row {
    display: grid;
    grid-template-columns: 50px 1fr 46px;
    gap: 10px;
    align-items: center;
    margin-bottom: 8px;
    font-size: 0.82rem;
}

.bar {
    height: 8px;
    border-radius: 10px;
    background: #dfdfdf;
    overflow: hidden;
}

.bar i {
    display: block;
    height: 100%;
    background: #72a83b;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 26px;
}

.review-card {
    padding: 14px;
    border-top: 1px solid #e0e0e0;
    background: transparent;
}

.review-card h3 {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #ddd;
    display: grid;
    place-items: center;
    font-size: 1rem;
    margin-bottom: 8px;
}

.review-card p {
    margin-bottom: 4px;
    color: #222;
}

.clone-footer {
    background: #2d2d2d;
    margin-top: 30px;
    padding: 24px 0 18px;
}

.clone-footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
}

.clone-footer h3 {
    color: #fff;
    text-transform: uppercase;
    font-size: 1.4rem;
}

.clone-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
    color: rgba(255, 255, 255, 0.85);
}

.clone-footer li {
    margin-bottom: 8px;
}

.clone-footer a,
.clone-copyright p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
}

.clone-copyright {
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

@media (max-width: 1100px) {
    .split-layout,
    .detail-layout,
    .contact-grid,
    .quality-grid,
    .footer-grid,
    .product-grid,
    .testimonial-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .quality-grid {
        gap: 18px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .quick-products-layout,
    .highlights-grid {
        grid-template-columns: 1fr;
    }

    .category-sidebar {
        position: static;
    }

    .range-strip {
        grid-template-columns: 1fr;
    }

    .catalog-showcase {
        grid-template-columns: 1fr 1fr;
    }

    .logo {
        min-width: 0;
    }

    .fact-grid,
    .clone-product-grid,
    .ratings-grid,
    .clone-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .video-layout,
    .contact-split-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 860px) {
    .header-inner {
        flex-wrap: wrap;
        min-height: auto;
    }

    .nav-toggle {
        display: block;
        margin-left: auto;
    }

    .site-nav {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        padding: 18px 0 6px;
        gap: 16px;
    }

    .site-nav.open {
        display: flex;
    }

    .header-actions {
        width: 100%;
        justify-content: flex-start;
    }

    .split-layout,
    .detail-layout,
    .contact-grid,
    .quality-grid,
    .footer-grid,
    .product-grid,
    .testimonial-grid,
    .info-grid,
    .listing-card {
        grid-template-columns: 1fr;
    }

    .listing-card img {
        min-height: 220px;
    }

    .main-gallery-image {
        height: 300px;
    }

    .featured-grid {
        grid-template-columns: 1fr;
    }

    .site-nav a {
        width: 100%;
        padding: 14px 0;
    }

    .header-actions {
        width: 100%;
    }

    .btn-call,
    .btn-primary {
        min-width: 0;
    }

    .catalog-showcase {
        grid-template-columns: 1fr;
        padding: 8px 12px 0;
    }

    .catalog-card {
        min-height: 280px;
    }

    .fact-grid,
    .clone-product-grid,
    .ratings-grid,
    .review-grid,
    .clone-footer-grid {
        grid-template-columns: 1fr;
    }

    .trust-badge,
    .catalog-arrow {
        display: none;
    }

    .blue-company-inner {
        display: block;
        text-align: center;
    }
}

@media (max-width: 560px) {
    .section-space {
        padding: 72px 0;
    }

    .header-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .stats-grid div,
    .info-card,
    .quality-card,
    .testimonial-card,
    .contact-form,
    .contact-card-panel,
    .about-highlight,
    .detail-content,
    .gallery-panel,
    .listing-content,
    .modal-dialog {
        padding: 22px;
    }

    .listing-actions,
    .detail-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .thumb-grid {
        grid-template-columns: 1fr;
    }
}

body {
    background:
        radial-gradient(circle at top left, rgba(193, 145, 55, 0.12), transparent 28%),
        linear-gradient(180deg, #f8f4eb 0%, #f6f7fb 22%, #eef3f8 100%);
}

.site-header {
    background: rgba(249, 250, 252, 0.9);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(11, 31, 54, 0.08);
    box-shadow: 0 14px 40px rgba(8, 24, 44, 0.06);
}

.header-inner {
    min-height: 104px;
}

/* .logo-mark {
    border-radius: 26px;
    background: #ffffff;
    box-shadow: 0 18px 32px rgba(15, 44, 73, 0.22);
} */

.logo-text strong {
    font-size: 1.18rem;
    color: #0f2236;
    max-width: 680px;
}

.logo-text small {
    color: #5f6f7f;
}

.site-nav a {
    padding: 11px 11px;
    border-radius: 999px;
    transition: color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.site-nav a.active,
.site-nav a:hover {
    background: linear-gradient(135deg, #102d49, #1a4c78);
    transform: translateY(-2px);
}

.btn,
.btn-call,
.btn-primary,
.btn-light,
.btn-outline-blue,
.btn-white {
    border-radius: 999px;
}

.btn-primary {
    background: linear-gradient(135deg, #102d49, #215784);
    border: 0;
    box-shadow: 0 16px 28px rgba(16, 45, 73, 0.2);
}

.btn-primary:hover,
.btn-light:hover,
.btn-outline-blue:hover,
.btn-white:hover {
    transform: translateY(-3px);
}

.btn-call {
    border: 1px solid rgba(16, 45, 73, 0.14);
    color: #12334f;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 14px 30px rgba(8, 24, 44, 0.06);
}

.homepage-clone {
    background: transparent;
}

.top-catalog-section {
    position: relative;
    padding: 24px 0 0;
    background:
        radial-gradient(circle at top right, rgba(183, 139, 59, 0.22), transparent 24%),
        linear-gradient(180deg, #eef3f9 0%, #eef2f7 100%);
}

.range-strip {
    position: relative;
    z-index: 2;
    gap: 24px;
    padding: 16px 20px;
    border: 1px solid rgba(15, 44, 73, 0.08);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 24px 48px rgba(12, 35, 58, 0.08);
}

.range-title {
    color: #9d7632;
    letter-spacing: 0.08em;
}

.range-links a {
    color: #17344f;
    transition: color 0.25s ease;
}

.range-links a:hover {
    color: #b2822e;
}

.range-search {
    border: 1px solid rgba(16, 45, 73, 0.12);
    border-radius: 999px;
    overflow: hidden;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}

.catalog-stage {
    margin-top: 22px;
    padding: 38px;
    border-radius: 36px;
    overflow: hidden;
   background:
linear-gradient(120deg, #102d49, #7d9fc0 50%, rgb(142 153 187 / 85%) 100%);
    box-shadow: 0 36px 90px rgba(8, 24, 44, 0.18);
}

.catalog-stage::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.12), transparent 18%),
        radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.16), transparent 22%);
    pointer-events: none;
}

.hero-intro-panel {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin-bottom: 28px;
    padding: 0 4px;
    color: #fff;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: #f8d994;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero-intro-panel h1 {
    max-width: 680px;
    margin: 16px 0 14px;
    font-size: clamp(2.4rem, 4vw, 4.2rem);
    color: #000000;
}

.hero-intro-panel p {
    max-width: 640px;
    margin-bottom: 22px;
    color: rgb(0, 0, 0);
    font-size: 1.04rem;
}

.hero-intro-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-intro-actions .btn-light {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 26px;
}

.hero-highlights div {
    min-width: 150px;
    padding: 16px 18px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.hero-highlights strong,
.hero-highlights span {
    display: block;
}

.hero-highlights strong {
    color: #111;
    font-size: 1.2rem;
    margin-bottom: 2px;
}

.hero-highlights span {
    color: #111;
    font-size: 0.86rem;
}

.home-hero-logo {
    margin-bottom: 22px;
}

.home-hero-logo img {
    width: 180px;
    max-width: 100%;
    display: block;
    border-radius: 24px;
    border: 1px solid rgba(16, 45, 73, 0.12);
    box-shadow: 0 18px 34px rgba(8, 28, 51, 0.08);
}

.catalog-showcase {
    gap: 18px;
    padding: 0;
    background: transparent;
}

.catalog-card {
    min-height: 390px;
    border-right: 0;
    border-radius: 28px;
    box-shadow: 0 20px 40px rgba(8, 24, 44, 0.22);
    transform: translateY(0);
    transition: transform 0.45s ease, box-shadow 0.45s ease, opacity 0.45s ease;
}

.catalog-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 8%, rgba(8, 24, 44, 0.12) 55%, rgba(8, 24, 44, 0.72) 100%);
}

.catalog-card img,
.catalog-overlay {
    position: relative;
    z-index: 1;
}

.catalog-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 28px 50px rgba(8, 24, 44, 0.28);
}

.catalog-overlay {
    padding: 18px 20px;
    background: linear-gradient(180deg, transparent, rgba(9, 29, 47, 0.82));
    text-align: left;
    font-size: 1rem;
}

.catalog-showcase.is-animated .catalog-card {
    opacity: 0.72;
}

.catalog-showcase.is-animated .catalog-card:nth-child(2) {
    opacity: 1;
    transform: translateY(-8px);
}

.catalog-arrow {
    background: rgba(255, 255, 255, 0.86);
    color: #102d49;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, background 0.3s ease;
    cursor: pointer;
}

.catalog-arrow:hover {
    transform: scale(1.06);
    background: #fff;
}

.blue-company-strip {
    margin-top: -28px;
    background: transparent;
    padding: 0;
}

.blue-company-inner {
    padding: 28px 34px;
    border-radius: 30px;
    background: linear-gradient(135deg, #112f4b, #184769 62%, #b78b3b 140%);
    box-shadow: 0 22px 50px rgba(10, 27, 46, 0.18);
}

.blue-company-strip p {
    max-width: 940px;
    font-size: 1.04rem;
    line-height: 1.8;
}

.trust-badge {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #f3d88a, #bb8b30);
    color: #14314c;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
}

.company-facts-panel {
    margin-top: 18px;
    background: transparent;
}

.company-facts-inner {
    border-radius: 30px;
    background: linear-gradient(135deg, #163450, #274f78);
    box-shadow: 0 26px 60px rgba(11, 29, 47, 0.18);
}

.mini-read-more {
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
}

.fact-grid {
    gap: 22px 28px;
}

.fact-item {
    padding: 10px 18px 10px 0;
}

.best-deals-box {
    margin-top: 30px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.clone-heading h2 {
    color: #10283f;
}

.clone-heading h2::after {
    width: 86px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ad8135, #173c61);
}

.clone-product-card,
.video-main,
.video-thumb,
.contact-split-grid,
.rating-score,
.rating-bars,
.satisfaction-list,
.review-card {
    border-radius: 28px;
}

.clone-product-card {
    padding: 22px;
    border: 1px solid rgba(16, 45, 73, 0.08);
  background: linear-gradient(
  135deg,
  #C5CEE3,
  #8BA3CC,
  #F8F9FC
);
    box-shadow: 0 18px 42px rgba(12, 35, 58, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    cursor: pointer;
    outline: none;
    display: block;
    color: inherit;
}

.division-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
}

.division-card,
.about-company-panel {
    padding: 28px;
    border-radius: 28px;
    border: 1px solid rgba(16, 45, 73, 0.08);
   background: linear-gradient(
  135deg,
  #C5CEE3,
  #8BA3CC,
  #F8F9FC
);
    box-shadow: 0 18px 42px rgba(12, 35, 58, 0.08);
}

.division-card h3 {
    margin: 16px 0 10px;
    color: #132e48;
    font-size: 1.45rem;
}

.division-headline {
    color: #9c732f;
    font-weight: 600;
}

.about-company-panel p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.9;
}

.clone-product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 28px 56px rgba(12, 35, 58, 0.14);
}

.clone-product-card:focus-visible {
    box-shadow: 0 0 0 3px rgba(183, 139, 59, 0.4), 0 18px 42px rgba(12, 35, 58, 0.08);
}

.product-detail-panel {
    display: none;
}

.product-detail-panel.is-active {
    display: block;
}

.clone-product-image {
    height: 210px;
    border-radius: 22px;
    border: 1px solid rgba(16, 45, 73, 0.08);
    background: linear-gradient(180deg, #ffffff, #f2f5f8);
}

.clone-product-card h3 {
    color: #132e48;
}

.view-all-link {
    color: #9c732f;
    font-weight: 600;
}

.btn-outline-blue {
    border-color: rgba(16, 45, 73, 0.16);
    color: #12334f;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 12px 24px rgba(12, 35, 58, 0.06);
}

.video-main,
.video-thumb {
    padding: 16px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(16, 45, 73, 0.08);
    box-shadow: 0 18px 40px rgba(12, 35, 58, 0.08);
}

.video-frame,
.video-thumb img {
    border-radius: 24px;
    overflow: hidden;
}

.contact-split-grid {
    overflow: hidden;
    border: 1px solid rgba(16, 45, 73, 0.08);
    box-shadow: 0 24px 54px rgba(12, 35, 58, 0.12);
}

.contact-blue-panel {
    background: linear-gradient(160deg, #102d49, #1d4f77);
}

.contact-form-panel {
    background:
     linear-gradient(
  135deg,
  #C5CEE3,
  #8BA3CC,
  #F8F9FC
);
}

.simple-contact-form textarea {
    border-radius: 20px;
    min-height: 170px;
    background: rgba(245, 247, 250, 0.9);
}

.ratings-section {
    background: transparent;
    padding-bottom: 10px;
}

.rating-score,
.rating-bars,
.satisfaction-list {
    padding: 24px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(16, 45, 73, 0.08);
    box-shadow: 0 18px 40px rgba(12, 35, 58, 0.08);
}

.big-rating {
    color: #12324d;
}

.bar {
    background: #e6ebf0;
}

.bar i {
    background: linear-gradient(90deg, #b58939, #1f567f);
}

.review-card {
    padding: 20px;
    border: 1px solid rgba(16, 45, 73, 0.08);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 18px 36px rgba(12, 35, 58, 0.08);
}

.review-card h3 {
    background: linear-gradient(135deg, #153653, #b78b3b);
    color: #fff;
}

.clone-footer {
    border-radius: 34px 34px 0 0;
    background: linear-gradient(135deg, #111f2d, #1a3047);
    box-shadow: 0 -10px 40px rgba(11, 29, 47, 0.12);
}

.clone-footer h3 {
    color: #f5dfaa;
}

.reveal-up {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1100px) {
    .catalog-stage {
        padding: 28px 24px;
    }

    .hero-intro-panel {
        margin-bottom: 22px;
    }
}

@media (max-width: 860px) {
    .site-nav a {
        border-radius: 16px;
    }

    .catalog-stage {
        border-radius: 28px;
    }

    .hero-intro-actions,
    .hero-highlights {
        gap: 12px;
    }

    .hero-highlights div {
        min-width: calc(50% - 6px);
    }

    .blue-company-inner,
    .company-facts-inner,
    .clone-footer {
        border-radius: 24px;
    }

    .division-grid {
        grid-template-columns: 1fr;
    }

    .prdCard {
        grid-template-columns: 1fr;
        padding: 22px;
    }

    .prdCardMedia {
        grid-template-columns: 1fr;
    }

    .prdCardThumbs {
        grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
        grid-auto-flow: column;
        overflow-x: auto;
        padding-bottom: 6px;
    }
}

@media (max-width: 560px) {
    .range-strip,
    .catalog-stage,
    .clone-product-card,
    .video-main,
    .video-thumb,
    .rating-score,
    .rating-bars,
    .satisfaction-list,
    .review-card,
    .contact-split-grid {
        border-radius: 22px;
    }

    .hero-intro-panel h1 {
        font-size: 2.2rem;
    }

    .hero-highlights div {
        min-width: 100%;
    }
}

@media (max-width: 720px) {
    .header-inner {
        padding: 10px 14px;
        gap: 16px;
    }

    .logo-mark {
        width: 72px;
        height: 72px;
    }

    .site-nav a {
        padding: 12px 9px;
    }

    .range-strip {
        padding: 14px 16px;
    }

    .range-title {
        white-space: normal;
        text-align: center;
    }

    .range-search {
        width: 100%;
    }

    .catalog-stage {
        padding: 24px 18px;
    }

    .hImgSldrWrp {
        grid-template-columns: 1fr;
    }

    .hPi_txt {
        height: 280px;
    }

    .blue-company-inner,
    .company-facts-inner {
        padding: 22px;
    }

    .fact-grid {
        gap: 16px;
    }
}

@media (max-width: 640px) {
    .spec-table,
    .spec-table tbody,
    .spec-table tr,
    .spec-table th,
    .spec-table td {
        display: block;
        width: 100%;
    }

    .spec-table {
        border-collapse: separate;
        border-spacing: 0 12px;
    }

    .spec-table tr {
        border: 1px solid var(--border);
        border-radius: 12px;
        overflow: hidden;
        background: #fff;
    }

    .spec-table th {
        width: 100%;
        border-bottom: 1px solid var(--border);
    }

    .spec-table td {
        border-bottom: 0;
    }
}

@media (max-width: 480px) {
    .logo {
        gap: 10px;
    }

    .logo-mark {
        width: 62px;
        height: 62px;
        font-size: 0.95rem;
    }

    .logo-text strong {
        font-size: 1rem;
    }

    .section-space {
        padding: 60px 0;
    }

    .hero-intro-panel p {
        font-size: 0.98rem;
    }

    .range-links a {
        padding: 0 12px;
    }

    .main-gallery-image {
        height: 240px;
    }

    .map-embed {
        min-height: 240px;
    }

    .map-embed iframe {
        min-height: 240px;
    }

    .btn,
    .btn-call,
    .btn-primary {
        width: 100%;
    }
}
