/*
 * Sunsgoods Theme - Main Stylesheet
 * Extracted from the original inline <style> block of sunsgoods_index.html.
 * Do not edit style.css (theme header only); edit this file instead.
 */

    /* Snimay Style Fonts - Locally hosted */
    @font-face {
        font-family: 'oxygen-light';
        src: url('../fonts/oxygen-light.ttf') format('truetype');
        font-style: normal;
        font-weight: normal;
        font-display: swap;
    }
    @font-face {
        font-family: 'oxygen-regular';
        src: url('../fonts/oxygen-regular.ttf') format('truetype');
        font-style: normal;
        font-weight: normal;
        font-display: swap;
    }
    @font-face {
        font-family: 'oxygen-bold';
        src: url('../fonts/oxygen-bold.ttf') format('truetype');
        font-style: normal;
        font-weight: normal;
        font-display: swap;
    }
    @font-face {
        font-family: 'Roboto-Regular';
        src: url('../fonts/Roboto-Regular.ttf') format('truetype');
        font-style: normal;
        font-weight: normal;
        font-display: swap;
    }

    /* Basic Resets */
    body {
        margin: 0;
        font-family: 'oxygen-regular', 'Roboto-Regular', Arial, sans-serif;
    }

    /* Spacer rendered by header.php right after the fixed topbar + header.
       Reserves the same total height (44 + 80 = 124px) so page content
       always starts below the header, regardless of any per-page CSS.
       Using a real DOM element instead of `body { padding-top }` avoids
       conflicts with templates that reset body padding. */
    .site-header-spacer {
        height: 124px;
        flex-shrink: 0;
    }
    * {
        box-sizing: border-box;
    }

    /* Top Bar */
    .site-topbar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background-color: #555;
        color: #e0e0e0;
        font-size: 13px;
        z-index: 1001;
        font-family: 'oxygen-regular', Arial, sans-serif;
    }
    .topbar-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 40px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 44px;
    }
    .topbar-left, .topbar-right {
        display: flex;
        align-items: center;
        gap: 30px;
    }
    .topbar-link {
        color: #e0e0e0;
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 6px;
        transition: color 0.3s;
    }
    .topbar-link:hover, .topbar-dropdown:hover .topbar-dropdown-toggle {
        color: #fff;
    }
    .topbar-icon {
        width: 14px;
        height: 14px;
        fill: currentColor;
    }
    .topbar-search {
        display: flex;
        align-items: center;
        background: #666;
        border-radius: 20px;
        padding: 2px 15px;
        height: 30px;
        transition: background 0.3s;
    }
    .topbar-search:focus-within {
        background: #777;
    }
    .topbar-search input {
        background: transparent;
        border: none;
        color: #fff;
        font-size: 13px;
        outline: none;
        width: 220px;
    }
    .topbar-search input::placeholder {
        color: #ccc;
    }
    .topbar-search button {
        background: transparent;
        border: none;
        color: #fff;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
    }
    .topbar-dropdown {
        position: relative;
        cursor: pointer;
        display: flex;
        align-items: center;
        height: 44px;
    }
    .topbar-dropdown-toggle {
        display: flex;
        align-items: center;
        gap: 6px;
        color: #e0e0e0;
        transition: color 0.3s;
    }
    .topbar-arrow {
        width: 10px;
        height: 10px;
        fill: currentColor;
    }
    .topbar-dropdown-menu {
        position: absolute;
        top: 44px;
        right: 0;
        background: #fff;
        border: 1px solid #eee;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        list-style: none;
        padding: 10px 0;
        margin: 0;
        min-width: 120px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.3s ease;
        z-index: 100;
    }
    .topbar-dropdown:hover .topbar-dropdown-menu,
    .topbar-dropdown.is-open .topbar-dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    .topbar-dropdown-menu li a {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 8px 20px;
        color: #333;
        text-decoration: none;
        transition: background 0.2s;
        text-transform: uppercase;
        font-size: 13px;
    }
    .topbar-dropdown-menu li a:hover {
        background: #f5f5f5;
        color: #007c3a;
    }
    .topbar-dropdown-menu img {
        width: 20px;
        height: 14px;
        object-fit: cover;
        border-radius: 2px;
    }
    /* Language switcher: flag on toggle + current-language highlight */
    .topbar-lang-switcher .topbar-flag {
        width: 20px;
        height: 14px;
        object-fit: cover;
        border-radius: 2px;
        margin-right: 4px;
        vertical-align: middle;
    }
    .topbar-lang-switcher .topbar-dropdown-menu li a.is-current {
        background: #f5f5f5;
        color: #007c3a;
    }

    /* Site Header */
    .site-header {
        position: fixed;
        top: 44px;
        left: 0;
        width: 100%;
        background-color: #fff;
        box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        z-index: 1000;
        display: flex;
        justify-content: center;
    }
    .header-container {
        max-width: 1400px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 20px;
        height: 80px;
    }

    /* Logo */
    .logo img {
        height: 50px;
        width: auto;
        display: block;
        object-fit: contain;
    }

    /* Navigation */
    .main-menu {
        display: flex;
        align-items: center;
        gap: 30px;
        list-style: none;
        margin: 0;
        padding: 0;
    }
    .menu-item {
        position: relative;
    }
    .menu-item > a {
        font-size: 15px;
        font-weight: 600;
        color: #000;
        text-decoration: none;
        padding: 30px 0; /* Makes hover area taller */
        display: flex;
        align-items: center;
        gap: 6px;
        transition: color 0.2s;
    }
    .menu-item > a:hover,
    .menu-item.current-menu-item > a,
    .menu-item.current-menu-parent > a,
    .menu-item.current-menu-ancestor > a,
    .menu-item.current_page_item > a,
    .menu-item.current_page_parent > a,
    .menu-item.current_page_ancestor > a {
        color: #007c3a;
    }
    .menu-item > a svg {
        width: 10px;
        height: 10px;
        fill: currentColor;
        transition: transform 0.2s;
    }
    .menu-item:hover > a svg {
        transform: rotate(180deg);
    }

    /* Dropdowns */
    .dropdown-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        background: #fff;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        min-width: 220px;
        padding: 10px 0;
        border-radius: 4px;
        list-style: none;
        margin: 0;
        z-index: 1010;
    }
    .menu-item:hover > .dropdown-menu {
        display: block;
    }
    .dropdown-menu li a {
        display: block;
        padding: 12px 20px;
        font-size: 14px;
        color: #333;
        text-decoration: none;
        transition: all 0.2s;
    }
    .dropdown-menu li a:hover,
    .dropdown-menu li.current-menu-item > a,
    .dropdown-menu li.current-menu-parent > a,
    .dropdown-menu li.current-menu-ancestor > a,
    .dropdown-menu li.current_page_item > a,
    .dropdown-menu li.current_page_parent > a,
    .dropdown-menu li.current_page_ancestor > a {
        background-color: #f5f5f5;
        color: #007c3a;
    }

    /* Third-level flyout */
    .dropdown-menu .menu-item {
        position: relative;
    }
    .dropdown-menu .dropdown-menu {
        display: none;
        top: 0;
        left: 100%;
        margin-top: -10px;
        box-shadow: 4px 4px 12px rgba(0,0,0,0.08);
    }
    .dropdown-menu .menu-item-has-children:hover > .dropdown-menu {
        display: block;
    }
    .dropdown-menu .menu-item-has-children > a {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .dropdown-menu .menu-item-has-children > a::after {
        content: '›';
        margin-left: 8px;
        font-size: 18px;
        line-height: 1;
    }

    /* Actions */
    .header-actions {
        display: flex;
        align-items: center;
        gap: 20px;
    }
    .search-toggle {
        cursor: pointer;
        padding: 5px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .search-toggle svg {
        width: 20px;
        height: 20px;
        fill: #333;
        transition: fill 0.2s;
    }
    .search-toggle:hover svg {
        fill: #007c3a;
    }
    .quote-btn {
        background-color: #007c3a;
        color: #fff;
        padding: 10px 24px;
        border-radius: 4px;
        font-size: 14px;
        font-weight: 600;
        text-decoration: none;
        transition: background 0.3s;
    }
    .quote-btn:hover {
        background-color: #00632e;
    }

    /* Fullscreen Search Overlay */
    .search-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.85);
        z-index: 2000;
        align-items: center;
        justify-content: center;
    }
    .search-overlay.active {
        display: flex;
    }
    .search-overlay form {
        width: 80%;
        max-width: 600px;
        position: relative;
    }
    .search-overlay input {
        width: 100%;
        background: transparent;
        border: none;
        border-bottom: 2px solid #fff;
        color: #fff;
        font-size: 32px;
        padding: 10px 0;
        outline: none;
    }
    .search-overlay input::placeholder {
        color: rgba(255,255,255,0.5);
    }
    .search-close {
        position: absolute;
        top: 40px;
        right: 40px;
        cursor: pointer;
        font-size: 50px;
        color: #fff;
        line-height: 1;
        font-weight: 300;
    }

    /* Floating Widget */
    .floating-widget {
        position: fixed;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        z-index: 9999;
        display: flex;
        flex-direction: column;
        gap: 8px;
        align-items: flex-end;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .floating-widget.is-hidden {
        transform: translateY(-50%) translateX(100%);
    }
    .float-btn {
        display: flex;
        align-items: center;
        height: 46px;
        max-width: 46px;
        border-radius: 23px 0 0 23px;
        color: #fff !important;
        text-decoration: none;
        font-size: 14px;
        font-family: 'oxygen-regular', Arial, sans-serif;
        overflow: hidden;
        transition: max-width 0.4s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.3s;
        white-space: nowrap;
        box-shadow: -2px 2px 10px rgba(0,0,0,0.15);
    }
    .float-btn:hover {
        max-width: 400px;
    }
    .float-icon {
        width: 46px;
        height: 46px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }
    .float-icon svg {
        width: 20px; /* Reduced icon size */
        height: 20px;
        fill: #fff;
    }
    .float-text-wrapper {
        display: grid;
        padding-right: 20px;
    }
    .float-text-wrapper > span {
        grid-area: 1 / 1;
        font-weight: 600;
        transition: opacity 0.3s ease;
    }
    .floatwindow_more_box {
        opacity: 0;
    }
    .float-btn:hover .floatwindow_tit_box {
        opacity: 0;
    }
    .float-btn:hover .floatwindow_more_box {
        opacity: 1;
    }

    .float-online { background-color: #a07cf0; }
    .float-contact { background-color: #3a96e8; }
    .float-email { background-color: #6cba36; }
    .float-whatsapp { background-color: #fab900; }

    .float-online:hover { background-color: #8c67da; }
    .float-contact:hover { background-color: #3182ca; }
    .float-email:hover { background-color: #5ea02d; }
    .float-whatsapp:hover { background-color: #e5a900; }

    .float-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background: rgba(0,0,0,0.35);
        color: #fff;
        cursor: pointer;
        border: none;
        font-size: 14px;
        line-height: 1;
        transition: transform 0.3s, opacity 0.3s;
        align-self: flex-end;
        margin-top: 4px;
        box-shadow: -1px 1px 6px rgba(0,0,0,0.15);
    }
    .float-toggle:hover {
        background: rgba(0,0,0,0.55);
    }
    .float-toggle.is-collapsed {
        position: fixed;
        right: 8px;
        top: 50%;
        transform: translateY(-50%) rotate(180deg);
        width: 26px;
        height: 26px;
        font-size: 12px;
    }

    @media (max-width: 768px) {
        .floating-widget {
            transform: scale(0.8) translateY(-50%);
            transform-origin: right center;
        }
        .floating-widget.is-hidden {
            transform: scale(0.8) translateY(-50%) translateX(100%);
        }
    }

    /* Quote Modal Styles */
    .quote-modal-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0,0,0,0.6);
        z-index: 3000;
        align-items: center;
        justify-content: center;
    }
    .quote-modal-overlay.active {
        display: flex;
    }
    .quote-modal-content {
        background: #fff;
        width: 90%;
        max-width: 850px;
        max-height: 90vh;
        position: relative;
        display: flex;
        flex-direction: row;
        box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    }
    .quote-modal-close {
        position: absolute;
        top: 15px;
        right: 20px;
        cursor: pointer;
        font-size: 28px;
        color: #333;
        z-index: 10;
        font-weight: bold;
        line-height: 1;
    }
    .quote-modal-left {
        flex: 1;
        background-color: #333;
        background-image: url('../images/24-hour-customer-service.webp');
        background-size: cover;
        background-position: center;
        position: relative;
        padding: 40px 30px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        color: #fff;
    }
    .quote-modal-left::before {
        content: '';
        position: absolute;
        top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(0, 0, 0, 0.4);
        z-index: 1;
    }
    .quote-modal-left-content {
        position: relative;
        z-index: 2;
    }
    .contact-us-text {
        color: #b2cc3e;
        font-family: 'oxygen-regular', Arial, sans-serif;
        font-style: italic;
        font-size: 24px;
        font-weight: 700;
        margin: 0 0 10px 0;
    }
    .quote-modal-left-content h2 {
        color: #fff;
        font-family: 'oxygen-regular', Arial, sans-serif;
        font-size: 28px;
        margin: 5px 0;
        font-weight: 700;
        line-height: 1.2;
    }
    .quote-modal-right {
        flex: 1.2;
        padding: 30px 40px;
        background: #fff;
        overflow-y: auto;
    }
    .quote-modal-right h3 {
        color: #0a1c32;
        font-family: 'oxygen-regular', Arial, sans-serif;
        font-size: 26px;
        font-weight: 700;
        margin-top: 0;
        margin-bottom: 20px;
    }
    .clean-quote-form {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    .form-row {
        display: flex;
        gap: 15px;
    }
    .form-group {
        flex: 1;
        display: flex;
        flex-direction: column;
    }
    .form-group label {
        font-size: 13px;
        font-weight: 600;
        color: #333;
        margin-bottom: 4px;
    }
    .req {
        color: red;
    }
    .form-group input[type="text"],
    .form-group input[type="email"],
    .form-group input[type="tel"],
    .form-group textarea,
    .form-group input[type="file"] {
        width: 100%;
        padding: 8px 10px;
        border: 1px solid #ccc;
        border-radius: 4px;
        font-size: 13px;
        font-family: inherit;
    }
    .form-group input:focus,
    .form-group textarea:focus {
        border-color: #007c3a;
        outline: none;
    }
    .checkbox-group {
        display: flex;
        gap: 15px;
        margin-top: 4px;
    }
    .checkbox-group label {
        font-weight: normal;
        font-size: 13px;
        display: flex;
        align-items: center;
        gap: 5px;
        cursor: pointer;
        margin: 0;
    }
    .submit-btn {
        background-color: #007c3a;
        color: #fff;
        border: none;
        border-radius: 30px;
        padding: 10px 24px;
        width: 100%;
        font-size: 15px;
        font-weight: bold;
        cursor: pointer;
        transition: background 0.3s;
        margin-top: 5px;
    }
    .submit-btn:hover {
        background-color: #00632e;
    }

    /* Responsive */
    @media (max-width: 992px) {
        .header-container { padding: 0 15px; }
        .main-menu { display: none; /* desktop nav hidden, mobile panel takes over */ }
        .main-navigation { display: none; }
        .header-actions .quote-btn { display: none; }
        .header-actions .search-toggle { display: none; } /* search lives inside the mobile panel */
        .mobile-menu-toggle { display: inline-flex; }
        .quote-modal-content {
            flex-direction: column;
            max-height: 85vh;
        }
        .quote-modal-left { display: none; }
        .form-row { flex-direction: column; gap: 12px; }
        .quote-modal-right { padding: 20px; }
    }
    @media (max-width: 768px) {
        .header-container { height: 64px; }
        .logo img { height: 40px; }
    }
    @media (max-width: 480px) {
        .header-actions { gap: 12px; }
        .header-container { padding: 0 12px; }
    }

    /* ----------------------------------------------------------------
     * Mobile header: hamburger toggle + slide-in panel
     * ---------------------------------------------------------------- */
    .mobile-menu-toggle {
        /* Hidden on desktop. Re-enabled inside the ≤992px breakpoint above. */
        display: none;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 5px;
        width: 40px;
        height: 40px;
        padding: 0;
        background: transparent;
        border: none;
        cursor: pointer;
        position: relative;
    }
    @media (max-width: 992px) {
        .mobile-menu-toggle { display: inline-flex; }
    }
    .mobile-menu-toggle__bar {
        width: 24px;
        height: 2px;
        background: #1a1a1a;
        border-radius: 2px;
        transition: transform 0.25s ease, opacity 0.2s ease;
    }
    .mobile-menu-toggle.is-active .mobile-menu-toggle__bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .mobile-menu-toggle.is-active .mobile-menu-toggle__bar:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-toggle.is-active .mobile-menu-toggle__bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .mobile-menu-backdrop {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.55);
        z-index: 1500;
        opacity: 0;
        transition: opacity 0.25s ease;
        cursor: pointer;
    }
    .mobile-menu-backdrop.is-open {
        opacity: 1;
    }

    .mobile-menu-panel {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100%;
        background: #fff;
        z-index: 1600;
        display: flex;
        flex-direction: column;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        box-shadow: 4px 0 16px rgba(0, 0, 0, 0.12);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    .mobile-menu-panel.is-open {
        transform: translateX(0);
    }
    .mobile-menu-panel__head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 16px 20px;
        border-bottom: 1px solid #eee;
    }
    .mobile-menu-panel__logo img {
        height: 36px;
        width: auto;
        display: block;
    }
    .mobile-menu-panel__close {
        width: 36px;
        height: 36px;
        font-size: 32px;
        line-height: 1;
        color: #333;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
    }
    .mobile-menu-panel__search {
        margin: 16px 20px;
        display: flex;
        align-items: center;
        background: #f4f4f4;
        border-radius: 999px;
        padding: 4px 12px;
    }
    .mobile-menu-panel__search input {
        flex: 1;
        background: transparent;
        border: none;
        outline: none;
        height: 36px;
        font-size: 14px;
        color: #1a1a1a;
    }
    .mobile-menu-panel__search input::placeholder {
        color: #888;
    }
    .mobile-menu-panel__search button {
        background: transparent;
        border: none;
        cursor: pointer;
        color: #555;
        padding: 4px 6px;
        display: flex;
        align-items: center;
    }
    .mobile-menu-panel__search button svg {
        width: 14px;
        height: 14px;
        fill: currentColor;
    }
    .mobile-menu-panel__nav {
        flex: 1;
        padding: 8px 0 16px;
    }
    .mobile-menu-panel__nav .main-menu {
        display: flex;
        flex-direction: column;
        gap: 0;
        list-style: none;
        margin: 0;
        padding: 0;
    }
    .mobile-menu-panel__nav .menu-item {
        position: static;
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }
    .mobile-menu-panel__nav .menu-item > a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 14px 20px;
        font-size: 15px;
        color: #1a1a1a;
        font-weight: 500;
    }
    .mobile-menu-panel__nav .menu-item-has-children > a::after {
        content: '';
        width: 9px;
        height: 9px;
        border-right: 2px solid #777;
        border-bottom: 2px solid #777;
        transform: rotate(-45deg);
        transition: transform 0.2s ease;
        margin-left: 12px;
    }
    .mobile-menu-panel__nav .menu-item-has-children.is-open > a::after {
        transform: rotate(45deg);
    }
    .mobile-menu-panel__nav .menu-item > a svg {
        display: none; /* hide the desktop chevron, we draw our own */
    }
    .mobile-menu-panel__nav .dropdown-menu,
    .mobile-menu-panel__nav .sub-menu {
        display: none;
        position: static;
        width: 100%;
        min-width: 0;
        max-width: none;
        top: auto;
        left: auto;
        right: auto;
        background: #f9f9f9;
        box-shadow: none;
        border-radius: 0;
        padding: 4px 0;
        margin: 0;
        list-style: none;
        z-index: auto;
    }
    .mobile-menu-panel__nav .menu-item-has-children.is-open > .dropdown-menu,
    .mobile-menu-panel__nav .menu-item-has-children.is-open > .sub-menu {
        display: block;
    }
    .mobile-menu-panel__nav .dropdown-menu li,
    .mobile-menu-panel__nav .sub-menu li {
        width: 100%;
    }
    .mobile-menu-panel__nav .dropdown-menu li a,
    .mobile-menu-panel__nav .sub-menu li a {
        width: 100%;
        padding: 12px 20px 12px 36px;
        font-size: 14px;
        color: #444;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .mobile-menu-panel__nav .dropdown-menu .dropdown-menu li a,
    .mobile-menu-panel__nav .sub-menu .sub-menu li a {
        padding-left: 52px;
        font-size: 13px;
        color: #555;
    }
    .mobile-menu-panel__nav .dropdown-menu .dropdown-menu,
    .mobile-menu-panel__nav .sub-menu .sub-menu {
        background: #f3f3f3;
    }
    .mobile-menu-panel__contact {
        border-top: 1px solid #eee;
        padding: 16px 20px 24px;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    .mobile-menu-panel__contact-link {
        display: flex;
        align-items: center;
        gap: 10px;
        color: #444;
        font-size: 14px;
        text-decoration: none;
    }
    .mobile-menu-panel__contact-link svg {
        width: 14px;
        height: 14px;
        fill: currentColor;
    }
    body.mobile-menu-open {
        overflow: hidden;
    }

    /* Banner Styles */
    .hero-banner {
        position: relative;
        width: 100%;
        height: 758px;
        overflow: hidden;
        display: flex;
        align-items: center;
        background-color: #000;
    }
    .hero-video {
        position: absolute;
        top: 50%;
        left: 50%;
        min-width: 100%;
        min-height: 100%;
        width: auto;
        height: auto;
        transform: translate(-50%, -50%);
        object-fit: cover;
        z-index: 1;
    }
    .hero-video--iframe {
        width: 100vw;
        height: 56.25vw;         /* 16:9 ratio of viewport width  */
        min-height: 100%;
        min-width: 177.78vh;     /* 16:9 ratio of viewport height */
        border: 0;
        pointer-events: none;    /* prevent click-through to YouTube UI */
        /*
         * YouTube always renders its own chrome (top title bar, bottom
         * progress/share buttons, corner watermark) regardless of
         * controls=0 / modestbranding=1. Scale the iframe up so those
         * bands fall outside the banner — the parent `.hero-banner` has
         * overflow:hidden, so the excess is clipped cleanly.
         */
        transform: translate(-50%, -50%) scale(1.4);
    }
    .hero-overlay {
        position: absolute;
        top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(0, 0, 0, 0.45);
        z-index: 2;
    }
    .hero-container {
        position: relative;
        z-index: 3;
        width: 100%;
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 20px;
    }
    .hero-content {
        max-width: 800px;
        padding-left: 20px;
    }
    .hero-subheading {
        color: #b2cc3e;
        font-family: 'oxygen-regular', Arial, sans-serif;
        font-size: 32px;
        font-weight: 700;
        margin: 0 0 10px 0;
        text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    }
    .hero-heading {
        color: #fff;
        font-family: 'oxygen-regular', Arial, sans-serif;
        font-size: 46px;
        font-weight: 700;
        margin: 0 0 25px 0;
        line-height: 1.2;
        text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    }
    .hero-features {
        list-style: none;
        padding: 0;
        margin: 0 0 35px 0;
    }
    .hero-features li {
        color: #fff;
        font-size: 16px;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 12px;
        text-shadow: 0 1px 3px rgba(0,0,0,0.6);
    }
    .hero-features svg {
        width: 18px;
        height: 18px;
        fill: #b2cc3e;
        flex-shrink: 0;
    }
    .hero-btn {
        display: inline-block;
        background-color: #007c3a;
        color: #fff;
        padding: 14px 32px;
        border-radius: 30px;
        font-size: 16px;
        font-weight: 700;
        text-decoration: none;
        transition: background 0.3s;
        box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    }
    .hero-btn:hover {
        background-color: #00632e;
    }
    @media (max-width: 768px) {
        .hero-banner { height: auto; min-height: 500px; padding: 60px 0; }
        .hero-subheading { font-size: 24px; }
        .hero-heading { font-size: 32px; }
        .hero-features li { font-size: 14px; }
        .hero-content { padding-left: 0; }
    }

    /* Contact CTA Section */
    .contact-cta-section {
        position: relative;
        width: 100%;
        padding: 300px 20px;
        background-size: cover;
        background-position: center;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    .contact-cta-overlay {
        position: absolute;
        top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(0, 0, 0, 0.55);
        z-index: 1;
    }
    .contact-cta-content {
        position: relative;
        z-index: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .contact-cta-logo {
        max-width: 250px;
        height: auto;
        margin-bottom: 20px;
    }
    .contact-cta-heading {
        color: #BCD259;
        font-family: 'oxygen-regular', Arial, sans-serif;
        font-size: 38px;
        font-weight: 700;
        margin: 0 0 35px 0;
        text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    }
    .contact-cta-btn {
        display: inline-block;
        background-color: #007c3a;
        color: #fff;
        padding: 15px 35px;
        border-radius: 4px;
        font-size: 16px;
        font-weight: 600;
        text-decoration: none;
        transition: background 0.3s;
        box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    }
    .contact-cta-btn:hover {
        background-color: #005a2a;
    }
    @media (max-width: 992px) {
        .contact-cta-section { padding: 160px 20px; }
        .contact-cta-heading { font-size: 32px; }
    }
    @media (max-width: 768px) {
        .contact-cta-section { padding: 100px 20px; }
        .contact-cta-heading { font-size: 26px; margin: 0 0 24px 0; }
        .contact-cta-logo { max-width: 180px; }
        .contact-cta-btn { padding: 12px 26px; font-size: 14px; }
    }
    @media (max-width: 480px) {
        .contact-cta-section { padding: 70px 16px; }
        .contact-cta-heading { font-size: 22px; line-height: 1.3; }
        .contact-cta-logo { max-width: 140px; margin-bottom: 14px; }
    }

    /* Logo Carousel Section */
    .logo-carousel-section {
        position: relative;
        width: 100%;
        max-width: 1400px;
        margin: 60px auto 0 auto;
        overflow: hidden;
        padding: 40px 0 0 0;
        background-color: transparent;
        border-top: 1px solid #eaeaea;
    }
    .logo-track {
        display: flex;
        align-items: center;
        width: max-content;
        animation: scrollLogos 30s linear infinite;
        position: relative;
        z-index: 2;
    }
    .logo-track:hover {
        animation-play-state: paused;
    }
    .logo-slide {
        padding: 0 40px;
    }
    .logo-slide img {
        height: 60px;
        width: auto;
        object-fit: contain;
    }
    @keyframes scrollLogos {
        0% { transform: translateX(0); }
        100% { transform: translateX(-50%); }
    }

    /* About Section */
    .about-section {
        padding: 80px 20px;
        background-color: #fff;
    }
    .about-container {
        max-width: 1400px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        gap: 60px;
    }
    .about-image-col {
        flex: 1;
    }
    .about-image-col img {
        width: 100%;
        height: 500px;
        border-radius: 4px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        object-fit: cover;
    }
    .about-content-col {
        flex: 1;
        display: flex;
        flex-direction: column;
    }
    .about-heading {
        color: #333;
        font-family: 'oxygen-regular', Arial, sans-serif;
        font-size: 36px;
        font-weight: 700;
        margin: 0 0 20px 0;
    }
    .about-desc {
        color: #666;
        font-size: 15px;
        line-height: 1.6;
        margin: 0 0 40px 0;
    }
    .about-features {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 25px;
        margin-bottom: 40px;
    }
    .about-feature {
        display: flex;
        align-items: flex-start;
        gap: 15px;
    }
    .feature-icon {
        width: 40px;
        height: 40px;
        flex-shrink: 0;
        object-fit: contain;
    }
    
    .feature-text {
        color: #333;
        font-size: 15px;
        font-weight: 600;
        line-height: 1.4;
        padding-top: 8px;
    }
    .about-btn {
        display: inline-block;
        color: #000;
        font-size: 15px;
        font-weight: 700;
        text-decoration: none;
        border-bottom: 2px solid #000;
        padding-bottom: 3px;
        align-self: flex-start;
        transition: color 0.3s, border-color 0.3s;
    }
    .about-btn:hover {
        color: #007c3a;
        border-color: #007c3a;
    }
    
    @media (max-width: 992px) {
        .about-container {
            flex-direction: column;
            gap: 40px;
        }
        .about-features {
            grid-template-columns: 1fr;
        }
        .about-heading {
            font-size: 30px;
        }
    }

    /* Trust Section */
    .trust-section {
        padding: 80px 20px;
    }
    .trust-container {
        max-width: 1400px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        gap: 60px;
    }
    .trust-content-col {
        flex: 1;
        display: flex;
        flex-direction: column;
    }
    .trust-image-col {
        flex: 1;
    }
    .trust-image-col img {
        width: 100%;
        height: 500px;
        border-radius: 4px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        object-fit: cover;
    }
    .trust-heading {
        color: #333;
        font-family: 'oxygen-regular', Arial, sans-serif;
        font-size: 36px;
        font-weight: 700;
        margin: 0 0 20px 0;
    }
    .trust-desc {
        color: #666;
        font-size: 16px;
        line-height: 1.7;
        margin: 0 0 40px 0;
    }
    .trust-desc strong {
        color: #222;
        font-weight: 700;
    }
    .trust-logos-box {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 35px;
        background: #fff;
        padding: 25px 30px;
        border-radius: 6px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        margin-bottom: 40px;
    }
    .trust-logos-box img {
        height: auto;
        max-height: 55px;
        max-width: 140px;
        object-fit: contain;
    }
    .trust-logos-box img:not(:last-child) {
        border-right: 1px solid #eaeaea;
        padding-right: 35px;
    }
    .trust-btn {
        display: inline-block;
        color: #000;
        font-size: 15px;
        font-weight: 700;
        text-decoration: none;
        border-bottom: 2px solid #000;
        padding-bottom: 3px;
        align-self: flex-start;
        transition: color 0.3s, border-color 0.3s;
    }
    .trust-btn:hover {
        color: #007c3a;
        border-color: #007c3a;
    }
    
    @media (max-width: 992px) {
        .trust-container {
            flex-direction: column-reverse;
            gap: 40px;
        }
        .trust-heading {
            font-size: 30px;
        }
        .trust-logos-box {
            flex-direction: column;
            gap: 25px;
            padding: 30px;
        }
        .trust-logos-box img:not(:last-child) {
            border-right: none;
            border-bottom: 1px solid #eaeaea;
            padding-right: 0;
            padding-bottom: 25px;
        }
    }

    /* Project Switcher Section */
    .project-section {
        padding: 80px 0 0 0;
        background-color: #fff;
    }
    .project-heading {
        text-align: center;
        color: #333;
        font-family: 'oxygen-regular', Arial, sans-serif;
        font-size: 36px;
        font-weight: 700;
        margin: 0 0 40px 0;
    }
    .switcher-wrapper {
        position: relative;
        width: 100%;
        height: 600px;
        overflow: hidden;
    }
    .switcher-bg {
        position: absolute;
        top: 0; left: 0; right: 0; bottom: 0;
        background-size: cover;
        background-position: center;
        opacity: 0;
        transition: opacity 0.8s ease-in-out;
        z-index: 1;
    }
    .switcher-bg.active {
        opacity: 1;
    }
    .switcher-overlay {
        position: absolute;
        top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(0, 0, 0, 0.4);
        z-index: 2;
    }
    .switcher-columns {
        position: absolute;
        top: 0; left: 0; right: 0; bottom: 0;
        z-index: 3;
        display: flex;
    }
    .switcher-col {
        flex: 1;
        border-right: 1px solid rgba(255, 255, 255, 0.25);
        display: flex;
        align-items: flex-end;
        padding: 40px 30px;
        cursor: pointer;
        transition: background 0.4s ease;
    }
    .switcher-col:last-child {
        border-right: none;
    }
    .switcher-col:hover, .switcher-col.active {
        background: rgba(0, 0, 0, 0.3);
    }
    .col-content {
        width: 100%;
        text-align: center;
        color: #fff;
    }
    .col-title {
        font-family: 'oxygen-regular', Arial, sans-serif;
        font-size: 24px;
        font-weight: 600;
        margin: 0;
        text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    }
    .col-details {
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        transition: all 0.5s ease;
    }
    .switcher-col:hover .col-details, .switcher-col.active .col-details {
        max-height: 300px;
        opacity: 1;
        margin-top: 20px;
    }
    .col-details p {
        font-size: 15px;
        line-height: 1.6;
        margin: 0 0 25px 0;
        text-shadow: 0 1px 3px rgba(0,0,0,0.5);
    }
    .col-btn {
        display: inline-block;
        background-color: #007c3a;
        color: #fff;
        padding: 12px 28px;
        border-radius: 30px;
        font-size: 15px;
        font-weight: 700;
        text-decoration: none;
        transition: background 0.3s;
        box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    }
    .col-btn:hover {
        background-color: #00632e;
    }
    
    @media (max-width: 992px) {
        /* Mobile: turn the four columns into a horizontal scroll-snap
         * carousel. Each card carries its own background image (set by
         * the `--col-bg` custom property on the column element) and is
         * always shown "active" (details visible) so users can swipe
         * left/right to compare. The shared backdrop layers behind are
         * hidden on mobile. */
        .switcher-wrapper {
            height: auto;
            overflow: visible;
        }
        .switcher-bg,
        .switcher-overlay {
            display: none;
        }
        .switcher-columns {
            position: relative;
            display: flex;
            flex-direction: row;
            flex-wrap: nowrap;
            overflow-x: auto;
            overflow-y: hidden;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
            gap: 14px;
            padding: 0 16px 12px;
            scrollbar-width: none; /* Firefox */
        }
        .switcher-columns::-webkit-scrollbar { display: none; }

        .switcher-col {
            flex: 0 0 82%;
            max-width: 82%;
            min-height: 420px;
            border-right: none;
            border-radius: 12px;
            scroll-snap-align: center;
            position: relative;
            overflow: hidden;
            padding: 28px 22px;
            display: flex;
            align-items: flex-end;
            background-image: var(--col-bg, none);
            background-size: cover;
            background-position: center;
            box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
        }
        .switcher-col::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.55) 100%);
            z-index: 1;
        }
        .switcher-col.active {
            background-color: transparent; /* override desktop hover overlay */
        }
        .switcher-col:hover,
        .switcher-col.active {
            background-color: transparent;
        }
        .switcher-col .col-content {
            position: relative;
            z-index: 2;
        }
        /* On mobile show the details for every card by default — no hover. */
        .switcher-col .col-details {
            max-height: 300px;
            opacity: 1;
            margin-top: 14px;
        }
        .col-title {
            font-size: 22px;
        }
        .col-details p {
            font-size: 14px;
            margin: 0 0 18px;
        }
    }
    @media (max-width: 480px) {
        .switcher-col {
            flex-basis: 88%;
            max-width: 88%;
            min-height: 380px;
            padding: 22px 18px;
        }
        .col-title { font-size: 20px; }
        .col-btn { padding: 10px 22px; font-size: 13px; }
    }

    /* Services Section */
    .services-section {
        padding: 80px 20px;
        background-color: #fff;
    }
    .services-heading {
        text-align: center;
        color: #333;
        font-family: 'oxygen-regular', Arial, sans-serif;
        font-size: 36px;
        font-weight: 700;
        margin: 0 0 50px 0;
    }
    .services-container {
        max-width: 1400px;
        margin: 0 auto;
    }
    .service-row {
        display: flex;
        width: 100%;
        min-height: 480px;
    }
    .service-row:nth-child(even) {
        flex-direction: row-reverse;
    }
    .service-content {
        flex: 0 0 50%;
        width: 50%;
        padding: 60px 80px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        background-color: #f8f9fa;
    }
    .service-title {
        color: #333;
        font-family: 'oxygen-regular', Arial, sans-serif;
        font-size: 28px;
        font-weight: 400;
        margin: 0 0 25px 0;
    }
    .service-title span {
        color: #05731C;
        font-weight: 700;
    }
    .service-list {
        list-style: none;
        padding: 0;
        margin: 0 0 35px 0;
    }
    .service-list li {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        color: #555;
        font-size: 15px;
        margin-bottom: 12px;
        line-height: 1.5;
    }
    .service-list svg {
        width: 18px;
        height: 18px;
        fill: #05731C;
        flex-shrink: 0;
        margin-top: 2px;
    }
    .service-link {
        color: #000;
        font-size: 15px;
        font-weight: 700;
        text-decoration: none;
        border-bottom: 2px solid #000;
        padding-bottom: 2px;
        align-self: flex-start;
        transition: color 0.3s, border-color 0.3s;
    }
    .service-link:hover {
        color: #05731C;
        border-color: #05731C;
    }
    .service-image {
        flex: 0 0 50%;
        width: 50%;
        background-size: cover;
        background-position: center;
    }
    
    @media (max-width: 992px) {
        .service-row, .service-row:nth-child(even) {
            flex-direction: column-reverse;
        }
        .service-content, .service-image {
            flex: 0 0 100%;
            width: 100%;
        }
        .service-image {
            min-height: 350px;
        }
        .service-content {
            padding: 40px 25px;
        }
    }

    /* Solutions Carousel Section */
    .solutions-section {
        padding: 80px 0;
        background-color: #fff;
    }
    .solutions-header {
        text-align: center;
        max-width: 1000px;
        margin: 0 auto 50px auto;
        padding: 0 20px;
    }
    .solutions-title {
        color: #333;
        font-family: 'oxygen-regular', Arial, sans-serif;
        font-size: 32px;
        font-weight: 700;
        margin: 0 0 20px 0;
    }
    .solutions-desc {
        color: #666;
        font-size: 15px;
        line-height: 1.6;
        margin: 0;
    }
    .carousel-container {
        width: 100%;
        overflow: hidden;
    }
    .carousel-track {
        display: flex;
        width: 100%;
        will-change: transform;
    }
    .carousel-slide {
        flex: 0 0 calc((100% - (15px * 5)) / 6);
        margin-right: 15px;
        display: flex;
        flex-direction: column;
        background-color: #fff;
        border: 1px solid #eaeaea;
        box-shadow: 0 2px 10px rgba(0,0,0,0.02);
    }
    .carousel-slide img {
        width: 100%;
        height: 220px;
        object-fit: cover;
    }
    .slide-content {
        padding: 20px 15px;
        text-align: center;
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        min-height: 140px;
    }
    .slide-content h4 {
        color: #333;
        font-family: 'oxygen-regular', Arial, sans-serif;
        font-size: 14px;
        font-weight: 600;
        line-height: 1.5;
        margin: 0 0 8px 0;
    }
    .slide-desc {
        color: #666;
        font-size: 12px;
        line-height: 1.4;
        margin: 0 0 15px 0;
    }
    .slide-btn {
        display: inline-block;
        background: #fff;
        color: #666;
        border: 1px solid #ccc;
        padding: 10px 20px;
        font-size: 13px;
        cursor: pointer;
        transition: all 0.3s;
        text-decoration: none;
    }
    .slide-btn:hover {
        background: #007c3a;
        color: #fff;
        border-color: #007c3a;
    }
    
    @media (max-width: 1200px) {
        .carousel-slide {
            flex: 0 0 calc((100% - (15px * 3)) / 4);
        }
    }
    @media (max-width: 768px) {
        .carousel-slide {
            flex: 0 0 calc((100% - (15px * 1)) / 2);
        }
        .solutions-title {
            font-size: 28px;
        }
    }

    /* Project Cases Grid Section */
    .cases-section {
        padding: 80px 20px;
        background-color: #fff;
    }
    .cases-heading {
        text-align: center;
        color: #333;
        font-family: 'oxygen-regular', Arial, sans-serif;
        font-size: 32px;
        font-weight: 700;
        margin: 0 0 50px 0;
    }
    .cases-grid {
        max-width: 1400px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    .case-item {
        position: relative;
        display: block;
        overflow: hidden;
        border-radius: 4px;
        aspect-ratio: 4 / 3;
        box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        text-decoration: none;
    }
    .case-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    .case-item::before {
        content: '';
        position: absolute;
        top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(0,0,0,0.15);
        transition: background 0.3s;
        z-index: 1;
    }
    .case-item:hover::before {
        background: rgba(0,0,0,0.4);
    }
    .case-item:hover img {
        transform: scale(1.08);
    }
    .case-btn {
        position: absolute;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 2;
        display: inline-block;
        border: 2px solid #fff;
        color: #fff;
        padding: 10px 30px;
        font-size: 15px;
        font-weight: 600;
        letter-spacing: 0.5px;
        transition: all 0.3s;
        background: rgba(0, 0, 0, 0.2);
    }
    .case-item:hover .case-btn {
        background: #fff;
        color: #333;
    }
    
    @media (max-width: 1200px) {
        .cases-grid {
            grid-template-columns: repeat(3, 1fr);
        }
    }
    @media (max-width: 992px) {
        .cases-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 14px;
        }
        .case-btn {
            bottom: 16px;
            padding: 8px 18px;
            font-size: 13px;
            letter-spacing: 0.2px;
            white-space: nowrap;
            max-width: calc(100% - 24px);
            text-overflow: ellipsis;
            overflow: hidden;
        }
    }
    @media (max-width: 576px) {
        .cases-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
        }
        .case-item {
            border-radius: 6px;
        }
        .case-btn {
            bottom: 12px;
            padding: 6px 12px;
            font-size: 12px;
            border-width: 1px;
        }
    }
    @media (max-width: 380px) {
        .case-btn {
            font-size: 11px;
            padding: 5px 10px;
        }
    }

    /* Best-Selling Series Section */
    .bestselling-section {
        padding: 80px 20px;
        background-color: #fff;
    }
    .bestselling-heading {
        text-align: center;
        color: #333;
        font-family: 'oxygen-regular', Arial, sans-serif;
        font-size: 32px;
        font-weight: 700;
        margin: 0 0 50px 0;
    }
    .bestselling-container {
        max-width: 1400px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
    .bestselling-item {
        display: flex;
        flex-direction: column;
    }
    .bestselling-item img {
        width: 100%;
        aspect-ratio: 1 / 1;
        object-fit: cover;
        margin-bottom: 25px;
    }
    .bestselling-content {
        display: flex;
        flex-direction: column;
        flex: 1;
    }
    .bestselling-title {
        color: #333;
        font-family: 'oxygen-regular', Arial, sans-serif;
        font-size: 24px;
        font-weight: 400;
        margin: 0 0 15px 0;
    }
    .bestselling-desc {
        color: #555;
        font-size: 15px;
        line-height: 1.6;
        margin: 0 0 25px 0;
    }
    .bestselling-link {
        margin-top: auto;
        align-self: flex-start;
        color: #000;
        font-size: 14px;
        font-weight: 700;
        text-decoration: none;
        border-bottom: 2px solid #000;
        padding-bottom: 3px;
        transition: color 0.3s, border-color 0.3s;
    }
    .bestselling-link:hover {
        color: #007c3a;
        border-color: #007c3a;
    }
    
    @media (max-width: 992px) {
        .bestselling-container {
            grid-template-columns: repeat(2, 1fr);
        }
    }
    @media (max-width: 768px) {
        .bestselling-container {
            grid-template-columns: 1fr;
        }
        .bestselling-heading {
            font-size: 28px;
        }
    }

    /* Join Us Grid Section */
    .join-section {
        display: grid;
        grid-template-columns: 1fr 1fr;
        width: 100%;
    }
    .join-block {
        position: relative;
        padding: 100px 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        background-size: cover;
        background-position: center;
    }
    .join-block.full-width {
        grid-column: 1 / -1;
        padding: 120px 20px;
    }
    .join-block::before {
        content: '';
        position: absolute;
        top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(0, 0, 0, 0.55);
        z-index: 1;
    }
    .join-content {
        position: relative;
        z-index: 2;
        max-width: 800px;
    }
    .join-heading {
        font-family: 'oxygen-regular', Arial, sans-serif;
        font-size: 26px;
        font-weight: 600;
        line-height: 1.4;
        margin: 0 0 25px 0;
        color: #fff;
    }
    .join-heading .highlight {
        color: #BCD259;
    }
    .join-desc {
        font-size: 15px;
        line-height: 1.6;
        color: #eee;
        margin: 0 0 30px 0;
    }
    .join-btn {
        display: inline-block;
        background-color: #05731C;
        color: #fff;
        padding: 12px 35px;
        font-size: 14px;
        font-weight: 600;
        border-radius: 30px;
        text-decoration: none;
        transition: background-color 0.3s;
    }
    .join-btn:hover {
        background-color: #035213;
    }

    @media (max-width: 992px) {
        .join-section {
            grid-template-columns: 1fr;
        }
        .join-block.full-width {
            grid-column: 1;
        }
        .join-heading {
            font-size: 22px;
        }
    }

    /* Custom Furniture Section */
    .custom-furniture-section {
        padding: 80px 20px;
        background-color: #fff;
    }
    .custom-heading {
        text-align: center;
        color: #333;
        font-family: 'oxygen-regular', Arial, sans-serif;
        font-size: 32px;
        font-weight: 700;
        margin: 0 0 50px 0;
    }
    .custom-grid {
        max-width: 1400px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 40px 30px;
    }
    .custom-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .custom-item img {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
        object-fit: cover;
        margin-bottom: 20px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.05); /* Very subtle shadow for depth */
        transition: transform 0.3s;
    }
    .custom-item:hover img {
        transform: translateY(-5px);
    }
    .custom-title {
        color: #333;
        font-family: 'oxygen-regular', Arial, sans-serif;
        font-size: 19px;
        font-weight: 400;
        margin: 0;
    }
    
    @media (max-width: 992px) {
        .custom-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 40px 20px;
        }
    }
    @media (max-width: 576px) {
        .custom-grid {
            grid-template-columns: 1fr;
        }
        .custom-heading {
            font-size: 28px;
        }
    }

    /* Value Section */
    .value-section {
        padding: 80px 20px;
        background-color: #fbfbfb;
        text-align: center;
    }
    .value-heading {
        color: #333;
        font-family: 'oxygen-regular', Arial, sans-serif;
        font-size: 28px;
        font-weight: 600;
        margin: 0 0 60px 0;
    }
    .value-split {
        max-width: 1400px;
        margin: 0 auto 50px auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        align-items: center;
    }
    .value-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px 20px;
    }
    .value-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .value-video {
        position: relative;
        display: block;
        width: 100%;
        aspect-ratio: 16 / 9;
        padding: 0;
        border: 0;
        background: #000;
        cursor: pointer;
        overflow: hidden;
        border-radius: 8px;
        box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    }
    .value-video__poster {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .4s ease, filter .4s ease;
    }
    .value-video__play {
        position: absolute;
        top: 50%; left: 50%;
        width: 80px; height: 80px;
        transform: translate(-50%, -50%);
        transition: transform .25s ease;
        pointer-events: none;
    }
    .value-video__play svg { width: 100%; height: 100%; display: block; }
    .value-video:hover .value-video__poster { transform: scale(1.04); filter: brightness(.9); }
    .value-video:hover .value-video__play   { transform: translate(-50%, -50%) scale(1.1); }
    .value-video iframe {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }
    .value-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
    .value-title {
        color: #555;
        font-size: 14px;
        line-height: 1.4;
        margin: 0;
        max-width: 180px;
    }
    .value-link {
        color: #000;
        font-size: 14px;
        font-weight: 700;
        text-decoration: underline;
        text-underline-offset: 4px;
        transition: color 0.3s;
    }
    .value-link:hover {
        color: #05731C;
    }

    @media (max-width: 992px) {
        .value-split {
            grid-template-columns: 1fr;
        }
        .value-grid {
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }
    }
    @media (max-width: 576px) {
        .value-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        .value-video__play {
            width: 60px; height: 60px;
        }
    }

    /* Footer Section */
    .site-footer {
        background-color: #000;
        color: #a0a0a0;
        padding: 80px 20px 40px 20px;
        font-family: 'oxygen-regular', Arial, sans-serif;
    }
    .footer-top {
        max-width: 1400px;
        margin: 0 auto 60px auto;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
    }
    .footer-heading {
        color: #fff;
        font-family: 'oxygen-regular', Arial, sans-serif;
        font-size: 16px;
        font-weight: 700;
        letter-spacing: 0.5px;
        margin: 0 0 30px 0;
        text-transform: uppercase;
    }
    .footer-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-list li {
        margin-bottom: 18px;
        line-height: 1.5;
    }
    .footer-list a {
        color: #a0a0a0;
        text-decoration: none;
        font-size: 14px;
        transition: color 0.3s;
    }
    .footer-list a:hover {
        color: #fff;
    }
    .footer-list.contact-list li {
        font-size: 14px;
    }
    .footer-divider {
        max-width: 1400px;
        margin: 0 auto;
        height: 1px;
        background-color: #333;
    }
    .footer-bottom {
        max-width: 1400px;
        margin: 40px auto 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 20px;
    }
    .footer-copy p {
        font-size: 13px;
        line-height: 1.6;
        margin: 0;
    }
    .footer-logo-text {
        color: #fff;
        font-family: 'oxygen-regular', Arial, sans-serif;
        font-size: 32px;
        font-weight: 700;
        letter-spacing: 1px;
        text-align: center;
        flex: 1;
    }
    .footer-socials {
        display: flex;
        gap: 15px;
    }
    .footer-socials a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        border: 1px solid #fff;
        border-radius: 50%;
        transition: all 0.3s;
    }
    .footer-socials a:hover {
        background-color: #fff;
    }
    .footer-socials a:hover img {
        filter: invert(1);
    }
    .footer-socials img {
        width: 16px;
        height: 16px;
    }
    .footer-heading__chevron {
        display: none; /* desktop: no chevron */
    }
    @media (max-width: 992px) {
        .site-topbar { display: none; }
        .site-header-spacer { height: 80px; } /* topbar hidden, only header (80px) */
        .site-header { top: 0; }
        .footer-top { grid-template-columns: repeat(2, 1fr); }
        .footer-bottom { flex-direction: column; text-align: center; }
        .footer-logo-text { order: -1; margin-bottom: 20px; }
    }
    @media (max-width: 768px) {
        .site-header-spacer { height: 64px; } /* header shrinks to 64px on phones */

        /* ---- Footer accordion (≤768px) ---------------------------------- */
        .site-footer { padding: 40px 20px 30px; }
        .footer-top {
            display: block;
            margin: 0 auto 24px auto;
            border-top: 1px solid #2a2a2a;
        }
        .footer-col {
            border-bottom: 1px solid #2a2a2a;
        }
        .footer-heading {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin: 0;
            padding: 18px 4px;
            font-size: 15px;
            cursor: pointer;
            user-select: none;
            -webkit-tap-highlight-color: transparent;
        }
        .footer-heading__chevron {
            display: inline-block;
            width: 10px;
            height: 10px;
            border-right: 2px solid #fff;
            border-bottom: 2px solid #fff;
            transform: rotate(45deg);
            transition: transform 0.25s ease;
            margin-right: 6px;
        }
        .footer-col.is-open .footer-heading__chevron {
            transform: rotate(-135deg);
            margin-top: 4px;
        }
        .footer-col__panel {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.25s ease;
            padding: 0 4px;
        }
        .footer-col.is-open .footer-col__panel {
            max-height: 1200px;
            padding: 0 4px 18px;
        }
        .footer-list li {
            margin-bottom: 12px;
        }
        .footer-list a {
            font-size: 13.5px;
        }
        .footer-divider { display: none; }
        .footer-bottom {
            margin: 8px auto 0;
            gap: 14px;
        }
        .footer-logo-text { font-size: 24px; }
        .footer-copy p { font-size: 12px; }
        .footer-socials a {
            width: 32px;
            height: 32px;
        }
        .footer-socials img {
            width: 14px;
            height: 14px;
        }
    }
    @media (max-width: 576px) {
        /* keep the accordion (single column) — overrides removed since
         * the ≤768px block already collapses to one column. */
    }

    /* ===== WordPress Admin Bar Adaptation =====
       admin bar: 32px (>=783px) / 46px (<=782px), position:fixed, z-index:99999.
       将固定定位的 topbar / header 整体下移，避免被遮挡。 */
    body.admin-bar .site-topbar { top: 32px; }
    body.admin-bar .site-header { top: 76px; } /* 32 + 44 (topbar) */
    @media (max-width: 992px) {
        /* 此断点下 topbar 隐藏，header 紧贴 admin bar */
        body.admin-bar .site-header { top: 32px; }
    }
    @media screen and (max-width: 782px) {
        body.admin-bar .site-topbar { top: 46px; }
        body.admin-bar .site-header { top: 46px; } /* topbar 已隐藏 */
    }

    /* Typographic weight normalization: all <a> tags and all titles use regular (400) */
    a,
    h1, h2, h3, h4, h5, h6,
    .footer-logo-text,
    .contact-us-text,
    .service-title span,
    .join-heading .highlight {
        font-weight: 400 !important;
    }

    /* ============================================= */
    /* Products Archive / WooCommerce Category Page  */
    /* ============================================= */

/* Products Page Styles */
    .page-banner {
        position: relative;
        width: 100%;
        height: 350px;
        background-image: url('../images/ib.jpg');
        background-size: cover;
        background-position: center;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 30px;
    }
    .page-banner::before {
        content: '';
        position: absolute;
        top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(0, 0, 0, 0.4);
        z-index: 1;
    }
    .page-banner-title {
        position: relative;
        z-index: 2;
        color: #fff;
        font-size: 32px;
        font-weight: 400;
        text-align: center;
        font-family: 'oxygen-regular', Arial, sans-serif;
    }
    .products-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 10px 20px 80px 20px;
        font-family: 'oxygen-regular', Arial, sans-serif;
    }
    .breadcrumb {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 14px;
        color: #888;
        margin-bottom: 40px;
    }
    .breadcrumb a {
        color: #888;
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 5px;
    }
    .breadcrumb a:hover {
        color: #e60012;
    }
    .breadcrumb .current {
        color: #e60012;
    }
    .breadcrumb svg {
        width: 14px;
        height: 14px;
        fill: currentColor;
    }
    .category-boxes {
        display: flex;
        flex-wrap: nowrap;
        gap: 15px;
        justify-content: space-between;
    }
    .category-box {
        flex: 1;
        background-color: #eeeeee;
        padding: 15px 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        color: #333;
        font-size: 13px;
        transition: background-color 0.3s;
    }
    .category-box:hover {
        background-color: #e0e0e0;
    }
    .cat-dot {
        color: #e60012;
        font-size: 18px;
        line-height: 0;
        margin-right: 8px;
    }
    .cat-arrow {
        color: #e60012;
        font-size: 14px;
        line-height: 0;
        margin-left: 8px;
        font-family: Arial, sans-serif;
    }
    @media (max-width: 992px) {
        .category-boxes {
            flex-wrap: wrap;
        }
        .category-box {
            flex: 1 1 calc(33.333% - 10px);
        }
    }
    @media (max-width: 768px) {
        .category-box {
            flex: 1 1 calc(50% - 7.5px);
        }
        .page-banner {
            height: 250px;
        }
        .page-banner-title {
            font-size: 24px;
        }
    }
    @media (max-width: 480px) {
        .category-box {
            flex: 1 1 100%;
        }
    }


    /* Products Main Section */
    .products-main {
        background-color: #fff;
        padding: 40px 0 80px 0;
        font-family: 'oxygen-regular', Arial, sans-serif;
    }
    .section-title-wrap {
        text-align: center;
        margin-bottom: 40px;
    }
    .section-title {
        font-size: 28px;
        color: #000;
        font-weight: 600;
        margin: 0 0 10px 0;
    }
    .title-line {
        width: 40px;
        height: 2px;
        background-color: #d19a5b; /* The orange/brown color from screenshot */
        margin: 0 auto;
    }
    .products-layout {
        display: flex;
        gap: 40px;
        align-items: flex-start;
    }
    /* Sidebar */
    .products-sidebar {
        width: 22%;
        flex-shrink: 0;
    }
    .sidebar-search {
        display: flex;
        margin-bottom: 30px;
    }
    .sidebar-search input {
        width: 100%;
        padding: 12px 15px;
        border: 1px solid #f0f0f0;
        background-color: #f5f5f5;
        border-right: none;
        outline: none;
        font-size: 14px;
        color: #333;
    }
    .sidebar-search button {
        background-color: #c49a6c;
        border: none;
        color: #fff;
        padding: 0 18px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background-color 0.3s;
    }
    .sidebar-search button:hover {
        background-color: #a88258;
    }
    .sidebar-widget {
        margin-bottom: 40px;
    }
    .widget-title {
        font-size: 18px;
        color: #222;
        margin: 0 0 20px 0;
        font-weight: 600;
    }
    .category-list {
        list-style: none;
        padding: 0;
        margin: 0;
        border-top: 1px solid #eee;
    }
    .category-list li {
        border-bottom: 1px solid #eee;
    }
    .category-list a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 0;
        text-decoration: none;
        color: #333;
        font-size: 14px;
        transition: color 0.3s;
    }
    .category-list a:hover {
        color: #c49a6c;
    }
    .category-list span {
        font-size: 18px;
        color: #666;
        font-weight: 300;
    }
    .latest-products-list {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    .latest-product-item {
        display: flex;
        gap: 15px;
        align-items: center;
    }
    .latest-product-item img {
        width: 80px;
        height: 60px;
        object-fit: cover;
        background-color: #f9f9f9;
    }
    .latest-pro-info {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }
    .latest-pro-info h4 {
        margin: 0;
        font-size: 13px;
        color: #333;
        font-weight: 400;
        line-height: 1.4;
    }
    .latest-pro-info a {
        font-size: 12px;
        color: #c49a6c;
        text-decoration: none;
    }
    
    /* Main Grid */
    .products-grid-area {
        width: 78%;
    }
    .product-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    .product-card {
        display: flex;
        flex-direction: column;
    }
    .product-img {
        position: relative;
        width: 100%;
        padding-top: 66.66%; /* 3:2 aspect ratio */
        background-color: #f9f9f9;
        overflow: hidden;
        margin-bottom: 15px;
    }
    .product-img img {
        position: absolute;
        top: 0; left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s;
    }
    .product-card:hover .product-img img {
        transform: scale(1.05);
    }
    .hot-icon {
        position: absolute;
        top: 10px;
        left: 10px;
        background-color: #c49a6c;
        border-radius: 50%;
        width: 24px;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 2;
    }
    .product-info {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    .product-title {
        font-size: 15px;
        color: #222;
        margin: 0;
        font-weight: 500;
        line-height: 1.4;
    }
    .product-more {
        font-size: 13px;
        color: #c49a6c;
        text-decoration: none;
    }
    .product-more:hover {
        text-decoration: underline;
    }
    
    @media (max-width: 992px) {
        .products-layout {
            flex-direction: column;
        }
        .products-sidebar {
            width: 100%;
        }
        .products-grid-area {
            width: 100%;
        }
        .product-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }
    @media (max-width: 576px) {
        .product-grid {
            grid-template-columns: 1fr;
        }
    }

    .category-list .cat-toggle {
        cursor: pointer;
    }
    .category-list .cat-icon {
        display: inline-block;
        transition: transform 0.3s;
    }
    .category-list li.open > .cat-toggle .cat-icon {
        transform: rotate(45deg);
    }
    .category-list li.open > .cat-toggle {
        color: #c49a6c;
    }
    .sub-cat-list {
        list-style: none;
        padding: 0;
        margin: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease;
    }
    .category-list li.open > .sub-cat-list {
        max-height: 500px;
    }
    .sub-cat-list li {
        border-bottom: none !important;
    }
    .sub-cat-list li a {
        padding: 10px 0 10px 15px !important;
        font-size: 13px !important;
        color: #666 !important;
        border-left: 2px solid transparent;
    }
    .sub-cat-list li a:hover {
        color: #c49a6c !important;
        border-left-color: #c49a6c;
        padding-left: 20px !important;
    }

/* Tighten the breadcrumb + top-level category boxes section — the generic
 * `.products-container` rule gives it 80px bottom padding which is too much
 * here because the next section (promo/filter bar) already has its own gap. */
section.products-container {
    padding-bottom: 16px !important;
}

/* -------------------------------------------------------------------------
 * Product Category Promo Cards (rendered above the filter bar)
 * ------------------------------------------------------------------------- */
.products-promo {
    padding: 12px 0 4px;
}
.products-promo .products-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}
.promo-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.promo-cards .promo-card {
    display: block;
    overflow: hidden;
    background: #f5f5f5;
    aspect-ratio: 4 / 3;
}
.promo-cards .promo-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.promo-cards a.promo-card:hover img {
    transform: scale(1.04);
}
@media (max-width: 992px) {
    .promo-cards { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
    .promo-cards { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}

/* -------------------------------------------------------------------------
 * Products filter bar (rendered above `.products-main` by section-archive.php)
 * ------------------------------------------------------------------------- */
.products-filter-bar {
    padding: 24px 0;
}
.products-filter-bar .products-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}
.products-filter-bar .filter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

/* ---------- Custom dropdown ---------- */
.sg-dropdown {
    position: relative;
    flex: 1 1 0;
    min-width: 140px;
}
.sg-dropdown__trigger {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    height: 50px;
    padding: 0 24px;
    border: 3px solid #d5d5d5;
    border-radius: 0;
    background: #fff;
    font-family: inherit;
    font-size: 15px;
    font-weight: 500;
    color: #c41230;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.25s ease;
    outline: none;
    box-sizing: border-box;
}
.sg-dropdown__icon {
    display: flex;
    align-items: center;
    font-size: 22px;
    line-height: 1;
    color: #c41230;
    transition: color 0.25s ease;
}
.sg-dropdown__chevron {
    font-size: 16px;
    color: #c41230;
    transition: transform 0.25s ease, color 0.25s ease;
}
.sg-dropdown.is-open .sg-dropdown__chevron {
    transform: rotate(180deg);
}

/* Hover — solid red background, white icon/text */
.sg-dropdown__trigger:hover {
    border-color: #c41230;
    color: #fff;
    background: #c41230;
}
.sg-dropdown__trigger:hover .sg-dropdown__icon,
.sg-dropdown__trigger:hover .sg-dropdown__chevron {
    color: #fff;
}
/* Open — solid red */
.sg-dropdown.is-open .sg-dropdown__trigger {
    border-color: #c41230;
    background: #c41230;
    color: #fff;
}
.sg-dropdown.is-open .sg-dropdown__trigger .sg-dropdown__icon,
.sg-dropdown.is-open .sg-dropdown__trigger .sg-dropdown__chevron {
    color: #fff;
}
/* Filtered (has an active value) — subtle accent, not permanently solid */
.sg-dropdown.is-filtered .sg-dropdown__trigger {
    border-color: #c41230;
    color: #c41230;
    background: #fff;
}
.sg-dropdown.is-filtered .sg-dropdown__trigger:hover {
    background: #c41230;
    color: #fff;
}

/* Menu */
.sg-dropdown__menu {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    min-width: 100%;
    max-height: 260px;
    overflow-y: auto;
    margin: 0;
    padding: 6px 0;
    list-style: none;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 0;
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
    z-index: 100;
}
.sg-dropdown.is-open .sg-dropdown__menu {
    display: block;
}
.sg-dropdown__option {
    padding: 9px 20px;
    font-size: 14px;
    color: #444;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.15s ease, color 0.15s ease;
}
.sg-dropdown__option:hover {
    background: #fef2f2;
    color: #c41230;
}
.sg-dropdown__option.is-selected {
    font-weight: 600;
    color: #c41230;
}

/* Responsive */
@media (max-width: 992px) {
    .products-filter-bar { padding: 16px 0; }
    .products-filter-bar .filter-form {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        align-items: stretch;
    }
    .sg-dropdown {
        flex: none;
        min-width: 0;
        width: 100%;
    }
    .sg-dropdown__trigger {
        height: 44px;
        padding: 0 12px;
        gap: 8px;
        font-size: 13px;
        border-width: 2px;
    }
    .sg-dropdown__icon {
        font-size: 18px;
        flex-shrink: 0;
    }
    .sg-dropdown__chevron {
        font-size: 14px;
        flex-shrink: 0;
    }
    .sg-dropdown__text {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        flex: 1;
        min-width: 0;
        text-align: left;
    }
    .sg-dropdown__menu {
        min-width: 0;
        width: 100%;
    }
}
@media (max-width: 640px) {
    .products-filter-bar .filter-form {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    .sg-dropdown__trigger {
        height: 40px;
        padding: 0 10px;
        gap: 6px;
        font-size: 12px;
        border-width: 1.5px;
    }
    .sg-dropdown__icon {
        font-size: 16px;
    }
    .sg-dropdown__chevron {
        font-size: 12px;
    }
    .sg-dropdown__option {
        padding: 10px 14px;
        font-size: 13px;
    }
}
@media (max-width: 380px) {
    .products-filter-bar .filter-form {
        grid-template-columns: 1fr 1fr;
    }
    .sg-dropdown__trigger {
        font-size: 11.5px;
        padding: 0 8px;
    }
}

/* -------------------------------------------------------------------------
 * Full-width product grid (sidebar removed) + SKU line below title
 * ------------------------------------------------------------------------- */
.products-layout--no-sidebar .products-grid-area {
    width: 100% !important;
}
.products-layout--no-sidebar {
    display: block !important;
}
.products-layout--no-sidebar .product-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 24px !important;
}
@media (max-width: 768px) {
    .products-main { padding: 30px 0 50px; }
    .section-title-wrap { margin-bottom: 24px; }
    .section-title { font-size: 22px; }
    .products-layout--no-sidebar .product-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 14px !important;
    }
    .products-layout--no-sidebar .product-card .product-title {
        font-size: 14px !important;
        font-weight: 600 !important;
    }
    .product-card .product-info {
        padding: 10px 2px 4px;
    }
    .product-img {
        margin-bottom: 10px;
    }
    .product-badge-new {
        font-size: 10px;
        padding: 1px 5px;
        margin-right: 5px;
        letter-spacing: 0.4px;
    }
}
@media (max-width: 480px) {
    .section-title { font-size: 20px; }
    .products-layout--no-sidebar .product-grid {
        gap: 10px !important;
    }
    .products-layout--no-sidebar .product-card .product-title {
        font-size: 13px !important;
        line-height: 1.3 !important;
    }
}
@media (max-width: 420px) {
    /* Keep 2 columns even on the smallest phones — single column makes
     * cards feel oversized and pushes the grid below the fold. */
    .products-layout--no-sidebar .product-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

a.product-card {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    background: #fff;
}
.product-card .product-info {
    padding: 14px 4px 4px;
    gap: 6px !important;
}
.products-layout--no-sidebar .product-card .product-title {
    font-size: 17px !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    line-height: 1.35 !important;
    margin: 0 !important;
    display: block;
}
.product-badge-new {
    display: inline-block;
    background: #c49a6c;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.6px;
    padding: 2px 7px;
    border-radius: 3px;
    margin-right: 8px;
    vertical-align: middle;
    line-height: 1.4;
    text-transform: uppercase;
}
.product-sku {
    margin: 0;
    font-size: 13px;
    color: #888;
    font-weight: 400;
    letter-spacing: 0.3px;
}

/* -------------------------------------------------------------------------
 * Single Product page
 * ------------------------------------------------------------------------- */
.single-product {
    padding: 20px 0 80px;
}
.single-product__breadcrumb {
    margin-bottom: 24px;
}
.single-product__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: 48px;
    align-items: flex-start;
}

/* Gallery */
.single-product__gallery {
    position: sticky;
    top: 20px;
}
.single-product__main-image {
    width: 100%;
    background: #f5f5f5;
    overflow: hidden;
}
.single-product__main-image img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}
.single-product__thumbs {
    list-style: none;
    margin: 12px 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
}
.single-product__thumb {
    padding: 0;
    border: 2px solid transparent;
    background: #f5f5f5;
    cursor: pointer;
    overflow: hidden;
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    transition: border-color 0.2s ease;
}
.single-product__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.single-product__thumb.is-active,
.single-product__thumb:hover {
    border-color: #c49a6c;
}

