﻿/*
Theme Name:  Store More
Theme URI:   https://storemoreselfstorage.co.uk
Author:      Store More Team
Author URI:  https://storemoreselfstorage.co.uk
Description: A custom WordPress theme for Store More Self Storage, built with ACF Pro theme options.
Version:     1.0.0
License:     GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: store-more
Tags:        custom-logo, custom-menu, full-site-editing
*/

/* =========================================================
   1. RESET & BASE
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Inter', 'Open Sans', Arial, sans-serif;
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    background: #fff;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
    font-family: 'Nunito Sans', 'Inter', Arial, sans-serif;
}

/* =========================================================
   2. UTILITY
   ========================================================= */
.container {
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 24px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: opacity .2s ease, background-color .2s ease;
    border: none;
    white-space: nowrap;
}
.btn svg {
    width: 16px;
    height: 16px;
}
.btn:hover { opacity: .88; }

.btn--primary {
    background-color: #E85518;
    color: #fff;
}
.btn--primary:hover { background-color: #d14410; }

/* =========================================================
   3. TOP BAR
   ========================================================= */
.site-topbar {
    background-color: #1C1C1C;
    color: #fff;
    font-size: 14px;
    padding: 10px 0;
}
.site-topbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}
.site-topbar__message { font-weight: 400; margin: 0; }
.site-topbar__message .highlight {
    color: #94C11E;
    font-weight: 600;
}
.site-topbar__phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 15px;
    color: #fff;
    white-space: nowrap;
}
.site-topbar__phone svg { width: 16px; height: 16px; fill: #fff; }
.site-topbar__phone a { color: #fff; }
.site-topbar__phone a:hover { color: #94C11E; }

/* =========================================================
   4. MAIN HEADER / NAVIGATION
   ========================================================= */
.site-header {
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,.08);
    position: sticky;
    top: 0;
    z-index: 999;
}
.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-top: 16px;
    padding-bottom: 16px;
}

/* Logo */
.site-header__logo a { display: flex; align-items: center; }
.site-header__logo img { height: 56px; width: auto; }

/* Primary Nav */
.site-header__nav { display: flex; align-items: center; gap: 4px; }

.primary-menu {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.primary-menu > li { position: relative; }
.primary-menu > li > a {
    display: block;
    padding: 10px 14px;
    font-size: 15px;
    font-weight: 500;
    color: #222;
    border-radius: 4px;
    transition: color .2s, background .2s;
    white-space: nowrap;
}
.primary-menu > li > a:hover,
.primary-menu > li.current-menu-item > a,
.primary-menu > li.current-menu-ancestor > a {
    color: #94C11E;
}

/* Dropdown arrow for parent items */
.primary-menu > li.menu-item-has-children > a::after {
    content: '';
    display: inline-block;
    width: 8px;
    height: 5px;
    margin-left: 5px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23333' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
    transition: transform .2s;
}
.primary-menu > li.menu-item-has-children:hover > a::after {
    transform: rotate(180deg);
}

/* Dropdown submenu */
.primary-menu .sub-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 6px;
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
    padding: 8px 0;
    min-width: 200px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
    z-index: 100;
}
.primary-menu > li:hover > .sub-menu,
.primary-menu > li:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.primary-menu .sub-menu li a {
    display: block;
    padding: 9px 20px;
    font-size: 14px;
    color: #333;
    transition: background .15s, color .15s;
}
.primary-menu .sub-menu li a:hover {
    background: #f5f5f5;
    color: #94C11E;
}

/* Header CTA */
.site-header__cta { flex-shrink: 0; }
.site-header__cta .btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* Cart icon */
.site-header__cart {
    position: relative;
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    color: #1C1C1C;
    text-decoration: none;
    transition: background .15s, color .15s;
    flex-shrink: 0;
}
.site-header__cart.has-items { display: flex; }
.site-header__cart:hover {
    background: #f5f5f5;
    color: #F15A2B;
}
.site-header__cart svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}
.site-header__cart-count {
    position: absolute;
    top: 2px;
    right: 2px;
    min-width: 17px;
    height: 17px;
    padding: 0 4px;
    background: #F15A2B;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    line-height: 17px;
    text-align: center;
    border-radius: 9px;
    pointer-events: none;
}

/* Mobile hamburger  */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    position: relative;
    flex-shrink: 0;
}
.nav-toggle__bar {
    display: block;
    width: 22px;
    height: 2px;
    background: #000;
    border-radius: 2px;
    transition: transform .3s, opacity .3s;
}
.nav-toggle__close {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 32px;
    line-height: 1;
    color: #000;
    font-weight: 400;
}
/* When open: hide bars, show X */
.nav-toggle.is-active .nav-toggle__bar { opacity: 0; }
.nav-toggle.is-active .nav-toggle__close { display: block; }

/* Mobile phone + toggle wrapper – hidden on desktop */
.site-header__mobile-actions {
    display: none;
}

/* Mobile CTA inside drawer – hidden on desktop */
.site-header__mobile-cta {
    display: none;
}

/* =========================================================
   5. FOOTER
   ========================================================= */
.site-footer {
    background-color: #2b2b2b;
    color: #ccc;
}

/* Footer Top – logo + badges */
.site-footer__top {
    padding: 48px 0 32px;
    border-bottom: 0px solid rgba(255,255,255,.1);
}
.site-footer__top .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 32px;
}
.site-footer__logo img { height: 94px; width: auto; }

.site-footer__badges {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.site-footer__badges img {
    max-height: 112px;
    width: auto;
    object-fit: contain;
    opacity: .9;
    transition: opacity .2s;
}
.site-footer__badges img:hover { opacity: 1; }

/* Footer Middle – columns */
.site-footer__widgets {
    padding: 40px 0;
    border-bottom: 0px solid rgba(255,255,255,.1);
}
.site-footer__widgets .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
body .footer-col__title {
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0px;
    padding: 0;
}
.footer-col__title::after {
    display: none;
}
.footer-col__links { list-style: none; margin: 0; padding: 0; }
.footer-col__links li { margin-bottom: 10px; }
.footer-col__links a {
    font-size: 14px;
    color: #aaa;
    transition: color .2s;
}
.footer-col__links a:hover { color: #94C11E; }

footer .site-footer__widgets .container::after,
footer .site-footer__widgets .container::before,
footer .site-footer__top .container::after,
footer .site-footer__top .container::before,
.site-footer__bottom .container::after,
.site-footer__bottom .container::before,
.site-topbar .container::after,
.site-topbar .container::before,
.site-header .container::after,
.site-header .container::before {
    display: none !important;
}

/* Footer Bottom – social + copyright */
.site-footer__bottom {
    padding: 24px 0;
}
.site-footer__bottom .container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    flex-direction: column;
}
.footer-social {
    display: flex;
    align-items: center;
    gap: 68px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: #ccc;
    transition: background .2s, color .2s;
}
.footer-social a:hover { background: #94C11E; color: #fff; }
.footer-social svg { width: 36px; height: 36px; fill: currentColor; }

.footer-copyright {
    color: #888;
    font-weight: 400;
    font-size: 12px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    margin: 0;
}
.footer-copyright a { color: #aaa; }
.footer-copyright a:hover { color: #94C11E; }

/* =========================================================
   6. RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
    .site-footer__widgets .container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    body.home section.section-hero .hero__image-wrap {
        display: none !important;
    }

    body.home .hero__inner .hero__content h1#hero-heading, 
    body.home .hero__inner .hero__content p.hero__description {
        text-align: left;
    }

    body.home .hero__inner .hero__content {
        max-width: 100%;
        text-align: center;
    }

    body.home section.section-locations .section-header.section-header--center,
    body.home section.section-locations .section-header.section-header--center h2#locations-heading {
        text-align: left;
    }

    body.home a.hero__secondary-link {
        color: #fff;
        display: inline-block;
        text-decoration: underline;
    }

    /* Top bar: hide on mobile – phone shown in header instead */
    .site-topbar { display: none; }

    /* Header container: logo left, mobile-actions right */
    .site-header .container {
        padding-top: 12px;
        padding-bottom: 12px;
    }
    .site-header__mobile-actions {
        display: flex;
        align-items: center;
        gap: 14px;
        margin-left: auto;
    }

    /* Phone link in header bar */
    .site-header__mobile-phone {
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: 14px;
        font-weight: 700;
        color: #000000;
        text-decoration: none;
        white-space: nowrap;
    }
    .site-header__mobile-phone svg {
        width: 16px;
        height: 16px;
        fill: #000000;
        flex-shrink: 0;
    }
    .site-header__mobile-phone span { 
        font-weight: 700;
        font-style: Bold;
        font-size: 16px;
        line-height: 100%;
        letter-spacing: 0%;
        color: #222;
    }

    /* Show toggle */
    .nav-toggle { display: flex; }

    /* Full-screen dark drawer */
    .site-header__nav {
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        position: fixed;
        top: 140px;
        left: 0;
        right: 0;
        bottom: 0;
        background: #1C1C1C;
        z-index: 998;
        padding: 80px 32px 40px;
        overflow-y: auto;
    }
    .site-header__nav.nav-open { display: flex; }

    /* Nav items in drawer */
    .primary-menu {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }
    .primary-menu > li > a {
        padding: 18px 0;
        font-size: 18px;
        font-weight: 500;
        color: #fff;
        border-bottom: 1px solid rgba(255,255,255,.1);
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .primary-menu > li > a:hover,
    .primary-menu > li.current-menu-item > a,
    .primary-menu > li.current-menu-ancestor > a { color: #94C11E; }

    /* Chevron for parent items */
    .primary-menu > li.menu-item-has-children > a::after {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23fff' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
        width: 12px;
        height: 8px;
        margin-left: 0;
        flex-shrink: 0;
    }
    .primary-menu > li.menu-item-has-children.sub-open > a::after {
        transform: rotate(180deg);
    }

    /* Sub-menu in drawer */
    .primary-menu .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        border-radius: 0;
        background: transparent;
        padding: 0 0 0 16px;
        display: none;
    }
    .primary-menu > li.menu-item-has-children.sub-open > .sub-menu { display: block; }
    .primary-menu .sub-menu li a {
        color: rgba(255,255,255,.75);
        padding: 12px 0;
        font-size: 15px;
        border-bottom: 1px solid rgba(255,255,255,.06);
    }
    .primary-menu .sub-menu li a:hover { background: transparent; color: #94C11E; }

    /* Desktop CTA hidden on mobile */
    .site-header__cta { display: none; }

    /* Mobile CTA button in drawer */
    .site-header__mobile-cta {
        display: block;
        margin-top: auto;
        padding-top: 32px;
    }
    .btn--mobile-cta {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        width: 100%;
        padding: 16px 24px;
        background: #E85518;
        color: #fff;
        font-size: 16px;
        font-weight: 700;
        border-radius: 50px;
        text-decoration: none;
        transition: background .2s;
    }
    .btn--mobile-cta:hover { background: #c94410; }
    .btn--mobile-cta svg { width: 18px; height: 18px; }

    /* Footer */
    .site-footer__widgets .container { grid-template-columns: repeat(2, 1fr); }
    .site-footer__top .container { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
    .site-footer__widgets .container { grid-template-columns: 1fr; }
    .site-footer__bottom .container { flex-direction: column; align-items: center; text-align: center; }
}

/* =========================================================
   7. REVIEWS SECTION  (white background, above dark footer)
   ========================================================= */
.section-reviews {
    background: #F5F5F5;
    padding: 72px 0 64px;
    border-top: 0px solid #efefef;
}

/* Section heading shared style */
.section-heading {
    text-align: center;
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 700;
    color: #1C1C1C;
    margin-bottom: 40px;
    letter-spacing: -.01em;
}

/* Feefo badge bar */
.reviews-badge-bar {
    background: #fff;
    border: 0px none;
    border-radius: 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px 28px;
    margin-bottom: 0;
}

.reviews-badge-bar__text { 
    font-size: 14px; 
    color: #444; 
    line-height: 1.5;
    width: 100%;
    max-width: 300px;
    text-align: center;
}

.reviews-badge-bar__text strong { color: #1C1C1C; }
.reviews-badge-bar__text .reviews-count { color: #E85518; font-weight: 700; }

.reviews-badge-bar__rating {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #444;
}
.reviews-badge-bar__rating .stars { color: #FFC107; font-size: 20px; letter-spacing: 2px; }
.reviews-badge-bar__rating strong { font-size: 18px; color: #1C1C1C; }

.reviews-badge-bar__logos img {
    max-width: 93px;
}

.reviews-badge-bar__logos {
    flex: 1;
    display: flex;
    max-width: 300px;
    justify-content: space-between;
    border-left: 1px solid #ddd;
    padding-left: 20px;
}

/* Testimonials slider/grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 36px;
    background: white;
    border-top: 1px solid #ddd;
}

.review-card {
    background: #fff;
    /* border: 1px solid #e8e8e8; */
    border-radius: 8px;
    padding: 20px;
    transition: box-shadow .2s, transform .2s;
}
.review-card:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,.08);
    transform: translateY(-2px);
}

.review-card__stars { color: #FFC107; font-size: 18px; letter-spacing: 2px; margin-bottom: 10px; }

.review-card__title {
    font-size: 14px;
    font-weight: 700;
    color: #1C1C1C;
    margin-bottom: 8px;
    line-height: 1.35;
}
.review-card__body {
    font-size: 13px;
    color: #666;
    line-height: 1.55;
}
.review-card__author {
    font-size: 12px;
    font-weight: 700;
    color: #E85518;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.reviews-cta { text-align: center; }

/* =========================================================
   8. BLOG POSTS SECTION  (dark background, sits on footer)
   ========================================================= */

body.blog section.section-blog-posts,
body.blog section.section-reviews,
body.woocommerce section.section-reviews,
body.woocommerce section.section-blog-posts,
body.woocommerce-page section.section-reviews,
body.woocommerce-page section.section-blog-posts {
    display: none;
}

.section-blog-posts {
    background: #2b2b2b;
    padding: 72px 0 64px;
    border-bottom: 0px solid rgba(255,255,255,.08);
}

.section-blog-posts .section-heading {
    color: #fff;
}
.section-blog-posts .section-heading .accent {
    color: #94C11E;
}

.section-blog-posts .container{
    position: relative;
    z-index: 1;
    padding-bottom: 64px;
}

.section-blog-posts .container::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    pointer-events: none;
    height: 1px;
    z-index: 0;
    width: 100%;
}

/* Blog grid */
.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.blog-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    transition: box-shadow .25s, transform .25s;
    display: flex;
    flex-direction: column;
}
.blog-card:hover {
    box-shadow: 0 10px 32px rgba(0,0,0,.25);
    transform: translateY(-4px);
}

.blog-card__image-wrap {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #e0e0e0;
    flex-shrink: 0;
}
.blog-card__image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}
.blog-card:hover .blog-card__image-wrap img { transform: scale(1.05); }

/* Placeholder when no image */
.blog-card__image-placeholder {
    width: 100%;
    height: 100%;
    background: repeating-conic-gradient(#d4d4d4 0% 25%, #c4c4c4 0% 50%) 0 0 / 20px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-card:hover .blog-card__body {
    padding: 20px 20px 24px;
}
.blog-card__body {
    padding: 20px 0px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card__date {
    font-size: 12px;
    color: #999;
    margin-bottom: 10px;
    font-weight: 500;
}

.blog-card__body .blog-card__date {
    display: none;
}

.blog-card__title {
    color: #222;
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 24px;
    line-height: 130%;
    letter-spacing: 0%;
}
.blog-card__title a { color: inherit; transition: color .2s; }
.blog-card__title a:hover { color: #94C11E; }

.blog-card__excerpt {
    color: #222222;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0%;
    overflow: hidden;
}

.blog-posts-cta, .reviews-cta { text-align: center; white-space: nowrap; }

.blog-posts-cta svg,
.reviews-cta svg {
    min-width: 18px;
}

/* =========================================================
   9. IMPROVED FOOTER LAYOUT
   ========================================================= */

/* Top row tweak: make badges wrap into a neat grid on smaller screens */
.site-footer__badges {
    gap: 20px;
}
.site-footer__badges a,
.site-footer__badges > span {
    display: flex;
    align-items: center;
}

/* Widget columns: labels in uppercase, with a subtle separator */
.footer-col__title {
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 18px;
}
.footer-col__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2px;
    background: #94C11E;
    border-radius: 2px;
}

/* Hover underline for footer links */
.footer-col__links a {
    position: relative;
    padding-right: 12px;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
}
.footer-col__links a::before {
    content: '›';
    position: absolute;
    left: 0;
    color: #94C11E;
    opacity: 0;
    transition: opacity .2s, transform .2s;
    transform: translateX(-4px);
}
.footer-col__links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Hamburger active state */
.nav-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.nav-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   10. RESPONSIVE  – new sections
   ========================================================= */
@media (max-width: 1024px) {
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-posts-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .section-reviews,
    .section-blog-posts { padding: 48px 0; }

    .reviews-badge-bar { flex-direction: column; align-items: flex-start; }
    .reviews-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
    .blog-posts-grid { grid-template-columns: 1fr; }

    .site-footer__badges img { height: 48px; }
}

@media (max-width: 480px) {
    .reviews-grid { grid-template-columns: 1fr; }
    .reviews-badge-bar__logos { flex-wrap: wrap; }
}

/* =========================================================
   11. HOMEPAGE – SHARED
   ========================================================= */
.section-header--center { text-align: center; }
.section-header--center .section-subheading {
    max-width: 680px;
    margin: 0 auto 28px;
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}
.section-header--center .section-header__cta { margin-top: 8px; }

/* Shared section styles */
.section-heading { font-size: clamp(22px, 3vw, 32px); font-weight: 700; color: #1C1C1C; margin-bottom: 16px; }

/* =========================================================
   12. HERO SECTION
   ========================================================= */
.section-hero {
    position: relative;
    overflow: hidden;
    min-height: 480px;
    display: flex;
    align-items: center;
}
.section-hero .container { width: 100%; }

.hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 48px;
    padding: 72px 0;
}

/* Copy column */
.hero__content { position: relative; z-index: 1; }

.hero__tagline {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255,255,255,.65);
    margin-bottom: 16px;
}

.hero__heading {
    display: flex;
    flex-direction: column;
    font-size: clamp(32px, 5vw, 60px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -.02em;
    margin-bottom: 20px;
    color: #fff;
}
.hero__heading-line1 { display: block; color:#93c120;}
.hero__heading-line2 { display: block; color: #fff; }

.hero__description {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255,255,255,.75);
    max-width: 480px;
    margin-bottom: 32px;
}

/* Search form */
.hero__search-form { margin-bottom: 20px; }

.hero__search-wrap {
    display: flex;
    gap: 0;
    border-radius: 6px;
    overflow: hidden;
    max-width: 480px;
    box-shadow: 0 4px 20px rgba(0,0,0,.3);
}

.hero__search-input {
    flex: 1;
    padding: 14px 18px;
    font-size: 15px;
    border: none;
    outline: none;
    background: #fff;
    color: #333;
}
.hero__search-input::placeholder { color: #aaa; }

.hero__search-btn {
    border-radius: 0;
    padding: 14px 24px;
    font-size: 15px;
    white-space: nowrap;
    flex-shrink: 0;
}

.hero__secondary-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,.7);
    font-size: 14px;
    font-weight: 500;
    transition: color .2s;
}
.hero__secondary-link:hover { color: #fff; }
.hero__secondary-arrow { font-size: 18px; animation: bounce-down 1.6s ease-in-out infinite; }

@keyframes bounce-down {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(4px); }
}

/* Image column */
.hero__image-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
}
.hero__image {
    width: 100%;
    max-width: 560px;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}
.hero__image-placeholder {
    width: 100%;
    max-width: 560px;
    aspect-ratio: 4/3;
    border-radius: 8px;
    background: repeating-conic-gradient(rgba(255,255,255,.06) 0% 25%, rgba(255,255,255,.02) 0% 50%) 0 0 / 20px 20px;
    border: 1px solid rgba(255,255,255,.08);
}

/* =========================================================
   13. LOCATIONS SECTION
   ========================================================= */
.section-locations {
    padding: 72px 0 64px;
    background: #fff;
}
.section-locations .section-heading { margin-bottom: 12px; }

/* Slider wrapper — overflow visible so side cards peek */
.locations-slider-wrap {
    position: relative;
    margin-top: 40px;
}

.locations-slider {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 60px) / 4); /* 4 visible cols, 3 gaps of 20px */
    gap: 20px;
    /* Single-row horizontal scroll – JS drives scrollTo() */
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
}
.locations-slider::-webkit-scrollbar { display: none; }

.location-card { scroll-snap-align: start; }

.location-card__link {
    display: block;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e8e8e8;
    transition: box-shadow .2s, transform .2s;
    color: #1C1C1C;
}
.location-card__link:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,.12);
    transform: translateY(-3px);
}

.location-card__image-wrap {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #e0e0e0;
    position: relative;
}
.location-card__image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s;
}
.location-card__link:hover .location-card__image-wrap img { transform: scale(1.04); }

.location-card__placeholder {
    width: 100%;
    height: 100%;
    background: repeating-conic-gradient(#d4d4d4 0% 25%, #c8c8c8 0% 50%) 0 0 / 20px 20px;
}

.location-card__tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #E85518;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 3px;
    text-transform: uppercase;
}

.location-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    background: #fff;
}

.location-card__name {
    font-size: 14px;
    font-weight: 600;
    color: #1C1C1C;
}
.location-card__arrow {
    color: #94C11E;
    display: flex;
    align-items: center;
}
.location-card__arrow svg { width: 16px; height: 16px; }

/* Slider navigation buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-60%);
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #444;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,.1);
    transition: background .2s, color .2s;
    z-index: 2;
}
.slider-btn:hover { background: #94C11E; color: #fff; border-color: #94C11E; }
.slider-btn--prev { left: -20px; }
.slider-btn--next { right: -20px; }

/* Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}
.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background .2s, transform .2s;
}
.slider-dot.is-active { background: #94C11E; transform: scale(1.3); }

/* =========================================================
   14. SPACE ESTIMATOR SECTION
   ========================================================= */
.section-estimator {
    padding: 72px 0;
    background: #f9f9f9;
    border-top: 1px solid #efefef;
    border-bottom: 1px solid #efefef;
}

.estimator__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.estimator__image-col { display: flex; align-items: center; justify-content: center; }
.estimator__image {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 8px 32px rgba(0,0,0,.1);
}
.estimator__image-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 10px;
    background: repeating-conic-gradient(#d4d4d4 0% 25%, #c8c8c8 0% 50%) 0 0 / 20px 20px;
    border: 1px solid #e0e0e0;
}

.estimator__heading {
    font-size: clamp(20px, 3vw, 36px);
    font-weight: 700;
    color: #1C1C1C;
    margin-bottom: 18px;
    line-height: 1.2;
}

.estimator__description {
    font-size: 15px;
    color: #555;
    line-height: 1.75;
    margin-bottom: 28px;
}
.estimator__description p { margin-bottom: 14px; }
.estimator__description p:last-child { margin-bottom: 0; }

/* =========================================================
   15. SERVICES SECTION
   ========================================================= */
.section-services {
    padding: 72px 0 64px;
    background: #fff;
}
.section-services .section-heading {
    text-align: center;
    margin-bottom: 40px;
}

/* Image cards row */
.services-image-grid {
    display: grid;
    grid-template-columns: repeat(var(--cols, 3), 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.service-img-card {
    display: block;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e8e8e8;
    transition: box-shadow .2s, transform .2s;
    color: #fff;
}
.service-img-card:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,.12);
    transform: translateY(-3px);
}

.service-img-card__image {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #ccc;
    position: relative;
}
.service-img-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s;
}
.service-img-card:hover .service-img-card__image img { transform: scale(1.04); }

.service-img-card__placeholder {
    width: 100%;
    height: 100%;
    background: repeating-conic-gradient(#d4d4d4 0% 25%, #c8c8c8 0% 50%) 0 0 / 20px 20px;
}

.service-img-card__label {
    background: #1C1C1C;
    color: #fff;
    text-align: center;
    padding: 14px 16px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .02em;
    transition: background .2s;
}
.service-img-card:hover .service-img-card__label { background: #94C11E; }

/* Icon cards row */
.services-icon-grid {
    display: grid;
    grid-template-columns: repeat(var(--cols, 4), 1fr);
    gap: 16px;
    margin-top: 4px;
}

.service-icon-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 28px 16px;
    border-radius: 10px;
    color: #fff;
    text-align: center;
    text-decoration: none;
    transition: filter .2s, transform .2s;
    min-height: 130px;
}
.service-icon-card:hover { filter: brightness(1.08); transform: translateY(-2px); }

.service-icon-card__icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.service-icon-card__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}
.service-icon-card__icon-placeholder {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,.3);
    border-radius: 8px;
}

