﻿/* =========================================================
   Product Category Page
   Brand Color: #e66b2e
========================================================= */

.egoo-product-catalog-section {
    width: 100%;
}

.egoo-product-menu-box {
    width: 1360px;
    max-width: calc(100% - 40px);
    display: flex;
    align-items: flex-start;
    gap: 28px;
    margin: 0 auto;
    padding: 42px 0 68px;
    overflow: visible;
}

.egoo-product-menu-box-left,
.egoo-product-menu-box-right {
    float: none !important;
}

/* =========================================================
   Left Category Navigation
========================================================= */

.egoo-product-menu-box-left {
    position: sticky;
    top: 100px;
    z-index: 5;
    width: 306px;
    flex: 0 0 306px;
    padding: 22px 18px 18px;
    border: 1px solid #f1d8ca;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(230, 107, 46, 0.08);
}

    .egoo-product-menu-box-left h2 {
        position: relative;
        margin: 0 0 8px;
        padding-left: 14px;
        color: #1f2937;
        font-size: 18px;
        line-height: 32px;
        font-weight: 700;
    }

        .egoo-product-menu-box-left h2::before {
            content: "";
            position: absolute;
            top: 8px;
            left: 0;
            width: 4px;
            height: 17px;
            border-radius: 4px;
            background: #e66b2e;
        }

.egoo-product-menu-intro {
    margin: 0 0 17px;
    color: #667085;
    font-size: 14px;
    line-height: 1.7;
}

/* =========================================================
   Category Search
========================================================= */

.egoo-product-menu-box-left-search {
    width: 100%;
    height: 42px;
    display: flex;
    margin-bottom: 16px;
    position: relative;
    overflow: visible;
    border: 1px solid #f1d8ca;
    border-radius: 21px;
    background: #fffaf7;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

    .egoo-product-menu-box-left-search:focus-within {
        border-color: #e66b2e;
        background: #ffffff;
        box-shadow: 0 0 0 3px rgba(230, 107, 46, 0.10);
    }

    .egoo-product-menu-box-left-search input {
        width: calc(100% - 44px);
        height: 42px;
        padding: 0 15px;
        border: 0;
        outline: 0;
        background: transparent;
        color: #374151;
        font-size: 14px;
        line-height: 42px;
    }

        .egoo-product-menu-box-left-search input::placeholder {
            color: #9ca3af;
        }

    .egoo-product-menu-box-left-search button {
        width: 44px;
        height: 42px;
        flex: 0 0 44px;
        border: 0;
        border-radius: 0 21px 21px 0;
        background: #e66b2e;
        color: #ffffff;
        font-size: 16px;
        cursor: pointer;
        transition: background-color 0.25s ease, color 0.25s ease;
    }

        .egoo-product-menu-box-left-search button:hover {
            background: #e66b2e;
            color: #ffffff;
        }

.egoo-product-search-results {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 7px);
    z-index: 50;
    display: none;
    max-height: 360px;
    overflow-x: hidden;
    overflow-y: auto;
    border: 1px solid #f1d8ca;
    border-radius: 9px;
    background: #fff;
    box-shadow: 0 16px 34px rgba(230, 107, 46, .14);
}

    .egoo-product-search-results.egoo-show {
        display: block;
    }