/* Social share bar below gallery */
.single-product__share {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #eee;
}
.single-product__share-label {
    font-size: 13px;
    font-weight: 600;
    color: #666;
    letter-spacing: 0.3px;
}
.single-product__share-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #c49a6c;
    background: #c49a6c;
    color: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    padding: 0;
}
.single-product__share-link:hover {
    color: #fff;
    background: #111;
    border-color: #111;
}
.single-product__share-link img {
    width: 16px;
    height: 16px;
}
.single-product__share-link:hover img {
    filter: brightness(0) invert(1);
}
.single-product__share-link.is-copied {
    color: #fff;
    background: #2ecc71;
    border-color: #2ecc71;
}

/* Right column */
.single-product__title {
    margin: 0 0 6px;
    font-size: 28px;
    color: #1a1a1a;
    font-weight: 700;
    line-height: 1.3;
}
.single-product__sku {
    margin: 0 0 16px;
    color: #999;
    font-size: 13px;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

/* Price block (shown between SKU and the spec grid) */
.single-product__price {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin: 4px 0 14px;
    padding: 16px 18px;
    background: linear-gradient(135deg, #fff7ec 0%, #fdefda 100%);
    border: 1px solid #f1dcae;
    border-radius: 6px;
}
.single-product__price-label {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #a67b3c;
    font-weight: 600;
}
.single-product__price-value {
    font-size: 30px;
    font-weight: 700;
    color: #c49a6c;
    line-height: 1.1;
    letter-spacing: -0.01em;
}

/* Availability strip (stock + warehouse chips) */
.single-product__availability {
    list-style: none;
    margin: 0 0 22px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.single-product__avail-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
    width: 100%;
    min-width: 0;
}
.single-product__avail-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 500;
    color: #555;
    background: #f5f5f5;
    border: 1px solid #e5e5e5;
    border-radius: 20px;
    line-height: 1.3;
}
.single-product__avail-icon {
    width: 14px;
    height: 14px;
    flex: 0 0 auto;
}
.single-product__avail-key {
    color: #888;
    font-weight: 400;
    margin-right: 2px;
}
.single-product__avail-item--stock.is-in {
    color: #216c3a;
    background: #e7f5ec;
    border-color: #c2e5cf;
}
.single-product__avail-item--stock.is-low {
    color: #8a5a10;
    background: #fef5e3;
    border-color: #f2dcaa;
}
.single-product__avail-item--stock.is-out {
    color: #9a2828;
    background: #fce8e8;
    border-color: #f0c0c0;
}
.single-product__avail-item--stock {
    flex: 0 0 auto;
    white-space: nowrap;
    min-width: 150px;
    justify-content: center;
}
.single-product__avail-item--warehouse {
    color: #34495e;
    background: #eef3f8;
    border-color: #d5e1ed;
    flex: 1;
    min-width: 0;
    overflow: hidden;
}
.single-product__avail-name {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex: 0 0 auto;
    white-space: nowrap;
}
.single-product__avail-address-wrap {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    display: block;
}
.single-product__avail-address {
    display: inline-block;
    white-space: nowrap;
}
.single-product__avail-address.is-overflowing {
    animation: avail-scroll var(--scroll-duration, 6s) ease-in-out infinite alternate;
    animation-delay: 1.5s;
}
@keyframes avail-scroll {
    0%, 20%  { transform: translateX(0); }
    80%, 100% { transform: translateX(var(--scroll-dist, -100px)); }
}

/* Spec fields (3-col grid of labelled read-only inputs) */
.single-product__fields {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px 18px;
    margin: 0 0 24px;
}
.sg-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.sg-field label {
    font-size: 12px;
    font-weight: 600;
    color: #666;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}
.sg-field input {
    width: 100%;
    padding: 9px 12px;
    border: 1px solid #e0e0e0;
    background: #f9f9f9;
    color: #333;
    font-size: 14px;
    font-family: inherit;
    border-radius: 2px;
    outline: none;
    cursor: default;
    user-select: text;
}
.sg-field input[readonly] {
    pointer-events: auto;
    background: #f9f9f9;
}

/* Action row: Manual / Video on the left, Inquiry button on the right */
.single-product__actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin: 0 0 28px;
    padding: 16px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}
.single-product__actions-left {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.single-product__actions-right {
    margin-left: auto;
}
.sg-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    text-decoration: none;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
    line-height: 1.2;
    cursor: pointer;
    border-radius: 3px;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    white-space: nowrap;
}
.sg-btn svg {
    flex-shrink: 0;
}
.sg-btn--lg {
    padding: 12px 28px;
    font-size: 15px;
}
.sg-btn--primary {
    background: #c49a6c;
    color: #fff;
    border: 1px solid #c49a6c;
}
.sg-btn--primary:hover {
    background: #a8824f;
    border-color: #a8824f;
    color: #fff;
}
.sg-btn--outline {
    background: #fff;
    color: #333;
    border: 1px solid #d0d0d0;
}
.sg-btn--outline:hover {
    border-color: #c49a6c;
    color: #c49a6c;
}

/* Selling points + Description shared heading style */
.single-product__selling {
    margin: 0 0 28px;
}
.single-product__selling h3,
.single-product__description h3 {
    font-size: 18px;
    color: #222;
    margin: 0 0 12px;
    font-weight: 700;
    letter-spacing: 0.3px;
    border-left: 3px solid #c49a6c;
    padding-left: 10px;
    line-height: 1.3;
}
.single-product__selling ol {
    margin: 0;
    padding: 0 0 0 22px;
    color: #444;
    line-height: 1.7;
}
.single-product__selling ol li {
    padding: 4px 0;
}

/* Description block now spans the full container below the two-column area */
.single-product__description {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid #eee;
    color: #444;
    line-height: 1.75;
    font-size: 14px;
}
.single-product__description p {
    margin: 0 0 12px;
}
/* Constrain rich-text content from overflowing the container on mobile. */
.single-product__description img,
.single-product__description video,
.single-product__description iframe {
    max-width: 100%;
    height: auto;
    display: block;
}
.single-product__description table {
    display: block;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.single-product__description pre,
.single-product__description code {
    white-space: pre-wrap;
    word-wrap: break-word;
}

@media (max-width: 900px) {
    .single-product__layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .single-product__gallery {
        position: static;
    }
    .single-product__fields {
        grid-template-columns: repeat(2, 1fr);
    }
    .single-product__actions-right {
        margin-left: 0;
        width: 100%;
    }
    .single-product__actions-right .sg-btn {
        width: 100%;
    }
}

/* -------------------------------------------------------------------------
 * Mobile (<= 600px): prevent right-side overflow on narrow viewports.
 * ------------------------------------------------------------------------- */
@media (max-width: 600px) {
    .single-product {
        overflow-x: hidden;
    }
    .single-product__layout,
    .single-product__gallery,
    .single-product__body {
        min-width: 0;
    }
    .single-product__title {
        font-size: 22px;
        word-wrap: break-word;
        overflow-wrap: anywhere;
    }
    .single-product__sku {
        word-wrap: break-word;
        overflow-wrap: anywhere;
    }
    .single-product__price {
        padding: 12px 14px;
    }
    .single-product__price-value {
        font-size: 24px;
    }
    /* Stock + warehouse stack vertically so a long warehouse name can't
       push past the right edge. */
    .single-product__avail-row {
        flex-wrap: wrap;
        gap: 6px;
    }
    .single-product__avail-item--stock {
        min-width: 0;
        width: 100%;
        justify-content: flex-start;
    }
    .single-product__avail-item--warehouse {
        width: 100%;
        flex: 1 1 100%;
    }
    /* Variant option buttons may have long labels — let them wrap. */
    .sg-variants__btn {
        max-width: 100%;
        white-space: normal;
        word-break: break-word;
    }
    /* Action buttons go full-width to avoid two cramped buttons spilling out. */
    .single-product__actions {
        flex-direction: column;
        align-items: stretch;
    }
    .single-product__actions-left {
        width: 100%;
    }
    .single-product__actions-left .sg-btn {
        flex: 1 1 100%;
        width: 100%;
        justify-content: center;
    }
    .sg-btn {
        white-space: normal;
    }
}

@media (max-width: 480px) {
    .products-container {
        padding-left: 16px;
        padding-right: 16px;
    }
    .single-product__thumbs {
        grid-template-columns: repeat(4, 1fr);
    }
    .single-product__fields {
        grid-template-columns: 1fr;
    }
    .single-product__actions-left .sg-btn {
        flex: 1 1 100%;
        justify-content: center;
    }
}

/* -------------------------------------------------------------------------
 * Modals (shared by Inquiry form + Video lightbox)
 * ------------------------------------------------------------------------- */
body.sg-modal-open {
    overflow: hidden;
}
.sg-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.sg-modal[hidden] {
    display: none;
}
.sg-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    cursor: pointer;
    animation: sg-fade-in 0.2s ease;
}
.sg-modal__dialog {
    position: relative;
    background: #fff;
    width: 100%;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: sg-pop-in 0.2s ease;
}
.sg-modal__dialog--form {
    max-width: 560px;
    padding: 32px;
}
.sg-modal__dialog--video {
    max-width: 960px;
    background: #000;
    overflow: visible;
}
.sg-modal__close {
    position: absolute;
    top: 10px;
    right: 14px;
    width: 36px;
    height: 36px;
    border: none;
    background: transparent;
    color: #666;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    z-index: 2;
    border-radius: 50%;
    transition: background 0.2s ease, color 0.2s ease;
}
.sg-modal__dialog--video .sg-modal__close {
    color: #fff;
    top: -44px;
    right: 0;
}
.sg-modal__close:hover {
    background: rgba(0, 0, 0, 0.05);
    color: #222;
}
.sg-modal__header {
    margin-bottom: 20px;
}
.sg-modal__header h3 {
    margin: 0 0 6px;
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
}
.sg-modal__header p {
    margin: 0;
    color: #666;
    font-size: 13px;
}

/* Inquiry form fields */
.sg-inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.sg-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.sg-inquiry-form label {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #444;
    letter-spacing: 0.2px;
}
.sg-inquiry-form label .req {
    color: #c0392b;
    font-weight: 400;
}
.sg-inquiry-form input[type=text],
.sg-inquiry-form input[type=email],
.sg-inquiry-form input[type=tel],
.sg-inquiry-form textarea {
    padding: 10px 12px;
    border: 1px solid #d8d8d8;
    border-radius: 3px;
    font-size: 14px;
    font-family: inherit;
    color: #222;
    background: #fff;
    width: 100%;
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.2s ease;
}
.sg-inquiry-form input:focus,
.sg-inquiry-form textarea:focus {
    border-color: #c49a6c;
}
.sg-inquiry-form input[readonly] {
    background: #fafafa;
    color: #555;
}
.sg-inquiry-form textarea {
    resize: vertical;
    min-height: 110px;
}
.sg-inquiry-form__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 4px;
    flex-wrap: wrap;
}
.sg-form-feedback {
    margin: 0;
    font-size: 13px;
    color: #666;
    flex: 1 1 auto;
    min-height: 18px;
}
.sg-form-feedback.is-success {
    color: #1e7e34;
}
.sg-form-feedback.is-error {
    color: #c0392b;
}
@media (max-width: 560px) {
    .sg-form-row {
        grid-template-columns: 1fr;
    }
    .sg-modal__dialog--form {
        padding: 24px 20px;
    }
}