.service-icon-card__label {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    color: #fff;
}

/* =========================================================
   16. FAQ SECTION
   ========================================================= */
.section-faq {
    padding: 72px 0 64px;
    background: #fff;
}
.section-faq .section-heading { text-align: center; margin-bottom: 40px; }

.faq-accordion {
    max-width: 780px;
    margin: 0 auto 36px;
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    overflow: hidden;
}

.faq-item { border-bottom: 1px solid #e8e8e8; }
.faq-item:last-child { border-bottom: none; }

.faq-item__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 24px;
    background: #fff;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    color: #1C1C1C;
    text-align: left;
    transition: background .15s;
}
.faq-item__question:hover { background: #f9f9f9; }
.faq-item.is-open .faq-item__question { background: #f5fdf0; color: #1C1C1C; }

.faq-item__icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e85518;
    border-radius: 50%;
    color: #fff;
    transition: transform .25s, background .15s;
}
.faq-item__icon svg { width: 14px; height: 14px; stroke: #fff; }
.faq-item.is-open .faq-item__icon { transform: rotate(180deg); background: #94C11E; }

/* Answer panel */
.faq-item__answer {
    overflow: hidden;
    max-height: 0;
    transition: max-height .4s ease;
}
.faq-item__answer:not([hidden]) { max-height: 2000px; }

.faq-item__answer-inner {
    padding: 0 24px 20px;
    font-size: 14px;
    color: #555;
    line-height: 1.75;
}
.faq-item__answer-inner p { margin-bottom: 12px; }
.faq-item__answer-inner p:last-child { margin-bottom: 0; }

/* Removes browser's built-in hidden behaviour in favour of JS max-height animation */
.faq-item__answer[hidden] { display: block !important; }

/* Force any Bootstrap .collapse markup inside answers to always be visible */
.faq-item__answer .collapse,
.faq-item__answer .panel-collapse { display: block !important; }

.faq__cta { text-align: center; }

/* =========================================================
   17. HOMEPAGE RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
    .services-icon-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    .hero__inner        { grid-template-columns: 1fr; padding: 48px 0; gap: 32px; }
    .hero__image-wrap   { justify-content: center; }
    .hero__image,
    .hero__image-placeholder { max-width: 100%; }

    .estimator__inner   { grid-template-columns: 1fr; gap: 36px; }
    .estimator__image-col { order: -1; }

    .services-image-grid { grid-template-columns: repeat(2, 1fr); }
    .locations-slider { grid-auto-columns: calc((100% - 20px) / 2); } /* 2 visible cols, 1 gap of 20px */
}

@media (max-width: 640px) {
    .section-locations,
    .section-estimator,
    .section-services { padding: 48px 0; }

    
    .section-faq { padding: 0px 0 48px; }

    .hero__search-wrap  { border-radius: 6px; }
    .hero__search-input { border-radius: 6px 0 0 6px;  width: calc(100% - 140px) !important;}
    .hero__search-btn   { border-radius: 0 6px 6px 0; text-align: center; justify-content: center; }

    .services-image-grid { grid-template-columns: 1fr; }
    .services-icon-grid  { grid-template-columns: repeat(2, 1fr); }

    .faq-item__question  { padding: 16px 18px; font-size: 14px; }
    .faq-item__answer-inner { padding: 0 18px 16px; }

    /* Locations: show exactly 1 card at a time, full-width, horizontal scroll */
    .locations-slider {
        display: flex;
        gap: 16px;
        grid-template-columns: unset;
    }
    .location-card {
        flex: 0 0 calc(100% - 32px);
        min-width: calc(100% - 32px);
        scroll-snap-align: start;
    }
}

/* =========================================================
   18. SPACE ESTIMATOR PAGE TEMPLATE
   ========================================================= */

/* Body override to remove extra white space */
.page-template-estimator {
    background: #fff;
}

/* ---------------------------------------------------------
   Wizard Header
   --------------------------------------------------------- */
.se-header {
    background: #fff;
    border-bottom: 1px solid #e8e8e8;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
    position: sticky;
    top: 0;
    z-index: 999;
}
.se-header__inner {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-top: 14px;
    padding-bottom: 14px;
}
.se-header__logo { flex-shrink: 0; }
.se-header__logo a { display: flex; align-items: center; }
.se-header__logo-img { height: 52px; width: auto; }
.se-header__logo-text {
    font-size: 18px;
    font-weight: 700;
    color: #1C1C1C;
}

/* Steps */
.se-header__steps {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: center;
    flex-wrap: nowrap;
}
.se-step {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: #999;
    white-space: nowrap;
    padding: 0 6px;
    border-right: 1px solid #e0e0e0;
}
.se-step:last-child { border-right: none; }
.se-step__num { font-weight: 600; }
.se-step__label { font-weight: 400; }
.se-step--active { color: #1C1C1C; font-weight: 600; }
.se-step--active .se-step__num,
.se-step--active .se-step__label { color: #1C1C1C; font-weight: 600; }

/* Phone (mobile only) */
.se-header__phone-mobile {
    display: none;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #1C1C1C;
    margin-left: auto;
    white-space: nowrap;
}
.se-header__phone-mobile svg { width: 14px; height: 14px; fill: #1C1C1C; }
.se-header__phone-mobile a { color: #1C1C1C; }

/* Close button */
.se-header__close {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 18px;
    color: #555;
    text-decoration: none;
    transition: background .15s, color .15s;
    margin-left: auto;
}
.se-header__close:hover {
    background: #f3f3f3;
    color: #1C1C1C;
}

/* ---------------------------------------------------------
   Main
   --------------------------------------------------------- */
.se-main {
    padding: 40px 0 72px;
    min-height: calc(100vh - 200px);
}
.se-main__heading {
    font-size: clamp(22px, 3vw, 34px);
    font-weight: 700;
    color: #1C1C1C;
    margin-bottom: 28px;
    line-height: 1.2;
}

/* ---------------------------------------------------------
   Desktop size tabs
   --------------------------------------------------------- */
.se-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 36px;
    width: fit-content;
    max-width: 100%;
}
.se-tab {
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 500;
    color: #444;
    background: #fff;
    border: none;
    border-right: 1px solid #ddd;
    cursor: pointer;
    transition: background .15s, color .15s;
    white-space: nowrap;
    flex-shrink: 0;
}
.se-tab:last-child { border-right: none; }
.se-tab:hover { background: #f5f5f5; color: #1C1C1C; }
.se-tab--active {
    background: #94C11E;
    color: #fff;
    font-weight: 600;
}
.se-tab--active:hover { background: #6ab841; color: #fff; }

/* ---------------------------------------------------------
   Mobile size arrows (hidden on desktop)
   --------------------------------------------------------- */
.se-size-mobile {
    display: none;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 28px;
    height: 52px;
}
.se-size-mobile__btn {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #94C11E;
    border: none;
    cursor: pointer;
    color: #fff;
    transition: background .15s;
}
.se-size-mobile__btn:hover { background: #6ab841; }
.se-size-mobile__btn svg { width: 22px; height: 22px; }
.se-size-mobile__label {
    flex: 1;
    text-align: center;
    font-size: 17px;
    font-weight: 700;
    color: #1C1C1C;
    padding: 0 12px;
}

/* ---------------------------------------------------------
   Unit detail panel
   --------------------------------------------------------- */
.se-detail {
    width: 100%;
}
.se-detail__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

/* ---------------------------------------------------------
   Image carousel
   --------------------------------------------------------- */
.se-carousel {
    position: relative;
}
.se-carousel__track {
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
    background: #1e1e1e;
    aspect-ratio: 4/3;
}
.se-carousel__unit {
    display: none;
    width: 100%;
    height: 100%;
    position: relative;
}
.se-carousel__unit.is-active { display: block; }

/* View slots (one per image type within a unit) */
.se-carousel__view {
    display: none;
    width: 100%;
    height: 100%;
}
.se-carousel__view.is-active { display: block; }

.se-carousel__slide {
    display: none;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0; left: 0;
    opacity: 0;
    transition: opacity .35s ease;
}
.se-carousel__slide.is-visible {
    display: block;
    opacity: 1;
    position: relative;
}
.se-carousel__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.se-carousel__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1e1e1e;
}
.se-carousel__placeholder svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Prev / Next */
.se-carousel__btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,.55);
    border: none;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    z-index: 10;
    transition: background .15s;
}
.se-carousel__btn:hover { background: rgba(0,0,0,.80); }
.se-carousel__btn svg { width: 20px; height: 20px; }
.se-carousel__btn--prev { left: 12px; }
.se-carousel__btn--next { right: 12px; }

/* ---------------------------------------------------------
   Carousel dot indicators (below image)
   --------------------------------------------------------- */
.se-carousel__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
    min-height: 18px;
}
.se-carousel__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background .2s, transform .2s;
    flex-shrink: 0;
}
.se-carousel__dot.is-active {
    background: #94C11E;
    transform: scale(1.3);
}

/* ---------------------------------------------------------
   View type tab strip (below carousel image)
   --------------------------------------------------------- */
.se-view-tabs {
    display: none !important;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 14px;
}

.se-view-tab {
    flex: 1 1 auto;
    padding: 8px 10px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    color: #555;
    background: #f0f0f0;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    transition: background .15s, color .15s, border-color .15s;
    white-space: nowrap;
}

.se-view-tab:hover {
    background: #e6e6e6;
    color: #1C1C1C;
}

.se-view-tab.is-active {
    background: #1C1C1C;
    color: #fff;
    border-color: #1C1C1C;
}

@media (max-width: 600px) {
    .se-view-tab { font-size: 11px; padding: 7px 8px; }
}

.se-info__panel { display: none; }
.se-info__panel.is-active { display: block; }

.se-info__heading {
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 700;
    color: #1C1C1C;
    margin-bottom: 20px;
    line-height: 1.2;
}

/* Store selector */
.se-store-wrap {
    position: relative;
    margin-bottom: 16px;
}
.se-store-select {
    width: 100%;
    padding: 12px 40px 12px 14px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 15px;
    color: #444;
    background: #fff;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    font-family: inherit;
    transition: border-color .15s;
}
.se-store-select:focus {
    outline: none;
    border-color: #94C11E;
    box-shadow: 0 0 0 3px rgba(125,199,79,.2);
}
.se-store-select__arrow {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
}
.se-store-select__arrow svg { width: 100%; height: 100%; }

/* CTA */
.se-select-btn {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 22px;
    border-radius: 6px;
}
.se-select-btn .btn-arrow { flex-shrink: 0; }

/* Dimensions */
.se-dimensions {
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ececec;
}
.se-dimensions strong { color: #1C1C1C; margin-right: 4px; }
.se-dimensions__val { color: #555; }

/* What fits */
.se-fits__heading {
    font-size: 15px;
    font-weight: 700;
    color: #1C1C1C;
    margin-bottom: 10px;
}
.se-fits__desc {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 14px;
}
.se-fits__list {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}
.se-fits__list li {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 4px;
}
.se-fits__list li:last-child { margin-bottom: 0; }

/* Not sure note */
.se-note {
    margin-top: 20px;
}
.se-note__heading {
    font-weight: 700;
    font-style: Bold;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #333;
    margin-bottom: 6px;
}
.se-note__text {
    font-family: Nunito Sans;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0%;
    color: #333;
}
.se-note__phone { color: #1C1C1C; }
.se-note__phone a { color: #333; font-weight: 700; }
.se-note__phone a:hover { text-decoration: underline; }
.se-note__approx {
    font-size: 12px;
    color: #999;
    margin-top: 6px;
    margin-bottom: 0;
}

/* ---------------------------------------------------------
   Footer override for estimator page
   --------------------------------------------------------- */
.se-footer { margin-top: 0; }

/* ---------------------------------------------------------
   RESPONSIVE – Tablet (≤ 900px)
   --------------------------------------------------------- */
@media (max-width: 900px) {
    /* Show mobile size arrows; hide desktop tabs */
    .se-tabs { display: none; }
    .se-size-mobile { display: flex; }

    /* Stack detail columns */
    .se-detail__inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

/* ---------------------------------------------------------
   RESPONSIVE – Mobile (≤ 640px)
   --------------------------------------------------------- */
@media (max-width: 640px) {
    /* Wizard header adjustments */
    .se-header__phone-mobile { display: flex; }    /* Phone shown */

    /* Two-row header: row 1 = logo/phone/close, row 2 = steps */
    .se-header__inner {
        padding-top: 12px;
        padding-bottom: 0;
        flex-wrap: wrap;
        gap: 0;
        align-items: center;
    }
    .se-header__logo {
        flex: 0 0 auto;
    }
    .se-header__phone-mobile {
        flex: 1;
        justify-content: center;
        margin-left: 0;
    }
    .se-header__close {
        flex: 0 0 auto;
        margin-left: 0;
    }

    /* Steps: full-width second row, 2-column grid */
    .se-header__steps {
        display: grid!important;
        flex-wrap: wrap;
        flex: 0 0 100%;
        width: 100%;
        list-style: none;
        margin: 0;
        padding: 0;
        border-top: 1px solid #e8e8e8;
        margin-top: 10px;
        background: #EDEDED;
        flex-direction: row;
        grid-template-columns: 1fr 1fr;
        gap: 0;
        order: 1;
    }
    .se-step {
        flex: unset;
        border-right: none;
        border-bottom: none;
        padding: 0;
        font-size: 13px;
        box-sizing: border-box;
        padding: 8px;
    }
    .se-step:nth-child(odd) {
        border-right: 1px solid #e8e8e8;
    }
    .se-step:nth-child(1),
    .se-step:nth-child(2) {
        border-bottom: 1px solid #e8e8e8;
        padding: 8px;
        width: auto !important;
        flex: unset;
    }

    /* Main */
    .se-main { padding: 28px 0 48px; }
    .se-main__heading { margin-bottom: 20px; }

    /* Carousel arrows smaller */
    .se-carousel__btn { width: 32px; height: 32px; }
    .se-carousel__btn svg { width: 16px; height: 16px; }
    .se-carousel__btn--prev { left: 8px; }
    .se-carousel__btn--next { right: 8px; }

    /* Info panel */
    .se-info__heading { font-size: 20px; }
    .se-select-btn { font-size: 15px; }
}

/* ---------------------------------------------------------
   RESPONSIVE – Very small (≤ 400px)
   --------------------------------------------------------- */
@media (max-width: 400px) {
    .se-header__logo-img { height: 40px; }
    .se-header__phone-mobile { font-size: 12px; }
    .se-header__close { width: 30px; height: 30px; font-size: 15px; }
}

/* =========================================================
   19. OUR SERVICES PAGE – HERO
   ========================================================= */
.section-services-hero {
    padding: 72px 0 0;
    background: #fff;
}

.services-hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 64px;
}

/* Left image column */
.services-hero__image-col {
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-hero__image {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 8px 32px rgba(0,0,0,.1);
}

.services-hero__image-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 10px;
    background: repeating-conic-gradient(#d4d4d4 0% 25%, #c8c8c8 0% 50%) 0 0 / 20px 20px;
    border: 1px solid #e0e0e0;
}

/* Right content column */
.services-hero__heading {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    color: #1C1C1C;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -.02em;
}

.services-hero__body {
    font-size: 15px;
    color: #555;
    line-height: 1.75;
    margin-bottom: 32px;
}

.services-hero__body p { margin-bottom: 14px; }
.services-hero__body p:last-child { margin-bottom: 0; }

/* CTA buttons row */
.services-hero__actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Secondary (green outline) button */
.btn--secondary {
    background-color: transparent;
    color: #94C11E;
    border: 2px solid #94C11E;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: background-color .2s ease, color .2s ease;
}
.btn--secondary:hover {
    background-color: #94C11E;
    color: #fff;
}
.btn--secondary svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; }

/* =========================================================
   20. OUR SERVICES PAGE – SERVICES GRID
   ========================================================= */
.section-services-grid {
    padding: 72px 0 64px;
    background: #fff;
}

.services-detail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* Individual service card */
.service-detail-card {
    display: flex;
    flex-direction: column;
    /* border: 1px solid #e8e8e8; */
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    transition: box-shadow .2s, transform .2s;
}
.service-detail-card:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,.1);
    transform: translateY(-3px);
}

.service-detail-card:hover .service-detail-card__body {
    padding: 24px;
}

/* Card top image */
.service-detail-card__image {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #e0e0e0;
    flex-shrink: 0;
}
.service-detail-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}
.service-detail-card:hover .service-detail-card__image img { transform: scale(1.04); }

.service-detail-card__placeholder {
    width: 100%;
    height: 100%;
    background: repeating-conic-gradient(#d4d4d4 0% 25%, #c8c8c8 0% 50%) 0 0 / 20px 20px;
}

/* Card body */
.service-detail-card__body {
    padding: 24px 0;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 12px;
    transition: all .2s ease;
}

.service-detail-card__title {
    font-size: 18px;
    font-weight: 700;
    color: #1C1C1C;
    line-height: 1.3;
    margin: 0;
}

.service-detail-card__desc {
    font-size: 14px;
    color: #666;
    line-height: 1.65;
    flex: 1;
    margin: 0;
}

.service-detail-card__cta {
    align-self: flex-start;
    margin-top: 8px;
    padding: 10px 20px;
    font-size: 14px;
}
.service-detail-card__cta svg { width: 16px; height: 16px; }

/* =========================================================
   21. OUR SERVICES PAGE – RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
    .services-hero__inner { gap: 40px; }
    .services-detail-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    .services-hero__inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .services-hero__image-col { order: -1; }
    .services-hero__image,
    .services-hero__image-placeholder { max-width: 100%; }
}

@media (max-width: 640px) {
    .section-services-hero,
    .section-services-grid { padding: 48px 0; }

    .services-hero__heading { font-size: clamp(24px, 6vw, 32px); }
    .services-hero__actions { flex-direction: column; align-items: flex-start; }

    .services-detail-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* =========================================================
   22. SERVICE DETAIL PAGE – HERO
   ========================================================= */
.section-sd-hero {
    padding: 72px 0 0;
    background: #fff;
}

.sd-hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 64px;
}

/* Left image column */
.sd-hero__image-col {
    display: flex;
    align-items: center;
    justify-content: center;
}

.sd-hero__image {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 8px 32px rgba(0,0,0,.1);
}

.sd-hero__image-placeholder {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 10px;
    background: repeating-conic-gradient(#d4d4d4 0% 25%, #c8c8c8 0% 50%) 0 0 / 20px 20px;
    border: 1px solid #e0e0e0;
}

/* Right content column */
.sd-hero__heading {
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 800;
    color: #1C1C1C;
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -.02em;
}

.sd-hero__description {
    font-size: 15px;
    color: #555;
    line-height: 1.75;
    margin-bottom: 28px;
    max-width: 520px;
}

/* CTA buttons row */
.sd-hero__actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* Phone button (green filled) */
.btn--phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    background-color: #94C11E;
    color: #fff;
    border: none;
    transition: background-color .2s ease;
    text-decoration: none;
}
.btn--phone:hover { background-color: #6ab841; color: #fff; }
.btn--phone svg {
    width: 18px;
    height: 18px;
    fill: #fff;
    flex-shrink: 0;
}

/* =========================================================
   23. SERVICE DETAIL PAGE – CONTENT + WHY CHOOSE
   ========================================================= */
.section-sd-content {
    padding: 72px 0 64px;
    background: #fff;
}

.sd-content__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

/* Left: paragraph copy */
.sd-content__heading {
    font-size: clamp(22px, 2.5vw, 30px);
    font-weight: 700;
    color: #1C1C1C;
    margin-bottom: 20px;
    line-height: 1.25;
}

.sd-content__body {
    font-size: 15px;
    color: #444;
    line-height: 1.8;
}

.sd-content__body p { margin-bottom: 16px; }
.sd-content__body p a, .sd-content__body a { text-decoration: underline; color: #E85518; }
.sd-content__body p:last-child { margin-bottom: 0; }
.sd-content__body ul { list-style: disc; padding-left: 20px; margin-bottom: 16px; }
.sd-content__body li { margin-bottom: 6px; }

/* Right: "Why Choose" dark box */
.sd-why-box {
    background: #1C1C1C;
    border-radius: 10px;
    padding: 40px 36px 44px;
    color: #fff;
}

.sd-why-box__heading {
    font-size: clamp(22px, 2.5vw, 30px);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: .03em;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sd-why-box__heading-green {
    display: block;
    color: #94C11E;
}

.sd-why-box__heading-white {
    display: block;
    color: #fff;
}

.sd-why-box__divider {
    height: 2px;
    width: 48px;
    background: rgba(255,255,255,.25);
    margin-bottom: 28px;
    border-radius: 2px;
}

/* Feature bullet list */
.sd-why-features {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sd-why-features__item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.sd-why-features__icon {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sd-why-features__icon svg {
    width: 26px;
    height: 26px;
    display: block;
}

.sd-why-features__text {
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    line-height: 1.4;
}

/* =========================================================
   24. SERVICE DETAIL PAGE – RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
    .sd-hero__inner { gap: 40px; }
    .sd-content__inner { gap: 32px; }
}

@media (max-width: 900px) {
    .sd-hero__inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .sd-hero__image-col { order: -1; }

    .sd-content__inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .fs-search-wrap.input-group input#fs-location-input {
        max-width: calc(100% - 125px);
    }
}

@media (max-width: 640px) {
    .section-sd-hero,
    .section-sd-content { padding: 48px 0; }

    .sd-hero__heading { font-size: clamp(22px, 6vw, 30px); }
    .sd-hero__actions { flex-wrap: wrap; align-items: flex-start; }

    .sd-why-box { padding: 28px 24px 32px; }
    .sd-why-box__heading { font-size: 22px; }
    .sd-hero__inner .sd-hero__content {
        display: flex;
        flex-direction: column;
    }
    .sd-hero__inner .sd-hero__content p.sd-hero__description {
        order: 1;
        padding-top: 25px;
    }

    .section-sd-content {
        padding-top: 0 !important;
    }
}

/* =========================================================
   25. FAQ PAGE – HERO
   ========================================================= */
.section-faqp-hero {
    padding: 72px 0 0;
    background: #fff;
}

.faqp-hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 64px;
}

.faqp-hero__image-col {
    display: flex;
    align-items: center;
    justify-content: center;
}

.faqp-hero__image {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 8px 32px rgba(0,0,0,.1);
}

.faqp-hero__image-placeholder {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 10px;
    background: repeating-conic-gradient(#d4d4d4 0% 25%, #c8c8c8 0% 50%) 0 0 / 20px 20px;
    border: 1px solid #e0e0e0;
}

.faqp-hero__heading {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    color: #1C1C1C;
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -.02em;
}

.faqp-hero__description {
    font-size: 15px;
    color: #555;
    line-height: 1.75;
    margin-bottom: 28px;
    max-width: 520px;
}

.faqp-hero__actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* =========================================================
   26. FAQ PAGE – CATEGORIES
   ========================================================= */
.section-faqp-categories {
    padding: 64px 0 72px;
    background: #fff;
}

.faqp-category {
    max-width: 1162px;
    margin: 0 auto 52px;
}
.faqp-category:last-child {
    margin-bottom: 0;
}

.faqp-category__heading {
    font-size: clamp(26px, 3vw, 34px);
    font-weight: 700;
    color: #1C1C1C;
    margin-bottom: 20px;
}

/* Card-style accordion overrides for FAQ categories page */
.section-faqp-categories .faq-accordion {
    border: none;
    border-radius: 0;
    overflow: visible;
    gap: 10px;
    max-width: 100%;
    margin: 0;
}

.section-faqp-categories .faq-item {
    border-bottom: none;
    background: #f5f5f5;
    border-radius: 6px;
    overflow: hidden;
}

.section-faqp-categories .faq-item:last-child {
    border-bottom: none;
}

.section-faqp-categories .faq-item__question {
    background: #f5f5f5;
    font-weight: 600;
    font-size: 15px;
}

.section-faqp-categories .faq-item__question:hover {
    background: #ebebeb;
}

.section-faqp-categories .faq-item.is-open .faq-item__question {
    background: #f5f5f5;
}

.section-faqp-categories .faq-item__icon {
    background: transparent;
    border-radius: 0;
    color: #1C1C1C;
}

.section-faqp-categories .faq-item__icon svg {
    stroke: #1C1C1C;
    width: 18px;
    height: 18px;
}

.section-faqp-categories .faq-item.is-open .faq-item__icon {
    background: transparent;
    transform: rotate(45deg);
}

/* =========================================================
   27. FAQ PAGE – RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
    .faqp-hero__inner { gap: 40px; }
}

@media (max-width: 900px) {
    .faqp-hero__inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .faqp-hero__image-col { order: -1; }
}

@media (max-width: 640px) {
    .section-faqp-hero { padding: 48px 0; }
    .section-faqp-categories { padding: 40px 0 56px; }

    .faqp-hero__heading { font-size: clamp(22px, 6vw, 28px); }
    .faqp-hero__actions { flex-direction: column; align-items: flex-start; }

    .faqp-category { margin-bottom: 36px; }
}

/* =========================================================
   28. ABOUT US PAGE – HERO
   ========================================================= */
.section-about-hero {
    position: relative;
    overflow: hidden;
    min-height: 460px;
    display: flex;
    align-items: center;
}
.section-about-hero .container { width: 100%; }

.about-hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 48px;
    padding: 72px 0;
}

/* Left copy column */
.about-hero__content { position: relative; z-index: 1; }

.about-hero__heading {
    display: flex;
    flex-direction: column;
    font-size: clamp(30px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -.02em;
    margin-bottom: 20px;
}

.about-hero__heading-accent {
    display: block;
    color: #94C11E; /* brand green */
}

.about-hero__heading-main {
    display: block;
    color: #fff;
}

.about-hero__description {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255,255,255,.75);
    max-width: 480px;
    margin-bottom: 32px;
}

/* Postcode search form */
.about-hero__search-form { margin-bottom: 18px; }

.about-hero__search-wrap {
    display: flex;
    gap: 0;
    border-radius: 6px;
    overflow: hidden;
    max-width: 480px;
    box-shadow: 0 4px 20px rgba(0,0,0,.3);
}

.about-hero__search-input {
    flex: 1;
    padding: 14px 18px;
    font-size: 15px;
    border: none;
    outline: none;
    background: #fff;
    color: #333;
    min-width: 0;
}
.about-hero__search-input::placeholder { color: #aaa; }

.about-hero__search-btn {
    border-radius: 0;
    padding: 14px 20px;
    font-size: 14px;
    white-space: nowrap;
    flex-shrink: 0;
}

.about-hero__secondary-link {
    display: inline-block;
    color: rgba(255,255,255,.65);
    font-size: 14px;
    font-weight: 500;
    transition: color .2s;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.about-hero__secondary-link:hover { color: #fff; }

/* Right image column */
.about-hero__image-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
}

.about-hero__image {
    width: 100%;
    max-width: 540px;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.about-hero__image-placeholder {
    width: 100%;
    max-width: 540px;
    aspect-ratio: 4/3;
    border-radius: 8px;
    background: repeating-conic-gradient(rgba(255,255,255,.06) 0% 25%, rgba(255,255,255,.02) 0% 50%) 0 0 / 20px 20px;
    border: 1px solid rgba(255,255,255,.08);
}

/* =========================================================
   29. ABOUT US PAGE – INTRO CONTENT
   ========================================================= */
.section-about-intro {
    padding: 56px 0 48px;
    background: #fff;
    border-bottom: 1px solid #efefef;
}

.about-intro__content {
    margin: 0 auto;
    color: #000000;
    font-family: Nunito Sans;
    font-weight: 400;
    font-size: 24px;
    line-height: 120%;
    letter-spacing: 0%;
}

.about-intro__content p {
    margin-bottom: 18px;
}

.about-intro__content p:last-child {
    margin-bottom: 0;
}

.about-intro__content a {
    color: #94C11E;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.about-intro__content a:hover { color: #5aab35; }

/* =========================================================
   30. ABOUT US PAGE – TIMELINE
   ========================================================= */
.section-about-timeline {
    padding: 64px 0 80px;
    background: #fff;
}

/* Outer wrapper — vertical green line runs down through badge centres */
.about-timeline {
    position: relative;
    /* max-width: 960px; */
    margin: 0 auto;
    padding-left: 20px;
}

/* The vertical spine line anchored to the left at badge centre (34px from wrapper left) */
.about-timeline::before {
    content: '';
    position: absolute;
    top: 160px;
    bottom: 160px;
    left: 205px;           /* 20px wrapper padding + 34px = badge centre */
    width: 4px;
    background: #94C11E;
    z-index: 0;
}

/* ── Each timeline row ── */
.about-timeline__item {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-bottom: 32px;
    position: relative;
    justify-content: space-around;
}

.about-timeline__item:last-child { margin-bottom: 0; }

/* ── Spine / badge column (fixed 68px wide) ── */
.about-timeline__spine {
    flex: 0 0 160px;
    width: 160px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    align-self: center;
}

.about-timeline__badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 162px;
    height: 162px;
    border-radius: 50%;
    background: #94C11E;
    color: #fff;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    flex-shrink: 0;
    z-index: 2;
}

.about-timeline__badge-month {
    display: block;
    font-weight: 700;
    font-size: 32px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
}

.about-timeline__badge-year {
    display: block;
    font-weight: 700;
    font-size: 32px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
}
/* ── Card: fixed-height box containing image + text ── */
.about-timeline__card {
    flex: 1;
    display: flex;
    flex-direction: row;
    height: 312px;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    max-width: 792px;
    box-shadow: 0px 4px 4px 0px #00000026;
}

/* Image column inside card */
.about-timeline__image-col {
    flex: 0 0 45%;
    width: 45%;
    overflow: hidden;
    display: block;
    position: relative;
}

.about-timeline__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-timeline__image-placeholder {
    width: 100%;
    height: 100%;
    background: repeating-conic-gradient(#d4d4d4 0% 25%, #c8c8c8 0% 50%) 0 0 / 20px 20px;
}

/* Text column inside card */
.about-timeline__content {
    flex: 1;
    padding: 28px 28px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-timeline__heading {
    color: #1C1C1C;
    text-transform: uppercase;
    margin-bottom: 12px;
    font-family: Nunito Sans;
    font-weight: 700;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0%;
}

.about-timeline__body {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
}

.about-timeline__body p {margin-bottom: 10px;font-family: Nunito Sans;font-weight: 400;font-size: 16px;line-height: 120%;letter-spacing: 0%;color: #000000;}
.about-timeline__body p:last-child { margin-bottom: 0; }

/* =========================================================
   31. ABOUT US PAGE – RESPONSIVE
   ========================================================= */
@media (max-width: 900px) {
    /* Hero */
    .about-hero__inner {
        grid-template-columns: 1fr;
        padding: 48px 0;
        gap: 32px;
    }
    .about-hero__image-wrap { justify-content: center; }
    .about-hero__image,
    .about-hero__image-placeholder { max-width: 100%; }

    /* Timeline: shrink badge, keep card layout */
    .about-timeline { padding-left: 10px; }
    .about-timeline::before { left: 38px; }

    .about-timeline__badge {
        width: 56px;
        height: 56px;
    }
    .about-timeline__badge-year { font-size: 13px; }
    .about-timeline__spine { flex: 0 0 56px; width: 56px; }

    .about-timeline__card { height: 312px; }
    .about-timeline__item { gap: 20px; }
}

@media (max-width: 640px) {
    .section-about-hero { min-height: auto; }
    .section-about-intro { padding: 40px 0 36px; }
    .section-about-timeline { padding: 48px 0 56px; }

    /* Stack search form vertically */
    .about-hero__search-wrap { flex-direction: column; border-radius: 6px; }
    .about-hero__search-input { border-radius: 6px 6px 0 0; }
    .about-hero__search-btn { border-radius: 0 0 6px 6px; text-align: center; justify-content: center; }

    .about-intro__content { font-size: 15px; }

    /* Timeline: badge above stacked card */
    .about-timeline { padding-left: 0; }
    .about-timeline::before { display: none; }

    .about-timeline__item { flex-direction: column; align-items: flex-start; gap: 0; }
    .about-timeline__spine {
        flex: 0 0 auto;
        width: auto;
        margin-bottom: 24px;
    }

    .about-timeline__item {
        margin-bottom: 48px;
    }

    .about-timeline__badge { width: 138px; height: 138px; }
    .about-timeline__badge-month { font-size: 24px; }
    .about-timeline__badge-year { font-size: 24px; }

    /* Card stacks image on top, text below */
    .about-timeline__card {
        flex-direction: column;
        height: auto;
        width: 100%;
    }

    .about-timeline__image-col {
        flex: 0 0 auto;
        width: 100%;
        height: 200px;
    }

    .about-timeline__content {
        padding: 20px 20px;
        justify-content: flex-start;
    }
}

/* =========================================================
   32. TESTIMONIALS PAGE – HERO
   ========================================================= */
.section-tp-hero {
    padding: 64px 0 0;
    background: #fff;
}

.tp-hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 56px;
}

/* Left image column */
.tp-hero__image-col {
    display: flex;
    align-items: center;
    justify-content: center;
}

.tp-hero__image {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 8px 32px rgba(0,0,0,.1);
}

.tp-hero__image-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 10px;
    background: repeating-conic-gradient(#d4d4d4 0% 25%, #c8c8c8 0% 50%) 0 0 / 20px 20px;
    border: 1px solid #e0e0e0;
}

/* Right content column */
.tp-hero__heading {
    font-size: clamp(24px, 3.5vw, 38px);
    font-weight: 800;
    color: #1C1C1C;
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -.02em;
}

.tp-hero__description {
    font-size: 15px;
    color: #555;
    line-height: 1.75;
    margin-bottom: 28px;
}

.tp-hero__description p { margin-bottom: 12px; }
.tp-hero__description p:last-child { margin-bottom: 0; }

/* CTA row */
.tp-hero__actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

/* Trust badge strip */
.tp-hero__badges {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 8px;
    border-top: 1px solid #f0f0f0;
}

.tp-hero__badge-link {
    display: inline-flex;
    align-items: center;
}

.tp-hero__badge-img {
    max-height: 160px;
    width: auto;
    object-fit: contain;
    transition: opacity .2s;
}

.tp-hero__badge-img:hover,
.tp-hero__badge-link:hover .tp-hero__badge-img {
    opacity: .8;
}

/* =========================================================
   33. TESTIMONIALS PAGE – FEEFO WIDGET
   ========================================================= */
.section-tp-feefo {
    padding: 56px 0;
    background: #fff;
    border-top: 0px solid #efefef;
    border-bottom: 0px solid #efefef;
}

.tp-feefo__inner {
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 10px;
    padding: 40px 32px;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
}

.tp-feefo__placeholder {
    font-size: 16px;
    color: #999;
    text-align: center;
    margin: 0;
    font-style: italic;
}

/* =========================================================
   34. TESTIMONIALS PAGE – VIDEO TESTIMONIALS
   ========================================================= */
.section-tp-videos {
    padding: 64px 0 80px;
    background: #F5F5F5;
}

/* Section header */
.tp-videos__header {
    margin-bottom: 36px;
}

.tp-videos__heading {
    color: #1C1C1C;
    margin-bottom: 12px;
    font-weight: 700;
    font-size: 40px;
    line-height: 120%;
    letter-spacing: 0%;
}

.tp-videos__description {
    color: #222222;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: 0%;
}

/* 4-column video grid */
.tp-videos__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Individual video card */
.tp-video-card {
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    overflow: hidden;
    background: #1C1C1C;
    cursor: pointer;
    transition: transform .2s, box-shadow .2s;
    outline-offset: 3px;
}

.tp-video-card--playable:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0,0,0,.2);
}

.tp-video-card--playable:focus-visible {
    outline: 3px solid #94C11E;
}

/* Thumbnail wrapper */
.tp-video-card__thumb {
    position: relative;
    aspect-ratio: 9 / 16;
    overflow: hidden;
    background: #2b2b2b;
}

.tp-video-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .35s ease;
}

.tp-video-card--playable:hover .tp-video-card__img {
    transform: scale(1.04);
}

.tp-video-card__placeholder {
    width: 100%;
    height: 100%;
    background: repeating-conic-gradient(#2e2e2e 0% 25%, #242424 0% 50%) 0 0 / 20px 20px;
}

/* Play button overlay */
.tp-video-card__play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .2s;
    display: none;
}

.tp-video-card__play svg {
    width: 52px;
    height: 52px;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,.4));
    transition: transform .2s;
}

.tp-video-card--playable:hover .tp-video-card__play svg {
    transform: scale(1.12);
}

/* Optional caption below thumbnail */
.tp-video-card__caption {
    padding: 10px 12px;
    font-size: 13px;
    color: #ccc;
    background: #1C1C1C;
    margin: 0;
    line-height: 1.4;
}

/* =========================================================
   35. TESTIMONIALS PAGE – VIDEO LIGHTBOX
   ========================================================= */
.tp-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tp-lightbox[hidden] { display: none; }

.tp-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.82);
    cursor: pointer;
}

.tp-lightbox__frame {
    position: relative;
    z-index: 1;
    width: 90vw;
    max-width: 960px;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0,0,0,.6);
}

.tp-lightbox__close {
    position: absolute;
    top: 8px;
    right: 12px;
    z-index: 2;
    background: rgba(0,0,0,.5);
    border: none;
    color: #fff;
    font-size: 28px;
    line-height: 1;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .15s;
}
.tp-lightbox__close:hover { background: rgba(255,255,255,.15); }

.tp-lightbox__video-wrap {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
}

.tp-lightbox__iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* =========================================================
   36. TESTIMONIALS PAGE – RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
    .tp-videos__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    .tp-hero__inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .tp-hero__image-col { order: -1; }
    .tp-hero__image,
    .tp-hero__image-placeholder { max-width: 100%; }
}

@media (max-width: 640px) {
    .section-tp-hero    { padding: 40px 0 0; }
    .section-tp-feefo   { padding: 40px 0; }
    .section-tp-videos  { padding: 48px 0 56px; }

    .tp-hero__actions { flex-direction: column; align-items: flex-start; }

    .tp-hero__badges { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }

    .tp-hero__actions a {width: 100%; text-align: center; justify-content: center;}

    .tp-videos__grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }

    .tp-feefo__inner { padding: 28px 20px; min-height: 180px; }

    .tp-lightbox__frame { width: 96vw; }

    .footer-social { gap: 32px; }

    .footer-social svg { width: 22px; height: 22px; fill: currentColor; }
}

/* =========================================================
   37. BLOG LISTING PAGE – HERO
   ========================================================= */
.section-blp-hero {
    padding: 72px 0 0;
    background: #fff;
}

.blp-hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 64px;
}

.blp-hero__image-col {
    display: flex;
    align-items: center;
    justify-content: center;
}

.blp-hero__image {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 8px 32px rgba(0,0,0,.1);
}

.blp-hero__image-placeholder {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 10px;
    background: repeating-conic-gradient(#d4d4d4 0% 25%, #c8c8c8 0% 50%) 0 0 / 20px 20px;
    border: 1px solid #e0e0e0;
}

.blp-hero__heading {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    color: #1C1C1C;
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -.02em;
}

.blp-hero__description {
    font-size: 15px;
    color: #555;
    line-height: 1.75;
    margin-bottom: 28px;
    max-width: 520px;
}

.blp-hero__actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* =========================================================
   38. BLOG LISTING PAGE – POST GRID
   ========================================================= */
.section-blog-listing {
    padding: 64px 0 72px;
    background: #fff;
}

.blog-listing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 56px;
}

/* =========================================================
   39. BLOG LISTING PAGE – PAGINATION
   ========================================================= */
.blog-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    margin-top: 48px;
}

.blog-pagination__label {
    font-size: 16px;
    font-weight: 400;
    color: #404040;
    white-space: nowrap;
    margin-right: 16px;
}

.blog-pagination__links {
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
}

.blog-pagination__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.blog-pagination__link a,
.blog-pagination__link span.current {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 6px;
    font-size: 15px;
    font-weight: 400;
    line-height: 1;
    text-decoration: none;
    border: none;
    background: none;
    color: #404040;
    transition: color .15s;
}

.blog-pagination__link a:hover {
    color: #000;
    background: none;
    border: none;
}

.blog-pagination__link--active span.current {
    color: #000;
    font-weight: 600;
    background: none;
    border: none;
}

.blog-pagination__link--prev a,
.blog-pagination__link--next a {
    font-size: 20px;
    font-weight: 400;
    color: #404040;
    background: none;
    border: none;
}

.blog-pagination__link--prev a:hover,
.blog-pagination__link--next a:hover {
    color: #000;
    background: none;
}

.blog-listing__no-posts {
    text-align: center;
    color: #404040;
    font-size: 16px;
    padding: 48px 0;
}

/* =========================================================
   40. BLOG LISTING PAGE – RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
    .blp-hero__inner { gap: 40px; }
}

@media (max-width: 900px) {
    .blp-hero__inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .blp-hero__image-col { order: -1; }
    .blp-hero__image,
    .blp-hero__image-placeholder { max-width: 100%; }

    .blog-listing-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

@media (max-width: 640px) {
    .section-blp-hero { padding: 40px 0 0; }
    .section-blog-listing { padding: 40px 0 56px; }

    .blp-hero__heading { font-size: clamp(22px, 6vw, 28px); }
    .blp-hero__actions { flex-direction: column; align-items: flex-start; }
    .blp-hero__actions a { width: 100%; text-align: center; justify-content: center; }

    .blog-listing-grid { grid-template-columns: 1fr; gap: 24px; margin-bottom: 40px; }

    .blog-pagination { gap: 0; }
    .blog-pagination__link a,
    .blog-pagination__link span.current { min-width: 30px; height: 30px; font-size: 13px; }
}

/* =========================================================
   41. SINGLE POST – HERO
   ========================================================= */
.section-post-hero {
    padding: 72px 0 0;
    background: #fff;
}

/* Two-column inner grid – mirrors .blp-hero__inner */
.post-hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 64px;
}

