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

:root {
    --black: #111111;
    --white: #ffffff;
    --gray: #6b7280;
    --light: #f5f5f2;
    --border: #e7e7e7;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* ROCES Typography — refined corporate pairing */
body {
    font-family: 'Inter', Arial, Helvetica, sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: var(--black);
    background: var(--white);
}

/* Strong, consistent display hierarchy */
h1, h2, h3, h4, h5, h6,
.logo,
.main-nav a,
.eyebrow,
.btn,
button,
.catalog-btn,
.catalog-select,
.selected-items-btn,
.quote-form-box button {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-weight: 700;
    line-height: 1.12;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-weight: 600;
}

button {
    cursor: pointer;
}

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

/* TOP BAR */

.topbar {
    background: #111;
    color: white;
    text-align: center;
    padding: 9px;
    font-size: 10px;
    letter-spacing: 1.5px;
}

/* HEADER */

header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,.94);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.container {
    width: min(1180px, 92%);
    margin: auto;
}

.nav {
    position: relative;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mainlogo {
    height: 70px;
	width: 100%;
}

.logo {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-size: 25px;
    font-weight: 700;
    letter-spacing: 4px;
}

.icon-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    border-radius: 50%;
}

.icon-btn:hover {
    background: var(--light);
}

.cart-button {
    position: relative;
}

.cart-count {
    position: absolute;
    top: 1px;
    right: 0;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    background: #111;
    color: white;
    font-size: 10px;
    display: grid;
    place-items: center;
}

/* HERO */

.hero {
    background: #efeee9;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.eyebrow {
    font-size: 11px;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.hero h1 {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-size: clamp(10px, 6vw, 40px);
    font-weight: 700;
    line-height: .95;
    letter-spacing: -1.8px;
}

.hero p {
    color: #555;
    max-width: 480px;
    margin: 25px 0;
    font-size: 17px;
    line-height: 1.2;
}

.btn {
    display: inline-flex;
    padding: 14px 24px;
    background: #111;
    color: white;
    border-radius: 4px;
    font-size: 14px;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-weight: 600;
    border: none;
    transition: .2s;
}

.btn:hover {
    transform: translateY(-2px);
    opacity: .85;
}

.hero-product {
    position: relative;
    height: 500px;
    overflow: hidden;
    border-radius: 10px;
    background: #f3f3f3;
    box-shadow:0 0 15px 10px rgba(20,50,80,.30);
}

.hero-slides {
    width: 100%;
    height: 100%;
}

.hero-slides img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.7s ease;
}

.hero-slides img.active {
    opacity: 1;
}


/* SECTIONS */

section {
    padding: 85px 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 35px;
}

.section-header h2 {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-size: 38px;
    font-weight: 700;
    letter-spacing: -1.5px;
}

.section-header p {
    color: var(--gray);
}

/* Services */

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

.service-card {
    padding: 20px;
    background: #f5f5f3;
    border-radius: 10px;
    cursor: pointer;
    transition: .3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
}

.service-icon {
    font-size: 25px;
    margin-bottom: 10px;
}

.service-card h3 {
    margin-bottom: 8px;
    font-size: 16px;	
}

.service-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.service-card span {
    display: inline-block;
    margin-top: 18px;
    font-size: 13px;
    font-weight: bold;
}


/* POPUP */

.service-popup {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.65);

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 20px;

    opacity: 0;
    visibility: hidden;

    transition: .3s;

    z-index: 9999;
}

.service-popup.active {
    opacity: 1;
    visibility: visible;
}


.popup-content {
    position: relative;

    width: min(600px, 100%);

    background: white;
    border-radius: 14px;

    padding: 45px;

    transform: translateY(30px);
    transition: .3s;
}

.service-popup.active .popup-content {
    transform: translateY(0);
}


.popup-close {
    position: absolute;
    right: 18px;
    top: 18px;

    width: 35px;
    height: 35px;

    border: none;
    background: #f1f1f1;

    border-radius: 50%;

    font-size: 24px;
    cursor: pointer;
}


.popup-icon {
    font-size: 45px;
    margin-bottom: 15px;
}


.popup-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
}


.popup-content > p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
}


.popup-features {
    border-top: 1px solid #eee;
    padding-top: 20px;
}


.popup-feature {
    padding: 8px 0;
    font-size: 14px;
}


.popup-button {
    margin-top: 25px;

    padding: 12px 22px;

    background: #111;
    color: white;

    border: none;
    border-radius: 5px;

    cursor: pointer;
}

/* PRODUCTS */

.search {
    border: none;
    border-bottom: 1px solid #111;
    padding: 10px 3px;
    width: 200px;
    outline: none;
}

.shop-section {
    padding: 80px 0;
}

.shop-container {
    width: min(1200px, 92%);
    margin: auto;
}


/* HEADER */

.shop-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 30px;
    margin-bottom: 30px;
}

.shop-heading h2 {
    margin: 8px 0 0;
}

#productSearch {
    width: 240px;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    outline: none;
}


/* CATEGORIES */

.shop-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 35px;
}

.category-btn {
    border: 1px solid #ddd;
    background: white;
    color: #222;

    padding: 10px 16px;

    border-radius: 30px;

    cursor: pointer;

    font-size: 13px;

    transition: .2s;
}

.category-btn:hover {
    border-color: #111;
}

.category-btn.active {
    background: #111;
    color: white;
    border-color: #111;
}


/* PRODUCT GRID */

.product-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 25px;
}


/* PRODUCT */

.product-card {
    background: white;
}

.product-image {
    width: 100%;
    height: 220px;

    background: #f4f4f2;

    border-radius: 8px;

    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition: transform .4s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.04);
}


.product-category {
    margin-top: 15px;

    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: 1px;

    color: #888;
}

.product-name {
    font-size: 17px;

    margin: 6px 0 12px;
}


/* ADD TO QUOTE */

.add-quote {
    width: 100%;

    padding: 12px;

    background: #002f4d;

    color: white;

    border: 1px solid #002f4d;

    border-radius: 5px;

    cursor: pointer;

    font-weight: 600;

    transition: .2s;
}

.add-quote:hover {
    background: white;
    color: #111;
}