/* Video lightbox iframe wrapper */
.sg-video-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
}
.sg-video-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

@keyframes sg-fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes sg-pop-in {
    from { opacity: 0; transform: translateY(12px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* -------------------------------------------------------------------------
 * Skeleton-shimmer lazy-loaded images
 *
 * Add `.sg-lazy-wrap` to an element that directly contains one <img>. A
 * shimmer gradient is rendered via `::before` so it coexists with any
 * existing `background` color on the element. When `.is-loaded` is toggled
 * (by assets/js/lazy.js on the image `load` event) the shimmer fades out
 * and the image fades in.
 * ------------------------------------------------------------------------- */
.sg-lazy-wrap {
    position: relative;
}
.sg-lazy-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(230, 230, 230, 1) 0%,
        rgba(245, 245, 245, 1) 50%,
        rgba(230, 230, 230, 1) 100%
    );
    background-size: 200% 100%;
    animation: sg-skeleton-shimmer 1.5s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}
.sg-lazy-wrap.is-loaded::before {
    opacity: 0;
    animation: none;
}
.sg-lazy-wrap > img,
.sg-lazy-wrap > a > img,
.sg-lazy-wrap > button > img {
    position: relative;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.sg-lazy-wrap.is-loaded > img,
.sg-lazy-wrap.is-loaded > a > img,
.sg-lazy-wrap.is-loaded > button > img {
    opacity: 1;
}

@keyframes sg-skeleton-shimmer {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* `.product-img` positions its <img> absolutely inside a padding-top box —
 * the generic `> img` selectors above don't match it, so target directly. */
.product-img.sg-lazy-wrap img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.5s ease;
    z-index: 1;
}
.product-img.sg-lazy-wrap.is-loaded img {
    opacity: 1;
}

/* -------------------------------------------------------------------------
 * AJAX product grid — skeleton cards + loading state
 * ------------------------------------------------------------------------- */
.products-grid-area {
    position: relative;
    min-height: 300px;
}
.products-grid-area.is-loading {
    pointer-events: none;
}
.products-grid-area .products-pagination[data-sg-hidden] {
    opacity: 0.4;
}
.product-card--skeleton {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    background: #fff;
}
.product-card--skeleton .product-img {
    position: relative;
    width: 100%;
    padding-top: 66.66%;
    background: #f5f5f5;
    overflow: hidden;
    margin-bottom: 15px;
}
.product-card--skeleton .product-info {
    padding: 14px 4px 4px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.sg-skeleton-line {
    position: relative;
    height: 14px;
    border-radius: 3px;
    background: #ececec;
    overflow: hidden;
}
.sg-skeleton-line::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.55) 50%,
        transparent 100%
    );
    background-size: 200% 100%;
    animation: sg-skeleton-shimmer 1.5s ease-in-out infinite;
}
.sg-skeleton-line--title {
    height: 16px;
    width: 72%;
}
.sg-skeleton-line--sku {
    height: 11px;
    width: 35%;
}

/* -------------------------------------------------------------------------
 * Products pagination
 * ------------------------------------------------------------------------- */
.products-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 40px;
    padding: 20px 0;
}

.products-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    color: #555;
    text-decoration: none;
    background: #fff;
    transition: all 0.2s ease;
    cursor: pointer;
}

.products-pagination .page-numbers:hover {
    background: #f5f5f5;
    border-color: #bbb;
    color: #333;
}

.products-pagination .page-numbers.current {
    background: #c78a2e;
    border-color: #c78a2e;
    color: #fff;
    pointer-events: none;
}

.products-pagination .page-numbers.prev,
.products-pagination .page-numbers.next {
    font-size: 16px;
    font-weight: 700;
}

.products-pagination .page-numbers.dots {
    border: none;
    background: transparent;
    pointer-events: none;
    min-width: 30px;
    padding: 0;
    color: #999;
}

.products-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: #777;
    font-size: 15px;
    background: #fafafa;
    border: 1px dashed #e0e0e0;
    border-radius: 4px;
}