/* Left: image column */
.post-hero__image-col {
    display: flex;
    align-items: center;
    justify-content: center;
}
.post-hero__image {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 8px 32px rgba(0,0,0,.1);
    display: block;
}
.post-hero__image-placeholder {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 10px;
    background: repeating-conic-gradient(#d4d4d4 0% 25%, #c8c8c8 0% 50%) 0 0 / 20px 20px;
    border: 1px solid #e0e0e0;
}

/* Right: content column */
.post-hero__title {
    font-family: 'Nunito Sans', 'Inter', Arial, sans-serif;
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    color: #1C1C1C;
    line-height: 1.15;
    letter-spacing: -.02em;
    margin-bottom: 16px;
}

.post-hero__excerpt {
    font-size: 15px;
    color: #555;
    line-height: 1.75;
    margin-bottom: 28px;
    max-width: 520px;
}

.post-hero__actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* =========================================================
   42. SINGLE POST – BODY (prose content)
   ========================================================= */
.section-post-body {
    padding: 64px 0 72px;
    background: #fff;
}

/* Full-width prose column */
.post-content {
    width: 100%;
    font-size: 16px;
    color: #333;
    line-height: 1.85;
}

/* Headings inside post content */
.post-content h1,
.post-content h2,
.post-content h3,
.post-content h4,
.post-content h5,
.post-content h6 {
    font-family: 'Nunito Sans', 'Inter', Arial, sans-serif;
    font-weight: 700;
    color: #1C1C1C;
    line-height: 1.25;
    letter-spacing: -.01em;
    margin-top: 2em;
    margin-bottom: .6em;
}
.post-content h2 { font-size: clamp(20px, 2.5vw, 26px); }
.post-content h3 { font-size: clamp(17px, 2vw, 22px); }
.post-content h4 { font-size: 18px; }

.post-content p { margin-bottom: 1.5em; }

.post-content a {
    color: #94C11E;
    text-decoration: underline;
    text-decoration-color: rgba(125,199,79,.4);
    transition: color .2s, text-decoration-color .2s;
}
.post-content a:hover {
    color: #5fa832;
    text-decoration-color: #5fa832;
}

.post-content ul,
.post-content ol {
    margin: 0 0 1.5em 1.5em;
    padding: 0;
}
.post-content ul { list-style: disc; }
.post-content ol { list-style: decimal; }
.post-content li { margin-bottom: .5em; }

.post-content blockquote {
    border-left: 4px solid #94C11E;
    margin: 2em 0;
    padding: 16px 24px;
    background: #f9fdf5;
    border-radius: 0 6px 6px 0;
    color: #444;
    font-style: italic;
    font-size: 17px;
}
.post-content blockquote p:last-child { margin-bottom: 0; }

.post-content img {
    border-radius: 8px;
    margin: 1.5em auto;
    display: block;
    max-width: 100%;
    height: auto;
}

.post-content figure { margin: 2em 0; }
.post-content figcaption {
    text-align: center;
    font-size: 13px;
    color: #999;
    margin-top: 8px;
}

.post-content hr {
    border: none;
    border-top: 1px solid #eee;
    margin: 2.5em 0;
}

.post-content pre,
.post-content code {
    font-family: 'Courier New', Courier, monospace;
    font-size: 14px;
    background: #f4f4f4;
    border-radius: 4px;
}
.post-content code { padding: 2px 6px; }
.post-content pre {
    padding: 20px;
    overflow-x: auto;
    margin-bottom: 1.5em;
}

/* Post footer: tags + back link */
.post-footer {
    margin: 48px 0 0;
    padding-top: 32px;
    border-top: 1px solid #eee;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.post-footer__tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 13px;
}
.post-footer__tags-label {
    color: #999;
    font-weight: 600;
}
.post-footer__tag {
    display: inline-block;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 3px 10px;
    font-size: 12px;
    color: #555;
    transition: border-color .2s, color .2s, background .2s;
}
.post-footer__tag:hover {
    border-color: #94C11E;
    color: #94C11E;
    background: #f9fdf5;
}

.post-footer__back {
    font-size: 13px;
    font-weight: 600;
    color: #94C11E;
    white-space: nowrap;
    transition: color .2s;
}
.post-footer__back:hover { color: #5fa832; }

/* =========================================================
   43. SINGLE POST – RELATED POSTS
   ========================================================= */
.section-related-posts {
    padding: 64px 0 80px;
    background: #f8f8f8;
    border-top: 1px solid #eee;
}

.related-posts__heading {
    font-family: 'Nunito Sans', 'Inter', Arial, sans-serif;
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 800;
    color: #1C1C1C;
    letter-spacing: -.02em;
    margin-bottom: 36px;
}

body.single.single-post section.section-related-posts, 
body.single.single-post section.section-reviews, 
body.single.single-post section.section-blog-posts {
    display: none;
}

/* =========================================================
   44. SINGLE POST – RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
    .post-hero__inner { gap: 40px; }
}

@media (max-width: 900px) {
    .post-hero__inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .post-hero__image-col { order: -1; }
    .post-hero__image,
    .post-hero__image-placeholder { max-width: 100%; }
    .post-hero__title { font-size: clamp(22px, 5vw, 34px); }

    .section-related-posts .blog-listing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .section-post-hero { padding: 40px 0 0; }
    .section-post-body { padding: 40px 0 56px; }
    .section-related-posts { padding: 40px 0 56px; }

    .post-hero__title { font-size: clamp(20px, 6vw, 28px); }
    .post-hero__actions { flex-direction: column; align-items: flex-start; }
    .post-hero__actions a { width: 100%; text-align: center; justify-content: center; }

    .post-content { font-size: 15px; }

    .post-footer { flex-direction: column; gap: 14px; }

    .section-related-posts .blog-listing-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   45. SHOP PAGE – HERO
   ========================================================= */
.section-shop-hero {
    padding: 72px 0 0;
    background: #fff;
}

.shop-hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 64px;
}

.shop-hero__image-col {
    display: flex;
    align-items: center;
    justify-content: center;
}
.shop-hero__image {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 8px 32px rgba(0,0,0,.1);
    display: block;
}
.shop-hero__image-placeholder {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 10px;
    background: repeating-conic-gradient(#d4d4d4 0% 25%, #c8c8c8 0% 50%) 0 0 / 20px 20px;
    border: 1px solid #e0e0e0;
}

.shop-hero__heading {
    font-family: 'Nunito Sans', 'Inter', Arial, sans-serif;
    font-size: clamp(24px, 3vw, 40px);
    font-weight: 700;
    color: #222;
    line-height: 1.15;
    letter-spacing: 0px;
    margin-bottom: 16px;
}

.shop-hero__description {
    font-size: 16px;
    color: #222;
    line-height: 1.5;
    margin-bottom: 28px;
    max-width: 520px;
}

.shop-hero__actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* =========================================================
   46. SHOP PAGE – PRODUCTS GRID
   ========================================================= */
.section-shop-products {
    padding: 64px 0 80px;
    background: #fff;
}

.shop-products__heading {
    font-family: 'Nunito Sans', 'Inter', Arial, sans-serif;
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 800;
    color: #1C1C1C;
    letter-spacing: -.02em;
    margin-bottom: 36px;
}

/* 4-column product grid */
.shop-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

/* =========================================================
   47. SHOP PAGE – PRODUCT CARD
   ========================================================= */
.shop-product-card {
    background: #fff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow .2s, transform .2s;
    gap: 10px;
    border-radius: 10px;
    padding-top: 14px;
    padding-right: 12px;
    padding-bottom: 14px;
    padding-left: 12px;
    border: 1px solid #404040;
}
.shop-product-card:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,.1);
    transform: translateY(-2px);
}