.egoo-product-search-result {
    width: 100%;
    min-height: 52px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-bottom: 1px solid #eeeeee;
    color: #374151;
    text-decoration: none;
    background: #fff;
}

    .egoo-product-search-result:last-child {
        border-bottom: 0;
    }

    .egoo-product-search-result:hover {
        background: #fff7f2;
        color: #e66b2e;
    }

    .egoo-product-search-result span {
        min-width: 0;
    }

    .egoo-product-search-result strong {
        display: block;
        overflow: hidden;
        color: inherit;
        font-size: 14px;
        line-height: 21px;
        font-weight: 600;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .egoo-product-search-result em {
        display: block;
        margin-top: 2px;
        color: #8b929c;
        font-size: 14px;
        line-height: 20px;
        font-style: normal;
    }

    .egoo-product-search-result i {
        flex-shrink: 0;
        color: #e66b2e;
        font-size: 14px;
    }

.egoo-product-search-empty {
    padding: 14px 12px;
    color: #7b8189;
    font-size: 14px;
    line-height: 21px;
    text-align: center;
}


/* =========================================================
   Left Category List
========================================================= */

.egoo-product-menu-box-left ul {
    width: 100%;
    max-height: 610px;
    margin: 0;
    padding: 0 5px 0 0;
    overflow-x: hidden;
    overflow-y: auto;
    list-style: none;
}

    .egoo-product-menu-box-left ul li {
        width: 100%;
        margin: 0 0 7px;
        padding: 0;
    }

        .egoo-product-menu-box-left ul li:last-child {
            margin-bottom: 0;
        }

        .egoo-product-menu-box-left ul li a {
            position: relative;
            display: block;
            width: 100%;
            min-height: 38px;
            padding: 8px 12px 8px 21px;
            overflow: hidden;
            border: 1px solid #eeeeee;
            border-radius: 9px;
            background: #fffaf7;
            color: #374151;
            font-size: 14px;
            line-height: 21px;
            text-decoration: none;
            transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
        }

            .egoo-product-menu-box-left ul li a::before {
                content: "";
                position: absolute;
                top: 17px;
                left: 10px;
                width: 4px;
                height: 4px;
                border-radius: 50%;
                background: #e66b2e;
                transition: background-color 0.25s ease, transform 0.25s ease;
            }

            .egoo-product-menu-box-left ul li a:hover,
            .egoo-product-menu-box-left ul li a.egoo-active {
                border-color: transparent;
                background: #e66b2e;
                color: #ffffff;
                box-shadow: 0 10px 22px rgba(230, 107, 46, 0.19);
                transform: translateX(3px);
            }

                .egoo-product-menu-box-left ul li a:hover::before,
                .egoo-product-menu-box-left ul li a.egoo-active::before {
                    background: #e66b2e;
                    transform: scale(1.2);
                }

    .egoo-product-menu-box-left ul::-webkit-scrollbar {
        width: 5px;
    }

    .egoo-product-menu-box-left ul::-webkit-scrollbar-track {
        border-radius: 10px;
        background: #f2f2f2;
    }

    .egoo-product-menu-box-left ul::-webkit-scrollbar-thumb {
        border-radius: 10px;
        background: #e66b2e;
    }

        .egoo-product-menu-box-left ul::-webkit-scrollbar-thumb:hover {
            background: #e66b2e;
        }

/* =========================================================
   Right Category Content
========================================================= */

.egoo-product-menu-box-right {
    flex: 1;
    min-width: 0;
}

    .egoo-product-category-section,
    .egoo-product-menu-box-right dl {
        width: 100%;
        margin: 0 0 28px;
        padding: 0;
        overflow: hidden;
        border: 1px solid #f1d8ca;
        border-radius: 15px;
        background: #ffffff;
        box-shadow: 0 12px 30px rgba(230, 107, 46, 0.06);
        scroll-margin-top: 115px;
        transition: border-color 0.25s ease, box-shadow 0.25s ease;
    }

        .egoo-product-category-section:last-child,
        .egoo-product-menu-box-right dl:last-child {
            margin-bottom: 0;
        }

        .egoo-product-category-section:hover,
        .egoo-product-menu-box-right dl:hover {
            border-color: rgba(230, 107, 46, 0.24);
            box-shadow: 0 18px 40px rgba(230, 107, 46, 0.1);
        }

        /* =========================================================
   Primary Category Title
========================================================= */

        .egoo-product-category-title,
        .egoo-product-menu-box-right dl dt {
            position: relative;
            width: 100%;
            margin: 0;
            padding: 14px 22px;
            border-bottom: 1px solid #ececec;
            background: linear-gradient(180deg, #fafafa 0%, #f5f5f5 100%);
        }

            .egoo-product-category-title a,
            .egoo-product-menu-box-right dl dt a {
                position: relative;
                display: inline-flex;
                align-items: center;
                min-height: 28px;
                padding-left: 14px;
                color: #1f2937;
                font-size: 18px;
                line-height: 28px;
                font-weight: 700;
                text-decoration: none;
                transition: color 0.25s ease;
            }

                .egoo-product-category-title a::before,
                .egoo-product-menu-box-right dl dt a::before {
                    content: "";
                    position: absolute;
                    top: 5px;
                    left: 0;
                    width: 4px;
                    height: 18px;
                    border-radius: 4px;
                    background: #e66b2e;
                }

                .egoo-product-category-title a::after,
                .egoo-product-menu-box-right dl dt a::after {
                    content: "\f105";
                    margin-left: 9px;
                    color: #e66b2e;
                    font-family: FontAwesome;
                    font-size: 17px;
                    font-weight: normal;
                }

                .egoo-product-category-title a:hover,
                .egoo-product-menu-box-right dl dt a:hover {
                    color: #e66b2e;
                }

        /* =========================================================
   Category Content
========================================================= */

        .egoo-product-category-content,
        .egoo-product-menu-box-right dl dd {
            width: 100%;
            margin: 0;
            padding: 0;
        }

/* =========================================================
   Secondary Category Rows
========================================================= */

.egoo-product-subcategory-row {
    width: 100%;
    margin: 0;
    padding: 17px 22px 16px;
    border-bottom: 1px solid #eeeeee;
    background: #ffffff;
    transition: background-color 0.25s ease;
}

    .egoo-product-subcategory-row:last-child {
        border-bottom: 0;
    }

    .egoo-product-subcategory-row:hover {
        background: #fffaf7;
    }

.egoo-product-subcategory-head {
    width: 100%;
    margin: 0 0 12px;
}

/* =========================================================
   Secondary Category Block Title
========================================================= */

.egoo-product-subcategory-name {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    max-width: 100%;
    padding: 5px 13px 5px 24px;
    border: 1px solid #f1d8ca;
    border-radius: 7px;
    background: #fff7f2;
    color: #e66b2e;
    font-size: 16px;
    line-height: 21px;
    font-weight: 700;
    text-decoration: none;
    word-break: break-word;
    transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

    .egoo-product-subcategory-name::before {
        content: "";
        position: absolute;
        top: 7px;
        bottom: 7px;
        left: 10px;
        width: 4px;
        border-radius: 4px;
        background: #e66b2e;
    }

    .egoo-product-subcategory-name::after {
        content: "\f105";
        margin-left: 8px;
        font-family: FontAwesome;
        font-size: 13px;
        font-weight: normal;
    }

    .egoo-product-subcategory-name:hover {
        border-color: #e66b2e;
        background: #e66b2e;
        color: #ffffff;
        box-shadow: 0 8px 18px rgba(230, 107, 46, 0.15);
    }

/* =========================================================
   Child Category Links
========================================================= */

.egoo-product-subcategory-body {
    width: 100%;
}

.egoo-product-subcategory-links {
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    column-count: 3;
    column-gap: 42px;
}

    .egoo-product-subcategory-links li {
        position: relative;
        display: block;
        margin: 0 0 7px;
        padding: 0 0 0 14px;
        break-inside: avoid;
        -webkit-column-break-inside: avoid;
        page-break-inside: avoid;
    }

        .egoo-product-subcategory-links li::before {
            content: "";
            position: absolute;
            top: 9px;
            left: 0;
            width: 4px;
            height: 4px;
            border-radius: 50%;
            background: #e66b2e;
        }

        .egoo-product-subcategory-links li a {
            display: inline;
            color: #4b5563;
            font-size: 14px;
            line-height: 21px;
            text-decoration: none;
            word-break: break-word;
            transition: color 0.25s ease;
        }

            .egoo-product-subcategory-links li a:hover {
                color: #e66b2e;
            }

/* =========================================================
   Compatibility With Previous Menu Structure
========================================================= */

.egoo-product-menu-box-simple {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px 16px;
    margin: 18px 22px;
}

    .egoo-product-menu-box-simple a {
        position: relative;
        min-height: 36px;
        display: flex;
        align-items: center;
        padding: 7px 12px 7px 24px;
        border: 1px solid #ececec;
        border-radius: 7px;
        background: #fffaf7;
        color: #4b5563;
        font-size: 14px;
        line-height: 20px;
        text-decoration: none;
        transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
    }

        .egoo-product-menu-box-simple a::before {
            content: "";
            position: absolute;
            top: 50%;
            left: 12px;
            width: 4px;
            height: 4px;
            border-radius: 50%;
            background: #e66b2e;
            transform: translateY(-50%);
        }

        .egoo-product-menu-box-simple a:hover {
            border-color: #e66b2e;
            background: #e66b2e;
            color: #ffffff;
        }

.egoo-product-menu-box-groups {
    display: block;
    width: 100%;
}

.egoo-product-menu-box-item {
    width: 100%;
    padding: 17px 22px 16px;
    border-bottom: 1px solid #eeeeee;
}

    .egoo-product-menu-box-item:last-child {
        border-bottom: 0;
    }

    .egoo-product-menu-box-item .group-title,
    .egoo-product-menu-box-item > a {
        position: relative;
        display: inline-flex;
        align-items: center;
        min-height: 32px;
        margin: 0 0 12px;
        padding: 5px 13px 5px 24px;
        border: 1px solid #f1d8ca;
        border-radius: 7px;
        background: #fff7f2;
        color: #e66b2e;
        font-size: 16px;
        line-height: 21px;
        font-weight: 700;
        text-decoration: none;
    }

        .egoo-product-menu-box-item .group-title::before,
        .egoo-product-menu-box-item > a::before {
            content: "";
            position: absolute;
            top: 7px;
            bottom: 7px;
            left: 10px;
            width: 4px;
            border-radius: 4px;
            background: #e66b2e;
        }

    .egoo-product-menu-box-item > ul {
        width: 100%;
        margin: 0;
        padding: 0;
        list-style: none;
        column-count: 3;
        column-gap: 42px;
    }

        .egoo-product-menu-box-item > ul > li {
            position: relative;
            margin: 0 0 7px;
            padding-left: 14px;
            break-inside: avoid;
        }

            .egoo-product-menu-box-item > ul > li::before {
                content: "";
                position: absolute;
                top: 9px;
                left: 0;
                width: 4px;
                height: 4px;
                border-radius: 50%;
                background: #e66b2e;
            }

            .egoo-product-menu-box-item > ul > li > a {
                color: #4b5563;
                font-size: 14px;
                line-height: 21px;
                text-decoration: none;
            }

                .egoo-product-menu-box-item > ul > li > a:hover {
                    color: #e66b2e;
                }

    .egoo-product-menu-box-item ul li ul.sub-list,
    .egoo-product-menu-box-item ul li ul {
        margin: 6px 0 0;
        padding: 0 0 0 10px;
        list-style: none;
    }

        .egoo-product-menu-box-item ul li ul li {
            position: relative;
            margin-bottom: 5px;
            padding-left: 11px;
        }

            .egoo-product-menu-box-item ul li ul li::before {
                content: "";
                position: absolute;
                top: 9px;
                left: 0;
                width: 3px;
                height: 3px;
                border-radius: 50%;
                background: #c9c9c9;
            }

            .egoo-product-menu-box-item ul li ul li a {
                color: #6b7280;
                font-size: 13px;
                line-height: 20px;
                text-decoration: none;
            }

                .egoo-product-menu-box-item ul li ul li a:hover {
                    color: #e66b2e;
                }

/* =========================================================
   Empty State
========================================================= */

.egoo-product-category-empty {
    padding: 30px 20px;
    color: #8b929c;
    font-size: 14px;
    line-height: 22px;
    text-align: center;
}

/* =========================================================
   Product Sourcing CTA
========================================================= */

.egoo-product-catalog-cta {
    width: 100%;
    padding: 50px 0;
}

.egoo-product-catalog-cta-inner {
    position: relative;
    width: 100%;
    min-height: 230px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 46px;
    padding: 42px 48px;
    overflow: hidden;
    border: 1px solid #f1d8ca;
    border-radius: 22px;
    background: linear-gradient(135deg, #fffaf7 0%, #ffffff 55%, #fff8f4 100%);
    box-shadow: 0 18px 46px rgba(230, 107, 46, 0.1);
}

    .egoo-product-catalog-cta-inner::before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        height: 6px;
        background: #e66b2e;
    }

    .egoo-product-catalog-cta-inner::after {
        content: "";
        position: absolute;
        right: -95px;
        bottom: -130px;
        width: 300px;
        height: 300px;
        border-radius: 50%;
        background: rgba(230, 107, 46, 0.05);
    }

.egoo-product-catalog-cta-text {
    position: relative;
    z-index: 2;
    flex: 1;
    min-width: 0;
    max-width: 830px;
}

    .egoo-product-catalog-cta-text > span {
        display: inline-flex;
        align-items: center;
        min-height: 30px;
        margin-bottom: 13px;
        padding: 5px 14px;
        border: 1px solid rgba(230, 107, 46, 0.42);
        border-radius: 999px;
        background: #fff8f4;
        color: #e66b2e;
        font-size: 12px;
        line-height: 20px;
        font-weight: 700;
        letter-spacing: 1.2px;
    }

    .egoo-product-catalog-cta-text h2 {
        margin: 0 0 14px;
        color: #111827;
        font-size: 30px;
        line-height: 1.4;
        font-weight: 800;
    }

    .egoo-product-catalog-cta-text p {
        margin: 0;
        color: #6b7280;
        font-size: 15px;
        line-height: 1.85;
    }

.egoo-product-catalog-cta-actions {
    position: relative;
    z-index: 2;
    width: 250px;
    flex: 0 0 250px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.egoo-product-catalog-cta-primary,
.egoo-product-catalog-cta-secondary {
    width: 100%;
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 15px;
    line-height: 24px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.egoo-product-catalog-cta-primary {
    border: 1px solid #e66b2e;
    background: #e66b2e;
    color: #ffffff;
    box-shadow: 0 12px 26px rgba(230, 107, 46, 0.25);
}

    .egoo-product-catalog-cta-primary:hover {
        border-color: #e66b2e;
        background: #e66b2e;
        color: #ffffff;
        box-shadow: 0 14px 28px rgba(230, 107, 46, 0.22);
        transform: translateY(-2px);
    }

.egoo-product-catalog-cta-secondary {
    border: 1px solid #dddddd;
    background: #ffffff;
    color: #e66b2e;
}

    .egoo-product-catalog-cta-secondary:hover {
        border-color: #e66b2e;
        background: #f7f7f7;
        color: #e66b2e;
        box-shadow: 0 10px 22px rgba(230, 107, 46, 0.1);
        transform: translateY(-2px);
    }

    .egoo-product-catalog-cta-primary i,
    .egoo-product-catalog-cta-secondary i {
        font-size: 16px;
    }

/* =========================================================
   Tablet Layout
========================================================= */

@media (max-width: 1180px) {
    .egoo-product-menu-box {
        gap: 22px;
    }

    .egoo-product-menu-box-left {
        width: 270px;
        flex-basis: 270px;
    }

    .egoo-product-subcategory-links,
    .egoo-product-menu-box-item > ul {
        column-count: 2;
        column-gap: 32px;
    }

    .egoo-product-menu-box-simple {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* =========================================================
   Mobile Layout
========================================================= */

@media (max-width: 768px) {
    .egoo-product-menu-box {
        width: 94%;
        max-width: none;
        display: block;
        padding: 28px 0 42px;
    }

    .egoo-product-menu-box-left,
    .egoo-product-menu-box-right {
        width: 100%;
    }

    .egoo-product-menu-box-left {
        position: static;
        margin-bottom: 18px;
        padding: 18px 15px;
        border-radius: 12px;
    }

        .egoo-product-menu-box-left h2 {
            margin-bottom: 7px;
            font-size: 19px;
            line-height: 29px;
        }

    .egoo-product-menu-intro {
        margin-bottom: 14px;
        font-size: 14px;
        line-height: 1.65;
    }

    .egoo-product-menu-box-left-search {
        height: 40px;
        margin-bottom: 14px;
    }

        .egoo-product-menu-box-left-search input,
        .egoo-product-menu-box-left-search button {
            height: 40px;
        }

        .egoo-product-menu-box-left-search button {
            border-radius: 0 20px 20px 0;
        }

        .egoo-product-menu-box-left-search input {
            font-size: 14px;
            line-height: 40px;
        }

    .egoo-product-search-results {
        max-height: 280px;
    }

    .egoo-product-menu-box-left ul {
        max-height: 230px;
    }

        .egoo-product-menu-box-left ul li {
            margin-bottom: 6px;
        }

            .egoo-product-menu-box-left ul li a {
                min-height: 36px;
                padding: 7px 10px 7px 19px;
                font-size: 14px;
                line-height: 20px;
            }

                .egoo-product-menu-box-left ul li a::before {
                    top: 15px;
                    left: 8px;
                }

                .egoo-product-menu-box-left ul li a:hover,
                .egoo-product-menu-box-left ul li a.egoo-active {
                    transform: none;
                }

    .egoo-product-category-section,
    .egoo-product-menu-box-right dl {
        margin-bottom: 18px;
        border-radius: 10px;
    }

        .egoo-product-category-title,
        .egoo-product-menu-box-right dl dt {
            padding: 13px 15px;
        }

            .egoo-product-category-title a,
            .egoo-product-menu-box-right dl dt a {
                min-height: 26px;
                padding-left: 12px;
                font-size: 19px;
                line-height: 26px;
            }

                .egoo-product-category-title a::before,
                .egoo-product-menu-box-right dl dt a::before {
                    top: 5px;
                    height: 16px;
                }

    .egoo-product-subcategory-row,
    .egoo-product-menu-box-item {
        padding: 14px 15px 13px;
    }

    .egoo-product-subcategory-head {
        margin-bottom: 10px;
    }

    .egoo-product-subcategory-name,
    .egoo-product-menu-box-item .group-title,
    .egoo-product-menu-box-item > a {
        min-height: 30px;
        margin-bottom: 10px;
        padding: 4px 11px 4px 22px;
        font-size: 15px;
        line-height: 20px;
    }

        .egoo-product-subcategory-name::before,
        .egoo-product-menu-box-item .group-title::before,
        .egoo-product-menu-box-item > a::before {
            left: 9px;
        }

    .egoo-product-subcategory-links,
    .egoo-product-menu-box-item > ul {
        column-count: 1;
        column-gap: 0;
    }

        .egoo-product-subcategory-links li,
        .egoo-product-menu-box-item > ul > li {
            margin-bottom: 6px;
        }

            .egoo-product-subcategory-links li a,
            .egoo-product-menu-box-item > ul > li > a {
                font-size: 14px;
                line-height: 21px;
            }

    .egoo-product-menu-box-simple {
        grid-template-columns: 1fr;
        margin: 14px 15px;
        gap: 8px;
    }

    .egoo-product-catalog-cta {
        padding: 0 0 46px;
    }

    .egoo-product-catalog-cta-inner {
        min-height: 0;
        display: block;
        padding: 34px 20px 26px;
        border-radius: 17px;
    }

    .egoo-product-catalog-cta-text > span {
        min-height: 28px;
        margin-bottom: 11px;
        padding: 4px 11px;
        font-size: 11px;
        line-height: 18px;
        letter-spacing: 0.9px;
    }

    .egoo-product-catalog-cta-text h2 {
        margin-bottom: 12px;
        font-size: 23px;
        line-height: 1.45;
    }

    .egoo-product-catalog-cta-text p {
        font-size: 14px;
        line-height: 1.8;
    }

    .egoo-product-catalog-cta-actions {
        width: 100%;
        margin-top: 24px;
    }

    .egoo-product-catalog-cta-primary,
    .egoo-product-catalog-cta-secondary {
        min-height: 48px;
        padding: 11px 16px;
        font-size: 14px;
    }

        .egoo-product-catalog-cta-primary:hover,
        .egoo-product-catalog-cta-secondary:hover {
            transform: none;
        }
}
/* =========================================================
   EGOO accent
========================================================= */

.egoo-product-menu-box-left h2::before {
    background: #e66b2e;
}

.egoo-product-menu-box-left ul li a::before {
    background: #e66b2e;
}

.egoo-product-search-result i {
    color: #e66b2e;
}

.egoo-product-catalog-cta-text > span {
    color: #e66b2e;
}

.egoo-product-catalog-cta-inner {
    border-left: 4px solid #e66b2e;
}

.egoo-product-catalog-cta-primary {
    border-color: #e66b2e;
    background: #e66b2e;
    box-shadow: 0 12px 26px rgba(230, 107, 46, .22);
}

    .egoo-product-catalog-cta-primary:hover {
        border-color: #e66b2e;
        background: #e66b2e;
        box-shadow: 0 14px 28px rgba(230, 107, 46, .20);
    }

.egoo-product-subcategory-row:hover {
    border-color: #f1d8ca;
}