/* QUOTE MODAL */

.quote-modal {
    position: fixed;

    inset: 0;

    background: rgba(0,0,0,.65);

    display: none;

    justify-content: center;
    align-items: center;

    padding: 20px;

    z-index: 99999;
}

.quote-modal.show {
    display: flex;
}


.quote-box {
    position: relative;

    width: min(600px, 100%);

    max-height: 90vh;

    overflow-y: auto;

    background: white;

    border-radius: 12px;

    padding: 35px;
}


.quote-close {
    position: absolute;

    right: 15px;
    top: 15px;

    width: 35px;
    height: 35px;

    border: 0;

    border-radius: 50%;

    background: #f1f1f1;

    font-size: 24px;

    cursor: pointer;
}


.quote-box h2 {
    margin-bottom: 8px;
}

.quote-box > p {
    color: #777;
    margin-bottom: 25px;
}


/* QUOTE ITEMS */

.quote-item {
    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 15px;

    padding: 12px 0;

    border-bottom: 1px solid #eee;
}

.quote-item-name {
    font-weight: 600;
}

.quote-item-quantity {
    display: flex;

    align-items: center;

    gap: 8px;
}

.quantity-btn {
    width: 28px;
    height: 28px;

    border: 1px solid #ddd;

    background: white;

    cursor: pointer;
}

.remove-item {
    border: 0;

    background: none;

    color: #999;

    cursor: pointer;
}


/* FORM */

#quoteForm {
    margin-top: 25px;
}

#quoteForm input,
#quoteForm textarea {
    width: 100%;

    padding: 12px;

    margin-bottom: 10px;

    border: 1px solid #ddd;

    border-radius: 5px;

    font-family: inherit;

    outline: none;
}

#quoteForm textarea {
    height: 100px;

    resize: vertical;
}

.quote-submit {
    width: 100%;

    padding: 13px;

    border: 0;

    background: #111;

    color: white;

    border-radius: 5px;

    cursor: pointer;

    font-weight: 600;
}


/* MOBILE */

@media (max-width: 900px) {

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

}

@media (max-width: 600px) {

    .shop-heading {
        display: block;
    }

    #productSearch {
        width: 100%;
        margin-top: 20px;
    }

    .shop-categories {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 10px;
    }

    .category-btn {
        white-space: nowrap;
    }

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

}

/* OFFER */

.offer {
    background: #002f4d;
    color: white;
}

.offer-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 40px;
    align-items: center;
}

.offer h2 {
    font-size: clamp(38px,5vw,60px);
    line-height: 1;
    letter-spacing: -3px;
}

.offer p {
    color: #aaa;
    margin: 20px 0 25px;
}

.offer .btn {
    background: white;
    color: #111;
}

.offer-art {
    height: 300px;
    border: 1px solid #333;
    border-radius: 8px;
    display: grid;
    place-items: center;
    font-size: 90px;
}

/* Services banner in the Limited-Time Offer section */
.offer-banner-link{
    position:relative;
    display:block;
    height:300px;
    overflow:hidden;
    border:1px solid rgba(255,255,255,.18);
    border-radius:12px;
    background:#fff;
    box-shadow:0 18px 45px rgba(0,0,0,.22);
    text-decoration:none;
    transition:transform .35s ease, box-shadow .35s ease;
}
.offer-banner-link:focus-visible{
    outline:3px solid #2f84cc;
    outline-offset:4px;
}
.offer-banner-image{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
    object-position:center;
    transition:transform .5s ease, filter .35s ease;
}
.offer-banner-link:hover{
    transform:translateY(-3px);
    box-shadow:0 24px 55px rgba(0,0,0,.28);
}
.offer-banner-link:hover .offer-banner-image{
    transform:scale(1.018);
    filter:saturate(1.03);
}

/* WHY */

.why {
    background: var(--light);
}

.features {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 40px;
}

.feature {
    font-size: 30px;
}

.feature h3 {
    font-size: 18px;
    margin: 12px 0 6px;
}

.feature p {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.7;
}

/* NEWSLETTER */

.newsletter {
    text-align: center;
}

.newsletter h2 {
    font-size: 40px;
    letter-spacing: -2px;
}

.newsletter p {
    color: var(--gray);
    margin: 12px 0 25px;
}

.subscribe {
    max-width: 520px;
    margin: auto;
    display: flex;
    border-bottom: 1px solid #111;
}

.subscribe input {
    flex: 1;
    border: none;
    outline: none;
    padding: 14px 3px;
}

.subscribe button {
    border: none;
    background: transparent;
    font-weight: bold;
}

/* FOOTER */

footer {
    background: #111;
    color: white;
    padding: 60px 0 25px;
}

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

.footer-grid p {
    color: #888;
    margin-top: 15px;
    max-width: 300px;
    font-size: 13px;
}

.footer-grid h4 {
    font-size: 12px;
    margin-bottom: 15px;
}

.footer-grid a {
    display: block;
    color: #888;
    font-size: 13px;
    margin: 8px 0;
}

.copyright {
    border-top: 1px solid #292929;
    margin-top: 45px;
    padding-top: 20px;
    color: #666;
    font-size: 12px;
}

/* CART */

.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.6);
    z-index: 200;
    opacity: 0;
    pointer-events: none;
    transition: .3s;
}

.overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.cart {
    position: fixed;
    right: 0;
    top: 0;
    height: 100%;
    width: min(420px,92vw);
    background: white;
    z-index: 201;
    transform: translateX(100%);
    transition: .3s;
    padding: 25px;
    display: flex;
    flex-direction: column;
}

.cart.active {
    transform: translateX(0);
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
}

.cart-item {
    display: grid;
    grid-template-columns: 65px 1fr auto;
    gap: 12px;
    padding: 15px 0;
    border-bottom: 1px solid var(--border);
}

.cart-thumb {
    height: 65px;
    background: var(--light);
    display: grid;
    place-items: center;
    font-size: 25px;
}

.cart-item small {
    display: block;
    color: var(--gray);
    margin: 4px 0;
}

.quantity button {
    border: none;
    background: none;
    font-size: 18px;
    padding: 2px 7px;
}