/* Image */
.shop-product-card__image-wrap {
    display: block;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f5f5f5;
    flex-shrink: 0;
}
.shop-product-card__image-wrap img,
.shop-product-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .35s ease;
}
.shop-product-card:hover .shop-product-card__image { transform: scale(1.04); }

/* Body */
.shop-product-card__body {
    padding: 14px 14px 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 10px;
}

/* Name + Price row */
.shop-product-card__meta {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
}

.shop-product-card__name {
    color: #404040;
    margin: 0;
    font-family: 'Poppins';
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: left;
}
.shop-product-card__name a {
    color: inherit;
    transition: color .2s;
}
.shop-product-card__name a:hover { color: #94C11E; }

.shop-product-card__price {
    color: #404040;
    white-space: nowrap;
    font-family: 'Poppins';
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: right;
}
.shop-product-card__price del {
    color: #aaa;
    font-weight: 400;
    margin-right: 4px;
}
.shop-product-card__price ins {
    text-decoration: none;
    color: #E85518;
}

/* Add to cart button */
.shop-product-card__add-to-cart,
.shop-product-card .button {
    display: block;
    width: 100%;
    text-align: center;
    padding: 9px 14px;
    background: #EF5E30;
    color: #fff !important;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background .2s;
    margin-top: auto;
    text-decoration: none;
    max-width: 150px;
    padding-top: 13px;
    padding-right: 26px;
    padding-bottom: 13px;
    padding-left: 26px;
    font-family: Nunito Sans;
    font-weight: 800;
    font-style: normal;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
    max-width: max-content;
}
.shop-product-card__add-to-cart:hover,
.shop-product-card .button:hover {
    background: #d14410;
    color: #fff !important;
}

/* WooCommerce pagination override */
.section-shop-products .woocommerce-pagination {
    text-align: center;
    margin-top: 0;
}
.section-shop-products .woocommerce-pagination ul {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    list-style: none;
    margin: 0;
}
.section-shop-products .woocommerce-pagination ul li a,
.section-shop-products .woocommerce-pagination ul li span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    border: none;
    background: none;
    font-size: 15px;
    font-weight: 400;
    color: #888;
    transition: color .15s;
    text-decoration: none;
}
.section-shop-products .woocommerce-pagination ul li a:hover { color: #333; }
.section-shop-products .woocommerce-pagination ul li span.current {
    color: #333;
    font-weight: 600;
}

/* No products message */
.shop-no-products {
    text-align: center;
    color: #777;
    font-size: 16px;
    padding: 48px 0;
}

/* =========================================================
   49. SINGLE PRODUCT PAGE
   ========================================================= */
.section-single-product {
    padding: 72px 0 96px;
    background: #fff;
}

/* Breadcrumb */
.single-product__breadcrumb {
    margin-bottom: 28px;
}
.single-product__breadcrumb .breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 4px;
}
.single-product__breadcrumb .breadcrumb__item {
    display: flex;
    align-items: center;
    font-size: 13px;
    color: #888;
}
.single-product__breadcrumb .breadcrumb__item + .breadcrumb__item::before {
    content: '/';
    margin-right: 4px;
    color: #ccc;
}
.single-product__breadcrumb .breadcrumb__item a {
    color: #F15A2B;
    text-decoration: none;
    transition: color .2s;
}
.single-product__breadcrumb .breadcrumb__item a:hover {
    color: #c94a1e;
    text-decoration: underline;
}
.single-product__breadcrumb .breadcrumb__item:last-child {
    color: #1C1C1C;
    font-weight: 600;
}

/* Two-column layout */
.single-product__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 72px;
}

/* ── Gallery / Image ───────────────────────────── */
.single-product__gallery .woocommerce-product-gallery {
    margin: 0;
}
.single-product__gallery .woocommerce-product-gallery__wrapper {
    border-radius: 10px;
    overflow: hidden;
    background: #f5f5f5;
}
.single-product__gallery .woocommerce-product-gallery__image img,
.single-product__gallery .woocommerce-product-gallery img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    object-fit: cover;
}
/* Remove default WC gallery border/shadow */
.single-product__gallery figure { margin: 0; }

/* ── Summary / Details ─────────────────────────── */
.single-product__title {
    font-family: 'Nunito Sans', 'Inter', Arial, sans-serif;
    font-size: clamp(24px, 2.8vw, 36px);
    font-weight: 800;
    color: #1C1C1C;
    line-height: 1.2;
    letter-spacing: -.02em;
    margin-bottom: 20px;
}

.single-product__short-desc {
    color: #222222;
    margin-bottom: 24px;
    font-weight: 400;
    font-size: 16px;
    line-height: 170%;
    letter-spacing: 0%;
}
.single-product__short-desc p { margin: 0 0 .75em; }
.single-product__short-desc p:last-child { margin-bottom: 0; }

a.woocommerce-product-gallery__trigger {
    display: none;
}