.remove {
    background: none;
    border: none;
    color: #888;
    font-size: 11px;
}

.cart-total {
    border-top: 1px solid var(--border);
    padding-top: 20px;
}

.total-row {
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    margin-bottom: 18px;
}

.checkout {
    width: 100%;
}

.empty {
    text-align: center;
    color: #888;
    padding: 80px 0;
}

/* MOBILE */

.mobile-menu {
    display: none;
}

@media(max-width:850px) {

    /* .nav-links {
        display: none;
    } */

    .mobile-menu {
        display: block;
    }

    .hero {
        padding: 60px 0;
    }

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

    .hero-product {
        height: 350px;
    }

    .services,
    .products {
        grid-template-columns: repeat(2,1fr);
    }

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

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

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

@media(max-width:520px) {

    section {
        padding: 60px 0;
    }

    .nav {
        height: 70px;
    }
	.mainlogo {
	height: 50px;
	}

    .hero h1 {
        font-size: 48px;
    }

    .hero-product {
        height: 300px;
    }

    .services,
    .products {
        gap: 12px;
    }

    .category {
        height: 145px;
        padding: 16px;
        font-size: 17px;
    }

    .product-image {
        height: 210px;
    }

    .section-header {
        display: block;
    }

    .section-header p {
        margin-top: 8px;
    }

    .search {
        margin-top: 15px;
    }

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

/* popup quote */

.quote-popup {
    position: fixed;
    inset: 0;

    background: rgba(0,0,0,.65);

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 20px;

    opacity: 0;
    visibility: hidden;

    transition: .3s;

    z-index: 9999;
}

.quote-popup.active {
    opacity: 1;
    visibility: visible;
}


.quote-box {
    position: relative;

    width: min(600px,100%);

    max-height: 90vh;
    overflow-y: auto;

    background: #fff;

    border-radius: 12px;

    padding: 40px;
}


.quote-close {
    position: absolute;

    top: 15px;
    right: 15px;

    width: 35px;
    height: 35px;

    border: none;
    border-radius: 50%;

    background: #f2f2f2;

    font-size: 25px;
}


.quote-box h2 {
    margin-bottom: 8px;
}


.quote-box > p {
    color: #777;
    margin-bottom: 25px;
}


.quote-item {
    display: flex;
    justify-content: space-between;

    padding: 12px 0;

    border-bottom: 1px solid #eee;
}


.quote-form {
    margin-top: 25px;
}


.quote-form input,
.quote-form textarea {
    width: 100%;

    padding: 12px;

    border: 1px solid #ddd;

    border-radius: 4px;

    margin-bottom: 10px;

    outline: none;
}


.quote-form textarea {
    min-height: 100px;
    resize: vertical;
}


.quote-form .btn {
    width: 100%;
}

.product-list-download {
    margin-bottom: 30px;
}

.more-list-btn {
    padding: 12px 20px;

    background: #fff;
    color: #111;

    border: 1px solid #111;
    border-radius: 5px;

    font-size: 13px;
    font-weight: 600;

    cursor: pointer;

    transition: .25s ease;
}

.more-list-btn:hover {
    background: #111;
    color: #fff;
}

/* =========================
   INFORMATION POPUPS
========================= */

.info-popup {

    position: fixed;

    inset: 0;

    background: rgba(0, 0, 0, 0.65);

    display: none;

    justify-content: center;
    align-items: center;

    padding: 20px;

    z-index: 99999;

}


.info-popup.show {

    display: flex;

}


.info-popup-box {

    position: relative;

    width: min(600px, 100%);

    max-height: 90vh;

    overflow-y: auto;

    background: #fff;

    border-radius: 12px;

    padding: 40px;

    animation: popupOpen .25s ease;

}


@keyframes popupOpen {

    from {

        opacity: 0;

        transform: translateY(20px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}


/* CLOSE BUTTON */

.info-popup-close {

    position: absolute;

    top: 15px;

    right: 15px;

    width: 36px;

    height: 36px;

    border: none;

    border-radius: 50%;

    background: #f2f2f2;

    font-size: 24px;

    line-height: 1;

    cursor: pointer;

}


.info-popup-close:hover {

    background: #111;

    color: #fff;

}


/* CONTENT */

.info-popup-box h2 {

    margin: 8px 0 15px;
	color: #000;
    font-size: 32px;

}

.info-popup-box span {
    color: #000;
}

.info-popup-box > p {

    color: #666;
	width: 92%;
    max-width: 1200px;
    margin: 0 auto;	
    line-height: 1.7;

}


.legal-popup h3 {

    margin-top: 25px;
	color: #000;
    margin-bottom: 8px;
    font-size: 18px;

}


.legal-popup p {

    color: #666;
	width: 92%;
    max-width: 1200px;
    margin: 0 auto;	
    line-height: 1.7;

}


/* CONTACT */

.contact-details {

    margin: 25px 0;

    border-top: 1px solid #eee;

}


.contact-item {

    display: flex;

    justify-content: space-between;

    gap: 20px;

    padding: 14px 0;

    border-bottom: 1px solid #eee;

}


.contact-item span {

    color: #666;

}

.contact-item strong{

    color: #666;

}


/* CONTACT FORM */

#contactForm {

    margin-top: 25px;

}


#contactForm input,

#contactForm textarea {

    width: 100%;

    padding: 13px;

    margin-bottom: 10px;

    border: 1px solid #ddd;

    border-radius: 5px;

    outline: none;

    font-family: inherit;

}


#contactForm textarea {

    min-height: 120px;

    resize: vertical;

}


.popup-submit {

    width: 100%;

    padding: 13px;

    border: none;

    border-radius: 5px;

    background: #111;

    color: #fff;

    font-weight: 600;

    cursor: pointer;

}


.popup-submit:hover {

    opacity: .85;

}


/* MOBILE */

@media (max-width: 600px) {

    .info-popup-box {

        padding: 30px 22px;

    }

    .info-popup-box h2 {

        font-size: 26px;

    }

    .contact-item {

        display: block;

    }

    .contact-item span {

        display: block;

        margin-top: 5px;

    }

}
/* DESKTOP NAV */

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-nav a {
    color: #111;
    text-decoration: none;
}

.main-nav a:hover {
    opacity: .5;
}


/* HAMBURGER */

.menu-toggle {
    display: none;

    width: 42px;
    height: 42px;

    padding: 8px;

    border: none;
    background: transparent;

    cursor: pointer;

    z-index: 10001;
}

.menu-toggle span {
    display: block;

    width: 25px;
    height: 2px;

    background: #111;

    margin: 5px auto;

    transition: .3s ease;
}


/* MOBILE */

@media (max-width: 768px) {

    .menu-toggle {
        display: block;
    }


    .main-nav {

        position: absolute;

        top: 100%;
        left: 0;

        width: 100%;

        display: flex;
        flex-direction: column;

        align-items: flex-start;

        gap: 0;

        background: #fff;

        padding: 10px 5%;

        box-shadow: 0 10px 25px rgba(0,0,0,.08);

        /* IMPORTANT */
        visibility: hidden;
        opacity: 0;

        transform: translateY(-10px);

        pointer-events: none;

        transition:
            opacity .3s ease,
            transform .3s ease,
            visibility .3s ease;

        z-index: 10000;
    }


    /* WHEN MENU IS OPEN */

    .main-nav.active {

        visibility: visible;

        opacity: 1;

        transform: translateY(0);

        pointer-events: auto;
    }


    .main-nav a {

        display: block;

        width: 100%;

        padding: 15px 0;

        border-bottom: 1px solid #eee;
    }


    /* HAMBURGER ANIMATION */

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

}
/* DATABASE PRODUCT FIELDS */
.product-price{font-size:15px;font-weight:700;margin:8px 0 6px}
.product-description{color:#666;font-size:13px;line-height:1.5;min-height:39px;margin-bottom:12px}
.product-loading,.product-error{grid-column:1/-1;padding:40px 0;text-align:center;color:#777}



/* SERVICE PAGES
   Service cards now navigate to service.php?service=<slug>
   instead of opening a JavaScript popup. */
.service-link {
    display: block;
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

.service-link:hover {
    text-decoration: none;
}

.service-page {
    padding: 0 0 80px;
}

.service-hero {
    padding: 95px 0 70px;
    background: linear-gradient(135deg, #f7f9fc 0%, #eef5fb 100%);
}

.service-hero-grid {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 35px;
    align-items: start;
}

.service-page-icon {
    width: 105px;
    height: 105px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 52px;
    background: #fff;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
}

.service-page h1 {
    font-size: clamp(38px, 5vw, 64px);
    margin: 8px 0 18px;
    line-height: 1.05;
}

.service-page-intro {
    max-width: 850px;
    font-size: 18px;
    line-height: 1.75;
    color: #666;
}

.service-content {
    padding: 70px 0;
}

.service-content-grid {
    display: grid;
    grid-template-columns: 1.4fr .8fr;
    gap: 55px;
    align-items: start;
}

.service-content h2 {
    font-size: 34px;
    margin: 0 0 22px;
}

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

.service-feature {
    padding: 20px;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    background: #fff;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(0,0,0,.04);
}

.service-feature::before {
    content: "✓";
    margin-right: 10px;
    font-weight: 800;
}

.service-cta {
    background: #111;
    color: #fff;
    border-radius: 16px;
    padding: 35px;
    position: sticky;
    top: 30px;
}

.service-cta h3 {
    margin-top: 0;
    font-size: 25px;
}

.service-cta p {
    color: #ccc;
    line-height: 1.65;
}

.service-cta .btn {
    display: inline-block;
    margin-top: 10px;
    background: #fff;
    color: #111;
}

.service-back {
    display: inline-block;
    margin-bottom: 35px;
    font-weight: 700;
    color: inherit;
    text-decoration: none;
}

.service-back:hover {
    text-decoration: underline;
}

.service-page .site-header {
    position: relative;
}

@media (max-width: 800px) {
    .service-hero-grid {
        grid-template-columns: 1fr;
    }

    .service-content-grid {
        grid-template-columns: 1fr;
    }

    .service-features {
        grid-template-columns: 1fr;
    }

    .service-cta {
        position: static;
    }
}


/* Product selection */
.product-list-download{display:flex;justify-content:flex-end;align-items:center;gap:10px;grid-column:1/-1;margin-top:-10px;margin-bottom:10px}
.more-list-btn,.selected-items-btn{display:inline-flex;align-items:center;justify-content:center;padding:12px 16px;border-radius:5px;font-weight:700;border:1px solid #111}
.more-list-btn{background:#fff;color:#111}.more-list-btn:hover{background:#111;color:#fff}.selected-items-btn{background:#111;color:#fff}.selected-items-btn[hidden]{display:none}
.add-quote.is-selected{background:#fff;color:#111;border-color:#111}
.product-description{color:#666;font-size:13px;line-height:1.5;min-height:39px;margin-bottom:12px}
@media(max-width:600px){.product-list-download{justify-content:stretch;flex-wrap:wrap}.more-list-btn,.selected-items-btn{flex:1}}

/* FINAL CONTACT + INFORMATION MODAL REFINEMENTS */
.info-popup.active{display:flex}
.info-popup-box{width:min(900px,calc(100vw - 40px));max-height:min(88vh,820px);overflow-y:auto;padding:38px 42px;border-radius:18px;box-shadow:0 25px 80px rgba(0,0,0,.22)}
.info-popup-box h2{font-size:clamp(34px,5vw,58px);line-height:1.02;margin:8px 0 12px}
.info-popup-box > p{width:100%;max-width:none;margin:0;color:#666;line-height:1.6}
.contact-details{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px;border:0;margin:22px 0 18px}
.contact-item{display:block;padding:17px 18px;border:1px solid #e9e9e7;border-radius:12px;background:#f7f7f5;min-width:0}
.contact-item strong{display:block;color:#555;font-size:11px;letter-spacing:1.5px;text-transform:uppercase;margin-bottom:8px}
.contact-item span{display:block;color:#222;line-height:1.45;overflow-wrap:anywhere}
#contactForm{display:grid;grid-template-columns:1fr 1fr;gap:10px;margin-top:16px}
#contactForm input,#contactForm textarea{width:100%;box-sizing:border-box;padding:14px 15px;margin:0;border:1px solid #ddd;border-radius:9px;background:#fff}
#contactForm input:nth-of-type(3),#contactForm textarea,#contactForm .popup-submit{grid-column:1/-1}
#contactForm textarea{min-height:100px}
.popup-submit{padding:14px;border-radius:9px}
.legal-popup{max-width:760px}
.legal-popup h3{margin-top:22px}
.legal-popup p{width:100%;max-width:none;margin:0;line-height:1.65}
.info-popup-close{top:16px;right:16px;width:42px;height:42px}
@media(max-width:700px){.info-popup{padding:12px}.info-popup-box{width:calc(100vw - 24px);max-height:92vh;padding:30px 22px;border-radius:15px}.contact-details{grid-template-columns:1fr}.contact-item{padding:13px 15px}#contactForm{grid-template-columns:1fr}#contactForm input,#contactForm textarea,#contactForm .popup-submit{grid-column:1}.info-popup-box h2{font-size:36px}}

/* =========================================================
   MODERN ROCES SERVICE ICON SYSTEM
   Clean line icons with a consistent premium visual language.
   ========================================================= */
.service-icon,
.service-page-icon,
.care-card-icon,
.catalog-service-icon {
    color: #0f4f8f;
}

.service-svg-icon {
    display: block;
    width: 100%;
    height: 100%;
}

.service-card .service-icon {
    width: 62px;
    height: 62px;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(145deg,#ffffff,#eef4f9);
    border: 1px solid #dfe8ef;
    box-shadow: 0 10px 24px rgba(15,79,143,.10);
    margin-bottom: 18px;
    transition: transform .3s ease, box-shadow .3s ease, background .3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.06);
    box-shadow: 0 14px 30px rgba(15,79,143,.16);
    background: #fff;
}

.service-card {
    position: relative;
    min-height: 220px;
    padding: 24px;
    background: linear-gradient(145deg,#ffffff 0%,#f4f7fa 100%);
    border: 1px solid #023C6E;
    box-shadow: 4px 4px 10px rgb(0, 87, 153, 0.3);
    border-radius: 18px;
    overflow: hidden;
}

.service-card::after {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    right: -55px;
    top: -55px;
    border-radius: 50%;
    background: rgba(15,79,143,.045);
    pointer-events: none;
}

.service-card h3 {
    font-size: 16px;
    letter-spacing: -.2px;
}

.service-card p {
    max-width: 260px;
}

.service-card span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 16px;
    color: #0f4f8f;
    font-family: 'Montserrat',Arial,sans-serif;
    font-weight: 600;
    font-size: 12px;
}

.service-page-icon {
    width: 118px;
    height: 118px;
    padding: 29px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg,#ffffff,#edf4f9);
    border: 1px solid #dfe8ef;
    box-shadow: 0 20px 45px rgba(15,79,143,.12);
}

.service-page-icon .service-svg-icon {
    width: 100%;
    height: 100%;
}

/* Product catalogue service strip */
.catalog-services {
    padding: 70px 0 80px;
    background: linear-gradient(180deg,#f7fafc 0%,#ffffff 100%);
    border-top: 1px solid #edf1f4;
}

.catalog-services-heading {
    margin-bottom: 28px;
}

.catalog-services-heading h2 {
    margin: 8px 0 7px;
    font-size: clamp(28px,4vw,42px);
}

.catalog-services-heading p {
    color: var(--gray);
}

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

.catalog-service-card {
    display: grid;
    grid-template-columns: 44px minmax(0,1fr) 26px;
    align-items: center;
    gap: 12px;
    padding: 14px;
    border: 1px solid #e2e9ef;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(20,50,80,.045);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.catalog-service-card:hover {
    transform: translateY(-3px);
    border-color: #cbdce9;
    box-shadow: 0 14px 30px rgba(20,50,80,.09);
}

.catalog-service-icon {
    width: 44px;
    height: 44px;
    padding: 10px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f2f7fb;
}

.catalog-service-title {
    font-family: 'Montserrat',Arial,sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.3;
}

.catalog-service-arrow {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #0f4f8f;
    color: #fff;
    font-size: 13px;
}

/* CareTech modern visual system */
.care-page {
    background: #fff;
}

.care-hero {
    padding: 55px 0 0;
    background: linear-gradient(180deg,#f7fafc 0%,#fff 100%);
}

.care-title {
    text-align: center;
    max-width: 920px;
    margin: auto;
}

.care-title h1 {
    font-size: clamp(38px,6vw,70px);
    letter-spacing: -2px;
    line-height: 1.02;
    margin: 12px 0 18px;
}

.care-title p {
    color: #586b7d;
    line-height: 1.7;
    font-size: 17px;
}

.care-carousel {
    position: relative;
    width: min(100%,1100px);
    aspect-ratio: 16/7;
    margin: 38px auto 0;
    overflow: hidden;
    border-radius: 24px 24px 0 0;
    background: #eaf0f5;
    box-shadow: 0 22px 60px rgba(15,45,75,.12);
}

.care-carousel img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity .65s ease, transform 5s ease;
    transform: scale(1.02);
}

.care-carousel img.active {
    opacity: 1;
    transform: scale(1);
}

.care-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    border: 1px solid rgba(255,255,255,.8);
    background: rgba(255,255,255,.92);
    color: #0f4f8f;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    font-size: 25px;
    box-shadow: 0 8px 24px rgba(0,0,0,.14);
}

.care-arrow.prev { left: 18px; }
.care-arrow.next { right: 18px; }

.care-dots {
    position: absolute;
    bottom: 17px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 7px;
    z-index: 3;
}

.care-dots button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 0;
    padding: 0;
    background: #fff;
    opacity: .55;
}

.care-dots button.active {
    opacity: 1;
    transform: scale(1.3);
}

.care-section {
    padding: 78px 0;
}

.care-section.alt {
    background: #f5f8fa;
}

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

.care-card {
    position: relative;
    min-height: 210px;
    padding: 25px;
    border: 1px solid #e1e8ee;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(25,55,80,.06);
    overflow: hidden;
}

.care-card-icon {
    width: 58px;
    height: 58px;
    padding: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f2f7fb;
    border: 1px solid #e0e9f0;
    margin-bottom: 18px;
}

.care-card h3 {
    font-size: 17px;
    margin: 0 0 8px;
}

.care-card p {
    color: #5e7183;
    line-height: 1.6;
    font-size: 14px;
}

.promo-box {
    border: 1px solid #dfe8ef;
    border-radius: 18px;
    padding: 30px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(25,55,80,.05);
}

.care-form {
    max-width: 720px;
    margin: 35px auto 0;
    background: #f4f7f9;
    border: 1px solid #e2e9ee;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(25,55,80,.06);
}

.care-form input {
    width: 100%;
    padding: 14px 15px;
    margin-bottom: 12px;
    border: 1px solid #d9e1e7;
    border-radius: 9px;
    background: #fff;
    font: inherit;
}

.care-form button,
.wa-button {
    width: 100%;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 18px;
    border-radius: 9px;
    font-family: 'Montserrat',Arial,sans-serif;
    font-weight: 600;
}

.care-form button {
    background: #0f4f8f;
    color: #fff;
    border: 1px solid #0f4f8f;
}

.wa-button {
    margin-top: 12px;
    background: #fff;
    color: #0f4f8f;
    border: 1px solid #0f4f8f;
}

@media(max-width:900px){
    .catalog-services-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
}

@media(max-width:700px){
    .care-carousel{aspect-ratio:4/3;border-radius:18px;margin-top:28px}
    .care-grid{grid-template-columns:1fr}
    .catalog-services-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
    .service-page-icon{width:92px;height:92px;padding:23px;border-radius:24px}
}

@media(max-width:480px){
    .catalog-services-grid{grid-template-columns:1fr}
    .care-title h1{letter-spacing:-1px}
    .care-form{padding:20px}
}

/* =========================================================
   ROCES UNIVERSAL MOBILE NAVIGATION FIX
   ========================================================= */
@media (max-width: 768px) {
    header { position: sticky !important; top: 0; z-index: 10000 !important; }
    header .nav { position: relative !important; z-index: 10001 !important; }
    .menu-toggle {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        flex: 0 0 42px !important;
        position: relative !important;
        z-index: 10003 !important;
        pointer-events: auto !important;
        touch-action: manipulation !important;
    }
    .menu-toggle span { pointer-events: none !important; }
    .main-nav {
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 0 !important;
        margin: 0 !important;
        padding: 10px 6% 14px !important;
        background: rgba(255,255,255,.98) !important;
        box-shadow: 0 16px 35px rgba(0,0,0,.12) !important;
        border-top: 1px solid #e7e7e7 !important;
        visibility: hidden !important;
        opacity: 0 !important;
        transform: translateY(-8px) !important;
        pointer-events: none !important;
        transition: opacity .22s ease, transform .22s ease, visibility .22s ease !important;
        z-index: 10002 !important;
    }
    .main-nav.active {
        visibility: visible !important;
        opacity: 1 !important;
        transform: translateY(0) !important;
        pointer-events: auto !important;
    }
    .main-nav a {
        display: block !important;
        width: 100% !important;
        padding: 14px 4px !important;
        border-bottom: 1px solid #eee !important;
        font-size: 14px !important;
    }
    .main-nav a:last-child { border-bottom: 0 !important; }
    body.mobile-menu-open { overflow: hidden; }
}

/* =========================================================
   CARETECH MOBILE REFINEMENTS + VISIBLE HAMBURGER
   ========================================================= */
@media (max-width: 700px) {
    /* Center all Cleaning/CareTech service content on mobile */
    .care-page .care-card {
        text-align: center;
        align-items: center;
    }
    .care-page .care-card-icon {
        margin-left: auto;
        margin-right: auto;
    }
    .care-page .care-card p {
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
    }
    .care-page .care-benefit {
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: 9px;
        padding: 24px 18px;
    }
    .care-page .care-benefit-icon {
        margin: 0 auto;
    }
    .care-page .care-benefit strong,
    .care-page .care-benefit span {
        text-align: center;
    }
    .care-page .promo-box {
        text-align: center;
    }
    .care-page .care-contact {
        text-align: center;
    }
    .care-page .care-contact .care-form {
        text-align: left;
    }

    /* Make the hamburger graphic unmistakably visible */
    .menu-toggle {
        width: 44px !important;
        height: 44px !important;
        min-width: 44px !important;
        min-height: 44px !important;
        padding: 7px !important;
        background: #ffffff !important;
        border: 1px solid #dce5ec !important;
        border-radius: 10px !important;
        box-shadow: 0 4px 12px rgba(20,50,80,.08) !important;
    }
    .menu-toggle span,
    .menu-toggle span:nth-child(1),
    .menu-toggle span:nth-child(2),
    .menu-toggle span:nth-child(3) {
        display: block !important;
        visibility: visible !important;
        width: 24px !important;
        height: 3px !important;
        min-height: 3px !important;
        margin: 3px auto !important;
        background: #10233f !important;
        border-radius: 3px !important;
        opacity: 1 !important;
        transform-origin: center !important;
    }
    .menu-toggle.active span:nth-child(1) {
        transform: translateY(6px) rotate(45deg) !important;
    }
    .menu-toggle.active span:nth-child(2) {
        opacity: 0 !important;
    }
    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg) !important;
    }
}

/* =========================================================
   ROCES V10 REFINEMENTS
   ========================================================= */
html{scroll-behavior:smooth;scroll-padding-top:105px}
body{overflow-x:hidden}

/* Main product cards: equal-height structure + 25-character title clamp */
.product-grid{align-items:stretch}
.product-card{display:flex;flex-direction:column;min-width:0;height:100%}
.product-card .product-image{flex:0 0 220px}
.product-card .product-name{min-height:2.55em;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;overflow:hidden;line-height:1.27;margin-bottom:10px}
.product-card .product-price{min-height:22px}
.product-card .product-description{display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;overflow:hidden;min-height:39px}
.product-card .add-quote{margin-top:auto}

/* Code-built promotional mosaic: no external image required */
.offer-mosaic{position:relative;display:block!important;height:320px!important;overflow:hidden;padding:22px!important;background:radial-gradient(circle at 78% 15%,rgba(47,132,204,.32),transparent 35%),linear-gradient(145deg,#07192e 0%,#0d3f70 58%,#09223c 100%);border:1px solid rgba(255,255,255,.18);box-shadow:0 25px 55px rgba(0,0,0,.22)}
.offer-mosaic-head{display:flex;align-items:baseline;justify-content:space-between;gap:12px;color:#fff;margin-bottom:14px}
.offer-mosaic-head span{font-family:'Montserrat',Arial,sans-serif;font-weight:700;letter-spacing:3px;font-size:20px}
.offer-mosaic-head small{font-family:'Montserrat',Arial,sans-serif;font-size:8px;letter-spacing:1.5px;opacity:.72;text-align:right}
.offer-mosaic-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:9px;height:235px}
.offer-tile{position:relative;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:8px;border:1px solid rgba(255,255,255,.17);border-radius:14px;background:linear-gradient(145deg,rgba(255,255,255,.14),rgba(255,255,255,.035));backdrop-filter:blur(8px);color:#fff;overflow:hidden}
.offer-tile::after{content:"";position:absolute;inset:auto -20px -35px;width:100px;height:100px;border-radius:50%;background:rgba(255,255,255,.08)}
.offer-tile svg{width:38px;height:38px;color:#dcefff;z-index:1}
.offer-tile span{font-family:'Montserrat',Arial,sans-serif;font-size:10px;font-weight:600;letter-spacing:.5px;text-align:center;z-index:1}
.offer-mosaic-foot{margin-top:13px;color:rgba(255,255,255,.7);font-family:'Montserrat',Arial,sans-serif;font-size:8px;letter-spacing:1.5px;text-align:center}
.offer-mosaic-foot b{margin:0 5px;color:#8fc8f4}

/* Newsletter */
.newsletter-status{grid-column:1/-1;min-height:20px;margin-top:5px;font-size:13px;font-weight:500}
.newsletter-status.success{color:#0c6b43}.newsletter-status.error{color:#a02b2b}

/* Smoother compact information modals */
.info-popup{display:flex!important;visibility:hidden;opacity:0;pointer-events:none;transition:opacity .28s ease,visibility .28s ease,background .28s ease;padding:18px;background:rgba(5,16,30,.62);backdrop-filter:blur(4px)}
.info-popup.active{visibility:visible;opacity:1;pointer-events:auto}
.info-popup-box{width:min(760px,calc(100vw - 36px));max-height:min(82vh,720px);padding:30px 34px;border-radius:16px;box-shadow:0 30px 90px rgba(0,0,0,.28);transform:translateY(18px) scale(.985);opacity:0;transition:transform .32s cubic-bezier(.2,.8,.2,1),opacity .24s ease;overflow:auto}
.info-popup.active .info-popup-box{transform:translateY(0) scale(1);opacity:1}
.info-popup-box h2{font-size:clamp(32px,4vw,50px);margin:5px 0 10px}
.info-popup-box>p{font-size:14px;line-height:1.55;margin-bottom:16px}
.contact-details{gap:10px;margin:18px 0 14px}
.contact-item{padding:14px 15px;border-radius:10px}
.contact-item strong{font-size:10px;margin-bottom:6px}
.contact-item span{font-size:14px;line-height:1.4}
.legal-popup h3{font-size:16px;margin:18px 0 5px}
.legal-popup p{font-size:13px;line-height:1.55;margin-bottom:8px}
.info-popup-close{transition:transform .2s ease,background .2s ease}.info-popup-close:hover{transform:rotate(90deg)}

/* Page transition + smooth in-page anchors */
body{opacity:1;transition:opacity .24s ease,transform .24s ease}
body.page-leaving{opacity:0;transform:translateY(5px)}
section[id]{scroll-margin-top:105px}

/* CareTech carousel: preserve the supplied square artwork instead of cropping it */
.care-carousel{aspect-ratio:1/1;background:#fff;display:block}
.care-carousel img{object-fit:contain;background:#fff;padding:0}
.care-carousel .care-arrow{z-index:4}

@media(max-width:900px){
  .offer-grid{grid-template-columns:1fr}
  .offer-mosaic{height:300px!important}
}
@media(max-width:700px){
  .product-grid{grid-template-columns:1fr}
  .product-card .product-image{flex-basis:210px}
  .offer-mosaic{height:285px!important;padding:17px!important}
  .offer-mosaic-head small{display:none}
  .offer-mosaic-grid{height:215px;gap:7px}
  .offer-tile{border-radius:11px}
  .offer-tile svg{width:31px;height:31px}
  .offer-tile span{font-size:9px}
  .info-popup{padding:10px}
  .info-popup-box{width:calc(100vw - 20px);max-height:90vh;padding:24px 18px;border-radius:14px}
  .info-popup-box h2{font-size:31px}
  .contact-details{grid-template-columns:1fr}
  #contactForm{gap:9px}
}
@media(max-width:900px){
  .offer-banner-link{height:auto;aspect-ratio:1490/1056}
}
@media(max-width:700px){
  .offer-banner-link{width:100%;aspect-ratio:1490/1056;border-radius:10px}
  .offer-banner-image{object-fit:contain;background:#fff}
}

@media(prefers-reduced-motion:reduce){html{scroll-behavior:auto}body,.info-popup,.info-popup-box{transition:none!important}}

/* V14 mobile product grid: two products per row */
@media (max-width: 700px){
  .product-grid{
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
    gap:16px 12px !important;
    align-items:stretch;
  }
  .product-card{
    min-width:0;
    display:flex;
    flex-direction:column;
  }
  .product-card .product-image{
    flex-basis:auto !important;
    height:150px !important;
    min-height:150px !important;
  }
  .product-card .product-image img{
    width:100%;
    height:100%;
    object-fit:contain;
  }
  .product-card h3,.product-card .product-name{
    font-size:16px !important;
    line-height:1.2 !important;
    min-height:38px;
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
  }
  .product-card .product-description{
    font-size:12px !important;
    line-height:1.35 !important;
    min-height:32px;
  }
  .product-card .product-price{font-size:15px !important;}
  .product-card .select-item-btn,.product-card .add-quote-btn{
    width:100%;
    min-height:44px;
    padding:10px 8px !important;
    font-size:13px !important;
    margin-top:auto;
  }
}
@media (max-width:380px){
  .product-grid{gap:12px 9px !important;}
  .product-card .product-image{height:125px !important;min-height:125px !important;}
  .product-card h3,.product-card .product-name{font-size:14px !important;}
  .product-card .product-price{font-size:14px !important;}
}


/* =========================================================
   ROCES SCRIPT DISPLAY HEADINGS — ALLURA
   Applied only to selected section headings and service titles.
   ========================================================= */
.allura-heading,
.service-title-script {
    font-family: 'Allura', cursive !important;
    font-weight: 400 !important;
    letter-spacing: 0 !important;
}

.allura-heading {
    font-size: clamp(42px, 5vw, 64px) !important;
    line-height: 1.05 !important;
}

.service-title-script {
    font-size: clamp(54px, 6vw, 86px) !important;
    line-height: 1 !important;
    margin: 8px 0 18px !important;
}

@media (max-width: 700px) {
    .allura-heading {
        font-size: clamp(38px, 11vw, 52px) !important;
    }

    .service-title-script {
        font-size: clamp(48px, 13vw, 68px) !important;
    }
}
.roces-chat-widget{
  position:fixed;
  right:24px;
  bottom:24px;
  z-index:99990;
  font-family:inherit;
}
.roces-chat-launcher{
  display:inline-flex;
  align-items:center;
  gap:10px;
  min-height:52px;
  padding:0 18px;
  border:0;
  border-radius:28px;
  background:#14233b;
  color:#fff;
  box-shadow:0 10px 28px rgba(20,35,59,.22);
  font:600 14px/1 inherit;
  cursor:pointer;
  transition:transform .2s ease,box-shadow .2s ease,background .2s ease;
}
.roces-chat-launcher:hover{
  transform:translateY(-2px);
  box-shadow:0 13px 32px rgba(20,35,59,.28);
}
.roces-chat-launcher.is-open{
  background:#0f4f8f;
}
.roces-chat-launcher-icon{
  width:23px;
  height:23px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}
.roces-chat-launcher-icon svg{width:100%;height:100%}
.roces-chat-panel{
  position:absolute;
  right:0;
  bottom:66px;
  width:min(360px,calc(100vw - 32px));
  background:#fff;
  border:1px solid #e4e9ef;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 18px 55px rgba(20,35,59,.18);
  opacity:0;
  transform:translateY(10px) scale(.98);
  transition:opacity .18s ease,transform .18s ease;
}
.roces-chat-panel.is-visible{
  opacity:1;
  transform:translateY(0) scale(1);
}
.roces-chat-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:15px;
  padding:18px 18px 16px;
  background:#f5f8fb;
  border-bottom:1px solid #e6ebf0;
}
.roces-chat-header > div{
  display:flex;
  flex-direction:column;
  gap:4px;
}
.roces-chat-eyebrow{
  font-size:10px;
  letter-spacing:1.3px;
  font-weight:700;
  color:#0f4f8f;
}
.roces-chat-header strong{font-size:18px;color:#14233b}
.roces-chat-close{
  width:32px;
  height:32px;
  border:0;
  border-radius:50%;
  background:#fff;
  color:#536273;
  font-size:23px;
  line-height:1;
  cursor:pointer;
}
.roces-chat-body{padding:18px}
.roces-chat-greeting{
  display:flex;
  align-items:center;
  gap:11px;
  margin-bottom:16px;
}
.roces-chat-avatar{
  width:38px;
  height:38px;
  flex:0 0 38px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:#eaf2f9;
  color:#0f4f8f;
  font-weight:700;
}
.roces-chat-greeting strong{display:block;color:#14233b;font-size:14px}
.roces-chat-greeting p{margin:3px 0 0;color:#6b7785;font-size:12px}
.roces-chat-options{display:grid;gap:8px}
.roces-chat-options a{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:11px 12px;
  border:1px solid #e3e8ed;
  border-radius:8px;
  color:#26364a;
  background:#fff;
  text-decoration:none;
  font-size:12px;
  font-weight:600;
  transition:background .18s ease,border-color .18s ease,transform .18s ease;
}
.roces-chat-options a:hover{
  background:#f7fafc;
  border-color:#cfdbe6;
  transform:translateX(2px);
}
.roces-chat-options b{font-size:16px;color:#0f4f8f}
.roces-chat-whatsapp{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  margin-top:13px;
  min-height:44px;
  border-radius:8px;
  background:#0f4f8f;
  color:#fff!important;
  text-decoration:none;
  font-size:13px;
  font-weight:700;
  transition:transform .18s ease,box-shadow .18s ease;
}
.roces-chat-whatsapp:hover{
  transform:translateY(-1px);
  box-shadow:0 7px 18px rgba(15,79,143,.2);
}
.roces-wa-icon{width:18px;height:18px;display:inline-flex}
.roces-wa-icon svg{width:100%;height:100%}
.roces-chat-body > small{
  display:block;
  margin-top:10px;
  text-align:center;
  color:#8a95a1;
  font-size:10px;
}
@media(max-width:700px){
  .roces-chat-widget{right:14px;bottom:14px}
  .roces-chat-launcher{
    width:52px;
    min-height:52px;
    height:52px;
    padding:0;
    justify-content:center;
    border-radius:50%;
  }
  .roces-chat-launcher-text{
    position:absolute;
    width:1px;
    height:1px;
    padding:0;
    margin:-1px;
    overflow:hidden;
    clip:rect(0,0,0,0);
    white-space:nowrap;
    border:0;
  }
  .roces-chat-panel{
    right:-2px;
    bottom:64px;
    width:min(350px,calc(100vw - 28px));
  }
}
@media(prefers-reduced-motion:reduce){
  .roces-chat-launcher,.roces-chat-panel,.roces-chat-options a,.roces-chat-whatsapp{transition:none!important}
}