/* Dimensions row */
.single-product__dimensions {
    display: flex;
    align-items: baseline;
    gap: 8px;
    font-size: 14px;
    margin-bottom: 28px;
}
.single-product__dimensions-label {
    font-weight: 700;
    color: #1C1C1C;
}
.single-product__dimensions-value {
    color: #555;
}

/* ── Add to cart form ──────────────────────────── */
.single-product__summary .cart {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    margin: 0;
}

/* Qty row: badge + input + spinner */
.single-product__summary .quantity {
    display: flex;
    align-items: stretch;
    height: 44px;
    gap: 0;
}

/* "Qty" label badge */
.single-product__summary .quantity .qty-label-badge {
    display: flex;
    align-items: center;
    padding: 0 16px;
    background: #f0f0f0;
    border: 1px solid #ddd;
    border-right: none;
    border-radius: 6px 0 0 6px;
    font-size: 14px;
    font-weight: 700;
    color: #1C1C1C;
    white-space: nowrap;
}

/* Hide WC screen-reader label visually */
.single-product__summary .quantity label.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

/* Qty input */
.single-product__summary .quantity .qty {
    width: 60px;
    height: 44px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 0;
    font-size: 15px;
    font-weight: 600;
    color: #1C1C1C;
    background: #fff;
    -moz-appearance: textfield;
    appearance: textfield;
    padding: 0;
}
.single-product__summary .quantity .qty::-webkit-inner-spin-button,
.single-product__summary .quantity .qty::-webkit-outer-spin-button { display: none; }

/* Custom spinner wrapper */
.single-product__summary .quantity .qty-spinner {
    display: flex;
    flex-direction: column;
    height: 44px;
    width: 34px;
}
.single-product__summary .quantity .qty-spinner button {
    flex: 1;
    width: 34px;
    background: #1C1C1C;
    border: none;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-size: 9px;
    line-height: 1;
    transition: background 0.15s;
}
.single-product__summary .quantity .qty-spinner button.qty-up {
    border-radius: 0 6px 0 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}
.single-product__summary .quantity .qty-spinner button.qty-down {
    border-radius: 0 0 6px 0;
}
.single-product__summary .quantity .qty-spinner button:hover {
    background: #333;
}

/* Add to cart button */
.single-product__summary .single_add_to_cart_button,
.single-product__summary button[name="add-to-cart"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 36px;
    background: #94C11E !important;
    color: #fff !important;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background .2s;
    text-decoration: none;
    white-space: nowrap;
    height: 52px;
    min-width: 200px;
    border-radius: 10px;
    opacity: 1;
    gap: 10px;
    padding-top: 13px;
    padding-right: 26px;
    padding-bottom: 13px;
    padding-left: 26px;
}
.single-product__summary .single_add_to_cart_button:hover,
.single-product__summary button[name="add-to-cart"]:hover {
    background: #6ab33f !important;
    color: #fff !important;
}

/* Hide WooCommerce default price from summary (not in design) */
.single-product__summary .price {
    display: none;
}

/* =========================================================
   53. STORE LOCATION PAGE – HERO
   ========================================================= */
.section-store-hero {
    background: #f5f5f5;
    padding: 40px 20px;
}

.store-hero__inner {
    display: flex;
    align-items: stretch;
    max-width: 1100px;
    margin: 0 auto;
}

/* ── Left: Slider Column ── */
.store-hero__slider-col {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    background: #fff;
}

.store-hero-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 4 / 3;
    background: #ccc;
}

.store-hero-slider__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.store-hero-slider__slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.store-hero-slider__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.store-hero-slider__placeholder {
    width: 100%;
    height: 100%;
    background: repeating-conic-gradient(#ccc 0% 25%, #eee 0% 50%) 0 0 / 30px 30px;
    min-height: 260px;
}

/* Slider Controls (below image) */
.store-hero-slider__controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    background: #fff;
    border-top: 1px solid #e8e8e8;
}

.store-slider-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #1C1C1C;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s;
    padding: 0;
}

.store-slider-btn:hover { background: #333; }

.store-slider-btn svg {
    width: 20px;
    height: 20px;
}

.store-slider-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.store-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #bbb;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s;
}

.store-slider-dot.is-active,
.store-slider-dot:hover { background: #1C1C1C; }

/* ── Right: Details Panel ── */
.store-hero__details-panel {
    flex: 1 1 50%;
    background: #1C1C1C;
    color: #fff;
    padding: 36px 32px;
    border-radius: 0 12px 12px 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    justify-content: center;
}

.store-hero__store-name {
    font-size: clamp(28px, 2.8vw, 32px);
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.2;
}

.store-hero__address {
    font-size: 14px;
    color: #ccc;
    text-decoration: underline;
    margin: 0;
    cursor: pointer;
    white-space: pre-line;
}

.store-hero__actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}


/* Hours Block */
.store-hero__hours {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.store-hero__hours-row--access {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.store-hero__hours-label {
    font-weight: 700;
    color: #fff;
    font-size: 14px;
}

.store-hero__hours-value {
    color: #ccc;
    font-size: 14px;
}

.store-hero__hours-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.store-hero__hours-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.store-hero__hours-item {
    font-size: 14px;
    color: #ccc;
}

.store-hero__hours-day {
    margin-right: 4px;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .section-store-hero { padding: 0; }

    .store-hero__inner { flex-direction: column; }

    .store-hero__slider-col { flex: none; }

    .store-hero__details-panel {
        border-radius: 0;
        padding: 24px 20px;
        margin-bottom: 40px;
    }

    body .store-features__list {
        grid-template-columns: 1fr !important;
        justify-content: flex-start;
        align-items: flex-start;
    }
}

/* =========================================================
   54. STORE LOCATION PAGE – FEATURES BAR
   ========================================================= */
.section-store-features {
    background: #93c120;
    padding: 14px 20px;
}

.store-features__list {
    display: grid;
    justify-content: center;
    align-items: center;
    gap: 10px 28px;
    list-style: none;
    margin: 0 auto;
    padding: 0;
    max-width: 1100px;
    grid-template-columns: 1fr 1fr 1fr;
    text-align: center;
}

.store-features__item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.store-features__icon {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.store-features__icon svg {
    width: 20px;
    height: 20px;
}

.store-features__item img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* ── WooCommerce notices on single product page ──────────── */
.section-single-product .woocommerce-notices-wrapper {
    margin-bottom: 24px;
}
.section-single-product .woocommerce-message,
.section-single-product .woocommerce-error,
.section-single-product .woocommerce-info {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    list-style: none;
    margin: 0 0 12px;
    border-left: 4px solid transparent;
}
.section-single-product .woocommerce-message {
    background: #f0fbe6;
    border-color: #94C11E;
    color: #2d5a10;
}
.section-single-product .woocommerce-error {
    background: #fff2f2;
    border-color: #e3342f;
    color: #7b1d1a;
}
.section-single-product .woocommerce-info {
    background: #f0f7ff;
    border-color: #3490dc;
    color: #1b4a72;
}
.section-single-product .woocommerce-message::before,
.section-single-product .woocommerce-error::before,
.section-single-product .woocommerce-info::before {
    content: none;
}
.section-single-product .woocommerce-message a.button,
.section-single-product .woocommerce-error a.button,
.section-single-product .woocommerce-info a.button {
    margin-left: auto;
    padding: 6px 16px;
    background: #94C11E;
    color: #fff;
    border-radius: 4px;
    font-size: 13px;
    text-decoration: none;
    white-space: nowrap;
    transition: background .2s;
}
.section-single-product .woocommerce-message a.button:hover {
    background: #6ab33f;
}

section.section-blog-posts .blog-card__body {
    padding: 20px;
}

/* =========================================================
   48. SHOP PAGE – RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
    .shop-hero__inner { gap: 40px; }
    .shop-products-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
    .shop-hero__inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .shop-hero__image-col { order: -1; }
    .shop-products-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .section-shop-hero { padding: 40px 0 0; }
    .section-shop-products { padding: 40px 0 56px; }
    .shop-hero__heading { font-size: clamp(22px, 6vw, 28px); }
    .shop-hero__actions { flex-direction: column; align-items: flex-start; }
    .shop-hero__actions a { width: 100%; text-align: center; justify-content: center; }
    .shop-products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

/* =========================================================
   50. SINGLE PRODUCT – RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
    .single-product__inner { gap: 48px; }
}

@media (max-width: 768px) {
    .single-product__inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .section-single-product { padding: 48px 0 72px; }
}

@media (max-width: 480px) {
    .single-product__title { font-size: clamp(20px, 6vw, 28px); }
    .single-product__summary .single_add_to_cart_button,
    .single-product__summary button[name="add-to-cart"] { width: 100%; min-width: 0; }
}

/* =========================================================
   51. 404 ERROR PAGE
   ========================================================= */
.section-404 {
    padding: 64px 0 96px;
    background: #fff;
}

.error-404__heading {
    font-family: 'Nunito Sans', 'Inter', Arial, sans-serif;
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 800;
    color: #1C1C1C;
    line-height: 1.2;
    margin: 0 0 20px;
}

.error-404__text {
    font-size: 15px;
    color: #555;
    line-height: 1.75;
    max-width: 780px;
    margin-bottom: 40px;
}
.error-404__text p { margin: 0 0 .75em; }
.error-404__text p:last-child { margin-bottom: 0; }

/* Cards grid */
.error-404__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

/* Individual card */
.error-404__card-link {
    display: block;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e8e8e8;
    transition: box-shadow .2s, transform .2s;
    color: #1C1C1C;
    text-decoration: none;
}
.error-404__card-link:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,.12);
    transform: translateY(-3px);
}

/* Card image */
.error-404__card-image {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #e0e0e0;
}
.error-404__card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}
.error-404__card-link:hover .error-404__card-image img { transform: scale(1.04); }

.error-404__card-placeholder {
    width: 100%;
    height: 100%;
    background: repeating-conic-gradient(#d4d4d4 0% 25%, #c8c8c8 0% 50%) 0 0 / 20px 20px;
}

/* Card footer */
.error-404__card-footer {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 14px 18px;
    background: #fff;
    gap: 15px;
}
.error-404__card-label {
    font-size: 15px;
    font-weight: 700;
    color: #1C1C1C;
}
.error-404__card-arrow {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.error-404__card-arrow svg { width: 18px; height: 18px; }

/* Back to home link */
.error-404__back {
    text-align: center;
    margin-top: 8px;
}
.error-404__back-link {
    font-size: 15px;
    font-weight: 600;
    color: #1C1C1C;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color .2s;
}
.error-404__back-link:hover { color: #94C11E; }

/* =========================================================
   51. 404 PAGE – RESPONSIVE
   ========================================================= */
@media (max-width: 768px) {
    .error-404__cards { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .section-404 { padding: 48px 0 72px; }
}

@media (max-width: 480px) {
    .error-404__cards { grid-template-columns: 1fr; }
    .error-404__heading { font-size: clamp(20px, 6vw, 26px); }
}

/* =========================================================
   52. CART PAGE
   ========================================================= */
.section-cart {
    padding: 60px 0 96px;
    background: #fff;
}

.cart-page__heading {
    color: #222;
    margin: 0 0 16px;
    font-family: Nunito Sans;
    font-weight: 700;
    font-size: 40px;
    line-height: 120%;
    letter-spacing: 0%;
}

.cart-page__text {
    color: #222;
    margin-bottom: 32px;
    max-width: 100%;
    font-weight: 400;
    font-size: 16px;
    line-height: 170%;
    letter-spacing: 0%;
}
.cart-page__text p { margin: 0 0 .75em; }
.cart-page__text p:last-child { margin-bottom: 0; }

.cart-page__empty {
    color: #555;
    font-size: 15px;
    margin-bottom: 24px;
}

/* ── Table wrapper (bordered box) ───────────────────── */
.cart-page__table-wrap {
    border: 1px solid #404040;
    overflow: hidden;
    margin-bottom: 28px;
    width: auto;
    border-radius: 10px;
    opacity: 1;
    padding-top: 14px;
    padding-right: 12px;
    padding-bottom: 14px;
    padding-left: 12px;
}

.cart-page__table {
    width: 100%;
    border-collapse: collapse;
}

/* Header row */
.cart-page__th {
    padding: 16px 20px;
    color: #404040;
    border-bottom: 1px solid #ddd;
    background: #fff;
    white-space: nowrap;
    font-family: Nunito Sans;
    font-weight: 800;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: left;
}
.cart-page__th--price,
.cart-page__th--qty,
.cart-page__th--subtotal { text-align: right; }

/* Body rows */
.cart-page__row + .cart-page__row td {
    border-top: 1px solid #eee;
}

.cart-page__col {
    padding: 16px 20px;
    font-size: 14px;
    color: #1C1C1C;
    vertical-align: middle;
}
.cart-page__col--price,
.cart-page__col--subtotal { text-align: right; font-weight: 600; }
.cart-page__col--qty { text-align: right; }

/* Remove icon */
.cart-page__remove {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    opacity: .65;
    transition: opacity .2s;
    vertical-align: middle;
    text-decoration: none;
}
.cart-page__remove:hover { opacity: 1; }

/* Qty input + spinner group */
.cart-page__col--qty {
    display: table-cell; /* keep as table cell */
}
.cart-page__col--qty > * {
    display: inline-flex;
    vertical-align: middle;
}

.cart-page__qty-group {
    display: inline-flex;
    align-items: stretch;
    height: 40px;
}

.cart-page__qty-input {
    width: 52px;
    height: 40px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
    font-size: 14px;
    font-weight: 600;
    color: #1C1C1C;
    background: #fff;
    -moz-appearance: textfield;
    appearance: textfield;
    padding: 0;
}
.cart-page__qty-input::-webkit-inner-spin-button,
.cart-page__qty-input::-webkit-outer-spin-button { display: none; }

.cart-page__qty-spinner {
    display: flex;
    flex-direction: column;
    height: 40px;
    width: 30px;
}
.cart-page__qty-spinner button {
    flex: 1;
    width: 30px;
    background: #1C1C1C;
    border: none;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-size: 8px;
    line-height: 1;
    transition: background .15s;
}
.cart-page__qty-spinner button.qty-up {
    border-radius: 0 4px 0 0;
    border-bottom: 1px solid rgba(255,255,255,.2);
}
.cart-page__qty-spinner button.qty-down { border-radius: 0 0 4px 0; }
.cart-page__qty-spinner button:hover { background: #333; }

/* Hidden update button (needed by WC) */
.cart-page__update-btn { position: absolute; left: -9999px; }

/* Total row */
.cart-page__total-row {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 40px;
    padding: 18px 24px;
    background: #3C3C3C;
    color: #fff;
}
.cart-page__total-label {
    font-size: 15px;
    font-weight: 600;
}
.cart-page__total-value {
    font-size: 18px;
    font-weight: 800;
    min-width: 80px;
    text-align: right;
}

/* Action buttons */
.cart-page__actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.cart-page__btn-continue {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border: 1.5px solid #1C1C1C;
    border-radius: 6px;
    background: #fff;
    color: #1C1C1C;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, color .2s;
    white-space: nowrap;
}
.cart-page__btn-continue:hover {
    background: #f5f5f5;
}
.cart-page__btn-arrow {
    font-size: 18px;
    line-height: 1;
    margin-top: -1px;
}

.cart-page__btn-checkout {
    display: inline-flex;
    align-items: center;
    padding: 0 32px;
    height: 48px;
    background: #94C11E;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s;
    white-space: nowrap;
    border-radius: 10px;
    opacity: 1;
    gap: 40px;
    padding-top: 13px;
    padding-bottom: 13px;
    padding-left: 26px;
}
.cart-page__btn-checkout:hover { background: #6ab33f; }
.cart-page__btn-checkout svg { width: 18px; height: 18px; }

/* WooCommerce notices on cart page */
.section-cart .woocommerce-notices-wrapper {
    margin-bottom: 20px;
}

/* =========================================================
   52. CART PAGE – RESPONSIVE
   ========================================================= */
@media (max-width: 768px) {
    .section-cart { padding: 40px 0 72px; }
    .cart-page__th--price { display: none; }
    .cart-page__col--price { display: none; }
    .cart-page__table-wrap { border-radius: 8px; }
}

@media (max-width: 560px) {
    .cart-page__th { padding: 12px 14px; font-size: 13px; }
    .cart-page__col { padding: 12px 14px; font-size: 13px; }
    .cart-page__actions { flex-direction: column; align-items: stretch; }
    .cart-page__btn-continue,
    .cart-page__btn-checkout { justify-content: center; width: 100%; }
}

/* =========================================================
   55. ALL LOCATIONS PAGE – GRID
   ========================================================= */
.section-locations-page {
    padding: 48px 0 60px;
}

/* Header block */
.lp-header {
    margin-bottom: 36px;
}

.lp-header__title {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    color: #1C1C1C;
    margin: 0 0 16px;
}

.lp-header__description {
    max-width: 860px;
    color: #444;
    font-size: 15px;
    line-height: 1.7;
}

.lp-header__description p {
    margin: 0 0 10px;
}

.lp-header__description p:last-child {
    margin-bottom: 0;
}

/* ── 3-column card grid ── */
.lp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* ── Individual card ── */
.lp-card {
    background: #fff;
    border: 1px solid #e4e4e4;
    border-radius: 10px;
    overflow: hidden;
    transition: box-shadow 0.2s, transform 0.2s;
}

.lp-card:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.10);
    transform: translateY(-2px);
}

.lp-card__link {
    display: block;
    text-decoration: none;
    color: inherit;
}

/* Image area */
.lp-card__image-wrap {
    width: 100%;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    background: #f0f0f0;
}

.lp-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.lp-card:hover .lp-card__image {
    transform: scale(1.04);
}

.lp-card__placeholder {
    width: 100%;
    height: 100%;
    min-height: 180px;
    background: repeating-conic-gradient(#d8d8d8 0% 25%, #ebebeb 0% 50%) 0 0 / 30px 30px;
}

/* Footer: name + icon */
.lp-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    border-top: 1px solid #e4e4e4;
    gap: 8px;
}

.lp-card__name {
    font-size: 14px;
    font-weight: 600;
    color: #1C1C1C;
}

.lp-card__info-icon {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    color: #93c120;
    transition: color 0.2s;
}

.lp-card:hover .lp-card__info-icon {
    color: #5aaa2c;
}

.lp-card__info-icon svg {
    width: 20px;
    height: 20px;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .lp-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 540px) {
    .section-locations-page { padding: 32px 0 48px; }
    .lp-grid { grid-template-columns: 1fr; }
    .lp-header__title { font-size: 24px; }
}

/* =========================================================
   ALL LOCATIONS PAGE – MIDDLE SECTION
   ========================================================= */
.section-locations-middle {
    padding: 56px 0 56px;
}

.lp-middle {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: 32px;
    align-items: center;
    background: #f7f8f9;
    border: 1px solid #e8e8e8;
    border-radius: 16px;
    padding: 32px;
}

.lp-middle__subtitle {
    margin: 0 0 8px;
    color: #93c120;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 12px;
}

.lp-middle__title {
    margin: 0 0 16px;
    font-size: clamp(24px, 2.2vw, 32px);
    line-height: 1.2;
    color: #1C1C1C;
}

.lp-middle__body p {
    margin: 0 0 12px;
    color: #444;
    line-height: 1.7;
}

.lp-middle__body p:last-child {
    margin-bottom: 0;
}

.lp-middle__cta {
    margin-top: 20px;
}

.lp-middle__media {
    display: flex;
    justify-content: center;
}

.lp-middle__image {
    width: 100%;
    max-width: 420px;
    border-radius: 12px;
    object-fit: cover;
    display: block;
}

@media (max-width: 900px) {
    .lp-middle {
        grid-template-columns: 1fr;
        padding: 24px;
    }

    .lp-middle__media {
        justify-content: flex-start;
    }
}

@media (max-width: 560px) {
    .section-locations-middle {
        padding: 40px 0 40px;
    }

    .lp-middle {
        padding: 20px;
    }
}

/* =========================================================
   CONTACT PAGE
   ========================================================= */
.section-contact {
    padding: 72px 0;
    background: #fff;
}

.section-contact__inner {
    display: grid;
    grid-template-columns: minmax(280px, 1fr) minmax(360px, 1.1fr);
    gap: 48px;
    align-items: start;
}

.section-contact__intro {
    max-width: 620px;
}

.section-contact__heading {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    color: #1C1C1C;
    line-height: 1.05;
    margin: 0 0 20px;
}

.section-contact__intro-copy {
    font-size: 16px;
    color: #444;
    line-height: 1.8;
    margin: 0 0 32px;
}

.section-contact__location {
    display: grid;
    gap: 10px;
}

.section-contact__location-title {
    display: inline-block;
    font-size: 18px;
    font-weight: 700;
    color: #1C1C1C;
    text-decoration: none;
}

.section-contact__location-title:hover {
    text-decoration: underline;
}

.section-contact__address {
    display: grid;
    gap: 4px;
    font-style: normal;
    color: #444;
    line-height: 1.7;
    margin: 0;
}

.section-contact__phone {
    color: #444;    
    font-weight: 600;
    margin-top: 16px;
}

.section-contact__phone a {
    color: #1C1C1C;
    text-decoration: none;
}

.section-contact__phone a:hover {
    color: #d14410;
}

.section-contact__form-inner {
    background: #f9f9f9;
    border: 1px solid #e8e8e8;
    border-radius: 14px;
    padding: 32px;
    min-height: 100%;
}

.section-contact__form-inner .gform_wrapper {
    margin: 0;
}

.section-contact__form-inner .gform_heading {
    margin-bottom: 20px;
}

.section-contact__form-inner .gfield_label {
    display: block;
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #1C1C1C !important;
}

.section-contact__form-inner .gfield_description {
    margin-top: 8px;
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

.section-contact__form-inner .ginput_container input[type="text"],
.section-contact__form-inner .ginput_container input[type="email"],
.section-contact__form-inner .ginput_container input[type="tel"],
.section-contact__form-inner .ginput_container textarea,
.section-contact__form-inner .ginput_container select,
.section-contact__form-inner .ginput_container input[type="url"] {
    width: 100%;
    padding: 14px 16px !important;
    border: 1px solid #d7d7d7 !important;
    border-radius: 10px !important;
    background: #fff !important;
    font-size: 15px !important;
    color: #333 !important;
    transition: border-color .2s ease, box-shadow .2s ease !important;
    box-sizing: border-box ;
}

.section-contact__form-inner .ginput_container textarea {
    min-height: 150px !important;
    resize: vertical;
}

.section-contact__form-inner .ginput_container input:focus,
.section-contact__form-inner .ginput_container textarea:focus,
.section-contact__form-inner .ginput_container select:focus {
    outline: none !important;
    border-color: #94C11E !important;
    box-shadow: 0 0 0 4px rgba(148, 193, 30, 0.12) !important;
}

.section-contact__form-inner .gform_wrapper .gfield_checkbox,
.section-contact__form-inner .gform_wrapper .gfield_radio {
    display: grid;
    gap: 12px;
}

.section-contact__form-inner .gfield_checkbox li,
.section-contact__form-inner .gfield_radio li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.section-contact__form-inner .gfield_checkbox label,
.section-contact__form-inner .gfield_radio label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #444;
    font-size: 15px;
    cursor: pointer;
}

.section-contact__form-inner .gform_footer {
    margin-top: 28px;
}

.section-contact__form-inner .gform_button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 8px;
    border: none;
    background: #E85518;
    color: #ffffff;
    cursor: pointer;
    transition: background-color .2s ease, transform .15s ease, box-shadow .2s ease;
    box-shadow: 0 12px 30px rgba(232, 85, 24, 0.18);
}

.section-contact__form-inner .gform_button:hover,
.section-contact__form-inner .gform_button:focus {
    background: #c0400f;
    transform: translateY(-1px);
}

.section-contact__form-inner .gform_validation_container {
    background: #fff4f1;
    border: 1px solid #f5d2c4;
    color: #8e2f1e;
    padding: 18px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.section-contact__form-inner .gfield_error.gfield {
    padding-left: 16px;
    border-left: 4px solid #E85518;
}

.section-contact__form-inner .gfield_error .gfield_label {
    color: #E85518;
}

.section-contact__form-placeholder {
    color: #666;
    font-size: 15px;
    line-height: 1.75;
}

.section-contact__map-wrap {
    margin-top: 44px;
    overflow: hidden;
    border-radius: 14px;
    border: 1px solid #e8e8e8;
}

.section-contact__map-wrap iframe {
    width: 100%;
    min-height: 420px;
    border: 0;
    display: block;
}

@media (max-width: 900px) {
    .section-contact__inner {
        grid-template-columns: 1fr;
    }

    .section-contact__map-wrap {
        margin-top: 32px;
    }

    .section-contact__form-inner {
        padding: 24px;
    }
}

@media (max-width: 640px) {
    .section-contact { padding: 48px 0; }
    .section-contact__heading { font-size: clamp(28px, 8vw, 36px); }
    .section-contact__inner { gap: 28px; }
    .section-contact__form-inner { padding: 20px; }
}

/* =========================================================
   FIND STORAGE PAGE
   ========================================================= */
.section-find-storage {
    padding: 60px 0 80px;
    background: #fff;
}

/* -- Header ------------------------------------------------ */
.fs-inner {
    max-width: 1165px;
}

.fs-header {
    margin-bottom: 28px;
}

.fs-header__title {
    font-size: clamp(26px, 4vw, 38px);
    font-weight: 800;
    color: #1C1C1C;
    margin: 0 0 8px;
    line-height: 1.2;
}

.fs-header__subtitle {
    font-size: 15px;
    color: #555;
    margin: 0;
}

/* -- Search form ------------------------------------------- */
.fs-search-form {
    margin-bottom: 36px;
}

.fs-search-wrap {
    display: flex;
    align-items: stretch;
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    overflow: hidden;
    max-width: 540px;
}

.fs-search-input {
    flex: 1;
    border: none !important;
    outline: none;
    padding: 13px 16px;
    font-size: 15px;
    color: #1C1C1C;
    background: #fff;
    box-shadow: none !important;
    border-radius: 0 !important;
}

.fs-search-input::placeholder { color: #aaa; }

.fs-search-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 24px;
    border-radius: 0;
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
    border: none;
    cursor: pointer;
}

.fs-search-btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.fs-search-error {
    margin-top: 10px;
    font-size: 13px;
    color: #c0392b;
}

/* -- Results label ----------------------------------------- */
.fs-results__label {
    font-size: 14px;
    font-weight: 700;
    color: #555;
    text-transform: uppercase;
    letter-spacing: .04em;
    margin: 0 0 20px;
}

/* -- Result card grid: 2 columns --------------------------- */
.fs-results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* -- Individual result card -------------------------------- */
.fs-result-card {
    display: flex;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow .2s;
}

.fs-result-card:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,.10);
}

.fs-result-card--closest {
    border-color: #94C11E;
}

.fs-result-card__image-wrap {
    flex: 0 0 42%;
    width: 42%;
    background: #e0e0e0;
    overflow: hidden;
    position: relative;
}

.fs-result-card__image-wrap a {
    display: block;
    height: 100%;
}

.fs-result-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.fs-result-card__placeholder {
    width: 100%;
    height: 100%;
    min-height: 140px;
    background: repeating-conic-gradient(#d4d4d4 0% 25%, #c8c8c8 0% 50%) 0 0 / 20px 20px;
}

.fs-result-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 18px 16px 16px;
    min-width: 0;
}

.fs-result-card__name {
    font-size: 18px;
    font-weight: 700;
    color: #1C1C1C;
    margin: 0 0 4px;
    line-height: 1.3;
}

.fs-result-card__name a {
    color: inherit;
    text-decoration: none;
}

.fs-result-card__name a:hover { color: #E85518; }

.fs-result-card__distance {
    font-size: 13px;
    color: #888;
    margin: 0 0 4px;
}

.fs-result-card__address {
    font-size: 13px;
    color: #666;
    margin: 0 0 14px;
    line-height: 1.5;
}

.fs-result-card__actions {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
}

.fs-result-card__details-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 600;
    color: #E85518;
    text-decoration: none;
    transition: color .15s;
}

.fs-result-card__details-link:hover { color: #c0400f; }

.fs-result-card__price-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 700;
    border-radius: 6px;
    text-decoration: none;
    white-space: nowrap;
    background: #E85518;
    color: #fff !important;
    transition: background .2s;
    width: 100%;
}

.fs-result-card__price-btn:hover { background: #c0400f; }

.fs-result-card__price-btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.btn--accent { background: #E85518; color: #fff; }
.btn--accent:hover { background: #c0400f; }

/* -- Pagination -------------------------------------------- */
.fs-pagination {
    margin-top: 36px;
    display: flex;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
}

.fs-pagination a,
.fs-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    color: #444;
    text-decoration: none;
    transition: background .15s, border-color .15s, color .15s;
}

.fs-pagination a:hover {
    background: #94C11E;
    border-color: #94C11E;
    color: #fff;
}

.fs-pagination .current {
    background: #94C11E;
    border-color: #94C11E;
    color: #fff;
    font-weight: 700;
}

/* -- No results -------------------------------------------- */
.fs-no-results {
    font-size: 15px;
    color: #555;
    margin-top: 24px;
}

/* -- Responsive -------------------------------------------- */
@media (max-width: 768px) {
    .fs-results-grid { grid-template-columns: 1fr; }
    .fs-result-card__image-wrap { flex: 0 0 120px; width: 120px; }
}

@media (max-width: 480px) {
    .fs-result-card { flex-direction: column; }
    .fs-result-card__image-wrap { flex: none; width: 100%; height: 180px; }
    .fs-search-wrap { max-width: 100%; justify-content: space-between; }
}

body.page-template-template-quote #main-content > .container > h1,
body.page-template-template-quote-thank-you #main-content > .container > h1 {
    display: none;
}

body.page-template-template-quote #main-content .quote_form {
    max-width: 100%;
}

body.page-template-template-quote #main-content h2.smq-heading,
.step1_form_quote .titlehead,
.finalstep .titlehead {
    font-family: Nunito Sans;
    font-weight: 700;
    font-size: 40px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #222222;
    margin-bottom: 35px;
}

.finalstep .form-title {
    color: #222222;
    font-family: Nunito Sans;
    font-weight: 700;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0%;
    vertical-align: bottom;
    margin-bottom: 20px;
}

.finalstep p.form-notes a {
    color: #333;
    text-decoration: underline;
}

body.page-template-template-quote #main-content .quote_form .unit_selector {
    margin: 0 0 40px 0 !important;
    padding: 0;
    border: 2px solid #94C11E;
    display: flex;
}

body.page-template-template-quote #main-content .quote_form .unit_selector li {
    width: 100% !important;
    background: white;
    color: #333333;
    position: relative;
}
body.page-template-template-quote #main-content .quote_form .unit_selector li a {
    width: 100% !important;
    background: white;
    font-size: 14px;
    font-weight: 500;
    color: #444;
    line-height: 100%;
    letter-spacing: 0%;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

body.page-template-template-quote #main-content .quote_form .unit_selector li.current {
    background: #94C11E;
    color: #fff;
}
body.page-template-template-quote #main-content .quote_form .unit_selector li.current a{
    background: #94C11E;
    color: #fff;
}
body.page-template-template-quote #main-content .unit.smq-panel.current {
    display: flex !important;
    gap: 40px;
    background: white;
    color: #333;
}
body.page-template-template-quote #main-content .smq-image-nav {
    display: none;
}

body.page-template-template-quote #main-content button.smq-select-btn, 
body.page-template-template-quote #main-content .quote_form .instant-quote-btn,
body.page-template-template-quote #main-content button#checkin {
    background: var(--Orange, #EF5E30) !important;
    width: 273px;
    height: 51px;
    opacity: 1;
    gap: 10px;
    border-radius: 10px;
    padding-top: 13px;
    padding-right: 26px;
    padding-bottom: 13px;
    padding-left: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Nunito Sans !important;
    font-weight: 800 !important;
    font-size: 17px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #FFFFFF;
    border: 0;
    cursor: pointer;
}

body.page-template-template-quote #main-content .quote_form .unit_details .desc {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

body.page-template-template-quote #main-content .quote_form .unit_details .desc h2.smq-unit-name {
    font-family: Nunito Sans;
    font-weight: 700;
    font-size: 40px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #333333;
}

body.page-template-template-quote #main-content .quote_form ul.smq-fits-list {
    list-style: disc;
    font-family: Nunito Sans;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 0%;
    color: #333333;
}

body.page-template-template-quote #main-content .quote_form .unit_details .desc p {
    margin: 0;
}

body.page-template-template-quote #main-content .quote_form .cols .col {
    clear: both;
}
body.page-template-template-quote #main-content .quote_form > h4 {
    font-family: Nunito Sans;
    font-weight: 700;
    font-style: Bold;
    font-size: 40px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #222222;
}

body.page-template-template-quote #main-content .quote_form input,
body.page-template-template-quote #main-content .quote_form select {
    width: 100%;
    height: 44px;
    opacity: 1;
    gap: 10px;
    border-radius: 5px;
    padding-top: 9px;
    padding-right: 21px;
    padding-bottom: 9px;
    padding-left: 21px;
    background: #EDEDED;
    border: 0px none;
    font-family: Nunito Sans;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #333;
}

body.page-template-template-quote #main-content .quote_form .disclaimer {
    margin-left: 0 !important;
    margin-right: 0 !important;
    float: left;
    margin-top: 20px;
    font-family: Nunito Sans;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #333333;
    max-width: 100%;
}

body.page-template-template-quote-thank-you form#view_quote_form.quote_form .card {
    background: #F5F5F5;
    border: 0px none;
    gap: 35px;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
}

body.page-template-template-quote-thank-you form#view_quote_form.quote_form .card span.h5.w-60.mx-auto.px-5.py-1.text-white.shadow-sm {
    width: 100%;
    height: 46px;
    opacity: 1;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    padding-top: 11px;
    padding-bottom: 11px;
    line-height: 41px;
    font-family: Nunito Sans;
    font-weight: 800;
    font-size: 18px;
    letter-spacing: 0%;
    text-align: center;
}

body.page-template-template-quote-thank-you form#view_quote_form.quote_form .card input.quote-btn.instant-booking-btn {
    background: var(--Orange, #EF5E30);
    width: 273px;
    height: 51px;
    opacity: 1;
    gap: 10px;
    border-radius: 10px;
    padding-top: 13px;
    padding-right: 26px;
    padding-bottom: 13px;
    padding-left: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: Nunito Sans;
    font-weight: 800;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #FFFFFF;
    border: 0;
}

body.page-template-template-quote-thank-you form#view_quote_form.quote_form h4.your-price {
    font-family: Nunito Sans;
    font-weight: 700;
    font-size: 40px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #333333;
    text-transform:capitalize;
}

body.page-template-template-quote-thank-you .row.mt-4.mb-5.d-flex.justify-content-center .instant-booking-btn-section p,
body.page-template-template-quote-thank-you .row.mt-4.mb-5.d-flex.justify-content-center .instant-booking-btn-section p b {
    font-family: Nunito Sans;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #333333;
    text-align: left;
}
body.page-template-template-quote-thank-you .row.mt-4.mb-5.d-flex.justify-content-center .col-md-12.col.instant-booking-btn-section.text-center {
    width: 100%;
}
.step1_form_quote .unit_details .unit.current {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 85px;
}

.step1_form_quote .unit_details {
    background: white !important;
}

.step1_form_quote .unit_details .quote-details {
    font-family: Nunito Sans;
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: 0%;
    color: #333333;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step1_form_quote .unit_details .quote-details h3 {
    font-family: Nunito Sans;
    font-weight: 700;
    font-size: 40px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #333333;
}

.step1_form_quote .unit_details .quote-details h5.popfix {
    font-family: Nunito Sans;
    font-weight: 700;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 0%;
}

.step1_form_quote .unit_details .quote-details ul {
    list-style: disc;
    padding-left: 30px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

body.page-template-template-quote.page-template-template-quote-php section.section-reviews,
body.page-template-template-quote.page-template-template-quote-php section.section-blog-posts {
    display: none;
}

body.page-template-template-quote #main-content .quote_form.step2_form_quote {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 708px !important;
}

form.step2_form_quote.quote_form .cols .col {
    width: 100%;
}

form.step2_form_quote.quote_form input#next.instant-quote-btn {
    margin: 0 auto 30px;
}

body.page-template-template-quote #main-content .quote_form.step3_form_quote {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 708px !important;
}

body.page-template-template-quote #main-content .quote_form.step3_form_quote .row.grid-price-block {
    display: flex;
    justify-content: space-between;
    opacity: 1;
}

body.page-template-template-quote #main-content .quote_form.step3_form_quote .row.grid-price-block > div {
    display: flex;
    flex-direction: column;
    gap: 0px;
    max-width: 318px;
    width: 100% !important;
}

body.page-template-template-quote #main-content .quote_form.step3_form_quote .row.grid-price-block > div .card .card-body {
    display: flex;
    opacity: 1;
    gap: 35px;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    flex-direction: column;
    background: #F5F5F5;
    padding: 10px;
}

body.page-template-template-quote #main-content .quote_form.step3_form_quote .row.grid-price-block > div .card .card-body a.btn.btn-primary.greenbtn,
body.page-template-template-quote #main-content .quote_form.step3_form_quote .row.grid-price-block .quote-btn.instant-booking-btn {
    background: var(--Orange, #EF5E30) !important;
    font-family: Nunito Sans;
    font-weight: 800;
    font-size: 18px !important;
    line-height: 100%;
    letter-spacing: 0%;
    color: #fff !important;
    text-align: center !important;
    gap: 10px;
    border-radius: 10px !important;
    padding-top: 16px !important;
    padding-right: 26px !important;
    padding-bottom: 16px !important;
    padding-left: 26px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    height: auto;
    border: 0px none;
}

body.page-template-template-quote #main-content .quote_form.step3_form_quote .row.grid-price-block > div > p, 
body.page-template-template-quote #main-content .quote_form.step3_form_quote .row.grid-price-block > div > .card > span.h5.w-60.mx-auto.px-5.py-1.text-white.shadow-sm {
    opacity: 1;
    padding-top: 11px;
    padding-bottom: 11px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    background: #94C11E;
    font-family: Nunito Sans;
    font-weight: 800;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    color: #fff;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

body.page-template-template-quote #main-content .quote_form.step3_form_quote .row.grid-price-block > div .card .card-body .price2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex-direction: row;
}

body.page-template-template-quote #main-content .quote_form.step3_form_quote .row.grid-price-block > div .card .card-body .price2 > span {
    font-family: Nunito Sans;
    font-weight: 700;
    font-size: 40px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
}

body.page-template-template-quote #main-content .quote_form.step3_form_quote .col.instant-booking-btn-section.text-center {
    width: 100%;
}

.finalstep div#user_details, 
.finalstep .addressDetails, 
.finalstep .storage-require, 
.finalstep #checkin_wrap, 
.finalstep #card_details {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 0 !important;
    margin-bottom: 20px;
}

.finalstep > .row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.border-0 {
    border: 0px none !important;
}

.font-weight-bold {
    font-weight: 700 !important;
}

.finalstep .quote_form .cols .col,
.finalstep > .row .field--limited-width {
    width: 100% !important;
}

.finalstep .quote_form .cols .col input#checkin_terms_condition {
    width: auto !important;
    height: auto !important;
}

.finalstep .d-flex {
    display: flex;
}
.finalstep .align-self-flex-center {
    align-self: center;
}
.finalstep .align-items-center {
    align-items: center;
}
.finalstep .justify-content-between {
    justify-content: space-between !important;
}
body.page-template-template-quote #main-content button#checkin {
    margin: 0;
}
.finalstep .mx-4 {
    margin-right: 0 !important;
    margin-left: 0 !important;
}
.finalstep .mt-5 {
    margin-top: 3rem !important;
}
.finalstep .m-4 {
    margin: 1.5rem 0 !important;
}

.finalstep .my-4 {
    margin: 1.5rem 0 !important;
}
.finalstep p.form-notes {
    margin-bottom: 10px;
}
.site-header__logo img {
    object-fit: contain;
}

body.page-template-template-quote #main-content .quote_form .unit_selector li:after {
    content: '';
    width: 2px;
    background: #94C11E;
    height: 36px;
    position: absolute;
    right: -1px;
    top: 4px;
}

body.page-template-template-quote #main-content .quote_form .unit_selector li:last-child:after {
	display: none;
}

.cols.fieldsgrup {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

body.page-template-template-quote #main-content .quote_form .unit_selector em {
    padding-right: 5px;
}

@media screen and (max-width: 768px) {
    .finalstep > .row {
        display: flex;
        flex-direction: column;
    }

    .step1_form_quote .unit_details .unit.current {
        display: flex !important;
        flex-direction: column;
        gap: 20px;
    }

    body.page-template-template-quote #main-content h2.smq-heading, .step1_form_quote .titlehead, .finalstep .titlehead {
        font-size: 32px;
        line-height: 1.2;
    }

    body.page-template-template-quote #main-content .quote_form .unit_selector {
        display: none !important;
    }

    body.page-template-template-quote #main-content .quote_form.step3_form_quote .row.grid-price-block {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    body.page-template-template-quote #main-content .quote_form.step3_form_quote .row.grid-price-block > div {
        max-width: 100% !important;
    }

    .quote_form.step3_form_quote .row.grid-price-block .card-right {
        margin-left: 0rem !important;
    }

    .finalstep .form-title {
        font-size: 28px;
        line-height: 1.2;
    }

    .shop-product-card__add-to-cart, .shop-product-card .button {
        padding: 10px 16px !important;
        font-size: 14px !important;
    }

    .shop-product-card__meta {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }
    .shop-product-card__name {
        text-align: center !important;
    }
}

.sd-why-features__text b {
    font-size: 18px;
    color: #94C11E;
    text-transform: uppercase;
}

body.page-id-16926,
body.page-id-17542 {
	--paper:      #F1EEE6;
	--surface:    #FFFFFF;
	--ink:         #222222;
	--ink-soft:    #5A4F45;   /* Warm dark brown-gray */
	--ink-faint:   #8D7C6A;   /* Warm muted beige-gray */
	--steel:       #94C11E;
	--steel-dark:  #5F8214;   /* Darker shade of the green */
	--brass:       #E85518;
	--brass-soft:  #F2A57C;   /* Soft pastel orange */
	--line:       #DCD5C6;
	--line-soft:  #E9E4D9;
	--focus:      #1B6FA8;

	--font-display: 'Inter', 'Open Sans', Arial, sans-serif;
	--font-mono: 'Inter', 'Open Sans', Arial, sans-serif;

	--radius: 3px;
}

body.page-id-16926 section.group,
body.page-id-17542 section.group {
    margin-bottom: 46px;
    scroll-margin-top: 20px;
}
body.page-id-16926 .group__head,
body.page-id-17542 .group__head {
    display: flex;
    align-items: baseline;
    gap: 14px;
    border-bottom: 2px solid var(--steel);
    padding-bottom: 10px;
    margin-bottom: 18px;
}
body.page-id-16926 .group__index,
body.page-id-17542 .group__index {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 13px;
    color: var(--brass);
    letter-spacing: 0.04em;
}
body.page-id-16926 h2.group__title,
body.page-id-17542 h2.group__title {
    font-family: var(--font-display);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    font-size: 19px;
    color: var(--steel-dark);
    margin: 0;
}
body.page-id-16926 .clause,
body.page-id-17542 .clause {
    display: flex;
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 14px;
    padding: 14px 0;
}

body.page-id-16926 .clause__num,
body.page-id-17542 .clause__num {
    font-family: var(--font-mono);
    font-size: 12.5px;
    font-weight: 700;
    color: var(--steel);
    background: var(--line-soft);
    border: 1px solid var(--line);
    border-radius: 6px;
    min-width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}
body.page-id-16926 .clause__body p:last-child,
body.page-id-17542 .clause__body p:last-child {
    margin-bottom: 0;
}
body.page-id-16926 .clause__body p,
body.page-id-17542 .clause__body p {
    margin: 0 0 10px;
}
body.page-id-17542 .subclause {
    margin: 12px 0 4px 0;
    padding-left: 16px;
    border-left: 2px solid var(--line);
}
body.page-id-17542 .subclause__head {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 4px;
}
body.page-id-17542 .subclause p {
    margin: 0 0 8px;
}
body.page-id-17542 .subclause p:last-child {
    margin-bottom: 0;
}
body.page-id-17542 .clause__body ol.sub {
    margin: 8px 0 12px 0;
    padding-left: 22px;
}