/* =========================================================
   THE HERB HUT - HOMEPAGE REDESIGN
   ========================================================= */


/* =========================================================
   1. HIDE OLD LEFT SIDEBAR
   ========================================================= */

#left {
    display: none !important;
}


/* =========================================================
   2. SHOP BY COLLECTION - MAIN CONTAINER
   ========================================================= */

.hh-collections {
    width: 100% !important;
    max-width: 1180px !important;
    margin: 45px auto 55px auto !important;
    padding: 0 20px !important;
    box-sizing: border-box !important;
}


/* =========================================================
   3. SECTION HEADING
   ========================================================= */

.hh-collections-heading {
    width: 100% !important;
    margin: 0 0 32px 0 !important;
    text-align: center !important;
}

.hh-collections-heading h2 {
    margin: 0 !important;
    padding: 0 !important;

    color: #123D32 !important;

    font-family: Georgia, "Times New Roman", serif !important;
    font-size: 34px !important;
    font-weight: 500 !important;
    line-height: 1.2 !important;
}

.hh-collections-heading h2:after {
    content: "" !important;

    display: block !important;

    width: 60px !important;
    height: 2px !important;

    margin: 13px auto 0 auto !important;

    background: #B8944F !important;
}

.hh-collections-heading p {
    max-width: 700px !important;

    margin: 14px auto 0 auto !important;
    padding: 0 !important;

    color: #555555 !important;

    font-size: 15px !important;
    font-weight: 400 !important;
    line-height: 1.6 !important;
}


/* =========================================================
   4. COLLECTION GRID
   ========================================================= */

.hh-collection-grid {
    display: grid !important;

    width: 100% !important;

    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;

    gap: 22px !important;

    margin: 0 !important;
    padding: 0 !important;
}


/* =========================================================
   5. COLLECTION CARD
   ========================================================= */

.hh-collection-card {
    display: block !important;

    width: 100% !important;
    min-width: 0 !important;

    margin: 0 !important;
    padding: 0 !important;

    box-sizing: border-box !important;

    overflow: hidden !important;

    background: #FFFFFF !important;

    border: 1px solid #E5E0D8 !important;
    border-radius: 5px !important;

    text-decoration: none !important;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease !important;
}

.hh-collection-card:hover {
    transform: translateY(-4px) !important;

    border-color: #D1C3AA !important;

    box-shadow: 0 10px 26px rgba(18, 61, 50, 0.10) !important;
}


/* =========================================================
   6. CATEGORY IMAGE
   ========================================================= */

.hh-collection-image {
    display: block !important;

    width: 100% !important;
    height: 210px !important;

    margin: 0 !important;
    padding: 0 !important;

    object-fit: cover !important;
}


/* =========================================================
   7. CARD CONTENT
   ========================================================= */

.hh-card-content {
    display: block !important;

    width: 100% !important;

    margin: 0 !important;
    padding: 23px 18px 25px 18px !important;

    box-sizing: border-box !important;

    text-align: center !important;
}

.hh-card-content h3 {
    margin: 0 0 10px 0 !important;
    padding: 0 !important;

    color: #123D32 !important;

    font-family: Georgia, "Times New Roman", serif !important;
    font-size: 21px !important;
    font-weight: 500 !important;

    line-height: 1.3 !important;
}

.hh-card-content p {
    margin: 0 0 18px 0 !important;
    padding: 0 !important;

    color: #555555 !important;

    font-size: 14px !important;
    font-weight: 400 !important;

    line-height: 1.5 !important;
}


/* =========================================================
   8. SHOP NOW BUTTON
   ========================================================= */

.hh-card-content span {
    display: inline-block !important;

    margin: 0 !important;
    padding: 10px 21px !important;

    box-sizing: border-box !important;

    background: #123D32 !important;
    color: #FFFFFF !important;

    border-radius: 2px !important;

    font-size: 11px !important;
    font-weight: 600 !important;

    letter-spacing: 0.7px !important;
    line-height: 1.3 !important;

    text-transform: uppercase !important;

    transition: background 0.2s ease !important;
}

.hh-collection-card:hover .hh-card-content span {
    background: #1D5546 !important;
}


/* =========================================================
   9. TABLET
   ========================================================= */

@media (max-width: 900px) {

    .hh-collections {
        max-width: 760px !important;
        padding: 0 16px !important;
        margin-top: 38px !important;
        margin-bottom: 48px !important;
    }

    .hh-collections-heading h2 {
        font-size: 31px !important;
    }

    .hh-collection-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 18px !important;
    }

    .hh-collection-image {
        height: 220px !important;
    }

}


/* =========================================================
   10. MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .hh-collections {
        width: 100% !important;
        max-width: none !important;

        margin: 30px auto 40px auto !important;

        padding: 0 12px !important;
    }

    .hh-collections-heading {
        margin-bottom: 24px !important;
    }

    .hh-collections-heading h2 {
        font-size: 28px !important;
    }

    .hh-collections-heading p {
        font-size: 14px !important;
        line-height: 1.5 !important;
    }

    .hh-collection-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    .hh-collection-image {
        width: 100% !important;
        height: 230px !important;
    }

    .hh-card-content {
        padding: 21px 17px 23px 17px !important;
    }

    .hh-card-content h3 {
        font-size: 21px !important;
    }

    .hh-card-content p {
        font-size: 14px !important;
    }

}/* =========================================================
   THE HERB HUT - WEBSITE REDESIGN
   CLEAN VERSION
   ========================================================= */


/* =========================================================
   1. REMOVE OLD LEFT SIDEBAR
   ========================================================= */

#left {
    display: none !important;
}


/* =========================================================
   2. EXPAND MAIN CONTENT AREA
   ========================================================= */

#main_inner {
    display: flex !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
}

#right {
    width: 100% !important;
    max-width: 100% !important;
    flex: 1 1 auto !important;
    float: none !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
}


/* =========================================================
   3. HERO / SLIDESHOW CONTAINER
   Do NOT force internal slider widths
   ========================================================= */

#slideshow_container {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
}

#slideshow_container img {
    max-width: 100% !important;
    height: auto !important;
}


/* =========================================================
   4. SHOP BY COLLECTION
   ========================================================= */

.hh-collections {
    width: 100% !important;
    max-width: 1180px !important;
    margin: 50px auto 60px auto !important;
    padding: 0 20px !important;
    box-sizing: border-box !important;
}

.hh-collections-heading {
    width: 100% !important;
    margin: 0 0 32px 0 !important;
    text-align: center !important;
}

.hh-collections-heading h2 {
    margin: 0 !important;
    padding: 0 !important;
    color: #123D32 !important;
    font-family: Georgia, "Times New Roman", serif !important;
    font-size: 34px !important;
    font-weight: 500 !important;
    line-height: 1.2 !important;
}

.hh-collections-heading h2:after {
    content: "" !important;
    display: block !important;
    width: 60px !important;
    height: 2px !important;
    margin: 13px auto 0 auto !important;
    background: #B8944F !important;
}

.hh-collections-heading p {
    max-width: 700px !important;
    margin: 14px auto 0 auto !important;
    padding: 0 !important;
    color: #555555 !important;
    font-size: 15px !important;
    font-weight: 400 !important;
    line-height: 1.6 !important;
}


/* =========================================================
   5. COLLECTION GRID
   ========================================================= */

.hh-collection-grid {
    display: grid !important;
    width: 100% !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 22px !important;
    margin: 0 !important;
    padding: 0 !important;
}


/* =========================================================
   6. COLLECTION CARD
   ========================================================= */

.hh-collection-card {
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    background: #FFFFFF !important;
    border: 1px solid #E5E0D8 !important;
    border-radius: 5px !important;
    text-decoration: none !important;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease !important;
}

.hh-collection-card:hover {
    transform: translateY(-4px) !important;
    border-color: #D1C3AA !important;
    box-shadow: 0 10px 26px rgba(18, 61, 50, 0.10) !important;
}


/* =========================================================
   7. COLLECTION IMAGE
   ========================================================= */

.hh-collection-image {
    display: block !important;
    width: 100% !important;
    height: 210px !important;
    margin: 0 !important;
    padding: 0 !important;
    object-fit: cover !important;
}


/* =========================================================
   8. CARD CONTENT
   ========================================================= */

.hh-card-content {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 23px 18px 25px 18px !important;
    box-sizing: border-box !important;
    text-align: center !important;
}

.hh-card-content h3 {
    margin: 0 0 10px 0 !important;
    padding: 0 !important;
    color: #123D32 !important;
    font-family: Georgia, "Times New Roman", serif !important;
    font-size: 21px !important;
    font-weight: 500 !important;
    line-height: 1.3 !important;
}

.hh-card-content p {
    margin: 0 0 18px 0 !important;
    padding: 0 !important;
    color: #555555 !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 1.5 !important;
}


/* =========================================================
   9. SHOP NOW BUTTON
   ========================================================= */

.hh-card-content span {
    display: inline-block !important;
    margin: 0 !important;
    padding: 10px 21px !important;
    box-sizing: border-box !important;
    background: #123D32 !important;
    color: #FFFFFF !important;
    border-radius: 2px !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    letter-spacing: 0.7px !important;
    line-height: 1.3 !important;
    text-transform: uppercase !important;
    transition: background 0.2s ease !important;
}

.hh-collection-card:hover .hh-card-content span {
    background: #1D5546 !important;
}


/* =========================================================
   10. TABLET
   ========================================================= */

@media (max-width: 900px) {

    .hh-collections {
        max-width: 760px !important;
        padding: 0 16px !important;
        margin-top: 40px !important;
        margin-bottom: 50px !important;
    }

    .hh-collections-heading h2 {
        font-size: 31px !important;
    }

    .hh-collection-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 18px !important;
    }

    .hh-collection-image {
        height: 220px !important;
    }
}


/* =========================================================
   11. MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .hh-collections {
        width: 100% !important;
        max-width: none !important;
        margin: 30px auto 40px auto !important;
        padding: 0 12px !important;
    }

    .hh-collections-heading {
        margin-bottom: 24px !important;
    }

    .hh-collections-heading h2 {
        font-size: 28px !important;
    }

    .hh-collections-heading p {
        font-size: 14px !important;
        line-height: 1.5 !important;
    }

    .hh-collection-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    .hh-collection-image {
        width: 100% !important;
        height: 230px !important;
    }

    .hh-card-content {
        padding: 21px 17px 23px 17px !important;
    }

    .hh-card-content h3 {
        font-size: 21px !important;
    }

    .hh-card-content p {
        font-size: 14px !important;
    }
}/* =========================================================
   THE HERB HUT - WEBSITE REDESIGN
   CLEAN VERSION
   ========================================================= */


/* =========================================================
   1. REMOVE OLD LEFT SIDEBAR
   ========================================================= */

#left {
    display: none !important;
}


/* =========================================================
   2. EXPAND MAIN CONTENT AREA
   ========================================================= */

#main_inner {
    display: flex !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
}

#right {
    width: 100% !important;
    max-width: 100% !important;
    flex: 1 1 auto !important;
    float: none !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
}


/* =========================================================
   3. HERO / SLIDESHOW CONTAINER
   Do NOT force internal slider widths
   ========================================================= */

#slideshow_container {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
}

#slideshow_container img {
    max-width: 100% !important;
    height: auto !important;
}


/* =========================================================
   4. SHOP BY COLLECTION
   ========================================================= */

.hh-collections {
    width: 100% !important;
    max-width: 1180px !important;
    margin: 50px auto 60px auto !important;
    padding: 0 20px !important;
    box-sizing: border-box !important;
}

.hh-collections-heading {
    width: 100% !important;
    margin: 0 0 32px 0 !important;
    text-align: center !important;
}

.hh-collections-heading h2 {
    margin: 0 !important;
    padding: 0 !important;
    color: #123D32 !important;
    font-family: Georgia, "Times New Roman", serif !important;
    font-size: 34px !important;
    font-weight: 500 !important;
    line-height: 1.2 !important;
}

.hh-collections-heading h2:after {
    content: "" !important;
    display: block !important;
    width: 60px !important;
    height: 2px !important;
    margin: 13px auto 0 auto !important;
    background: #B8944F !important;
}

.hh-collections-heading p {
    max-width: 700px !important;
    margin: 14px auto 0 auto !important;
    padding: 0 !important;
    color: #555555 !important;
    font-size: 15px !important;
    font-weight: 400 !important;
    line-height: 1.6 !important;
}


/* =========================================================
   5. COLLECTION GRID
   ========================================================= */

.hh-collection-grid {
    display: grid !important;
    width: 100% !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 22px !important;
    margin: 0 !important;
    padding: 0 !important;
}


/* =========================================================
   6. COLLECTION CARD
   ========================================================= */

.hh-collection-card {
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    background: #FFFFFF !important;
    border: 1px solid #E5E0D8 !important;
    border-radius: 5px !important;
    text-decoration: none !important;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease !important;
}

.hh-collection-card:hover {
    transform: translateY(-4px) !important;
    border-color: #D1C3AA !important;
    box-shadow: 0 10px 26px rgba(18, 61, 50, 0.10) !important;
}


/* =========================================================
   7. COLLECTION IMAGE
   ========================================================= */

.hh-collection-image {
    display: block !important;
    width: 100% !important;
    height: 210px !important;
    margin: 0 !important;
    padding: 0 !important;
    object-fit: cover !important;
}


/* =========================================================
   8. CARD CONTENT
   ========================================================= */

.hh-card-content {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 23px 18px 25px 18px !important;
    box-sizing: border-box !important;
    text-align: center !important;
}

.hh-card-content h3 {
    margin: 0 0 10px 0 !important;
    padding: 0 !important;
    color: #123D32 !important;
    font-family: Georgia, "Times New Roman", serif !important;
    font-size: 21px !important;
    font-weight: 500 !important;
    line-height: 1.3 !important;
}

.hh-card-content p {
    margin: 0 0 18px 0 !important;
    padding: 0 !important;
    color: #555555 !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 1.5 !important;
}


/* =========================================================
   9. SHOP NOW BUTTON
   ========================================================= */

.hh-card-content span {
    display: inline-block !important;
    margin: 0 !important;
    padding: 10px 21px !important;
    box-sizing: border-box !important;
    background: #123D32 !important;
    color: #FFFFFF !important;
    border-radius: 2px !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    letter-spacing: 0.7px !important;
    line-height: 1.3 !important;
    text-transform: uppercase !important;
    transition: background 0.2s ease !important;
}

.hh-collection-card:hover .hh-card-content span {
    background: #1D5546 !important;
}


/* =========================================================
   10. TABLET
   ========================================================= */

@media (max-width: 900px) {

    .hh-collections {
        max-width: 760px !important;
        padding: 0 16px !important;
        margin-top: 40px !important;
        margin-bottom: 50px !important;
    }

    .hh-collections-heading h2 {
        font-size: 31px !important;
    }

    .hh-collection-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 18px !important;
    }

    .hh-collection-image {
        height: 220px !important;
    }
}


/* =========================================================
   11. MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .hh-collections {
        width: 100% !important;
        max-width: none !important;
        margin: 30px auto 40px auto !important;
        padding: 0 12px !important;
    }

    .hh-collections-heading {
        margin-bottom: 24px !important;
    }

    .hh-collections-heading h2 {
        font-size: 28px !important;
    }

    .hh-collections-heading p {
        font-size: 14px !important;
        line-height: 1.5 !important;
    }

    .hh-collection-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    .hh-collection-image {
        width: 100% !important;
        height: 230px !important;
    }

    .hh-card-content {
        padding: 21px 17px 23px 17px !important;
    }

    .hh-card-content h3 {
        font-size: 21px !important;
    }

    .hh-card-content p {
        font-size: 14px !important;
    }
}/* =========================================================
   THE HERB HUT - TRUST / DELIVERY STRIP
   ========================================================= */

.hh-trust-strip {
    width: calc(100% - 40px) !important;
    max-width: 1180px !important;
    margin: 28px auto 10px auto !important;
    padding: 22px 24px !important;

    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;

    box-sizing: border-box !important;

    background: #F8F6F0 !important;
    border: 1px solid #E7E0D3 !important;
}

.hh-trust-item {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    min-width: 0 !important;
    padding: 4px 20px !important;

    box-sizing: border-box !important;
}

.hh-trust-item + .hh-trust-item {
    border-left: 1px solid #DDD5C7 !important;
}

.hh-trust-icon {
    flex: 0 0 auto !important;

    margin-right: 12px !important;

    font-size: 25px !important;
    line-height: 1 !important;
}

.hh-trust-text {
    min-width: 0 !important;
    text-align: left !important;
}

.hh-trust-text strong {
    display: block !important;

    margin: 0 0 4px 0 !important;

    color: #123D32 !important;

    font-family: Georgia, "Times New Roman", serif !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;
}

.hh-trust-text span {
    display: block !important;

    color: #666666 !important;

    font-size: 12px !important;
    font-weight: 400 !important;
    line-height: 1.35 !important;
}


/* TABLET */

@media (max-width: 900px) {

    .hh-trust-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 0 !important;
        padding: 10px 16px !important;
    }

    .hh-trust-item {
        justify-content: flex-start !important;
        padding: 16px !important;
    }

    .hh-trust-item + .hh-trust-item {
        border-left: none !important;
    }

    .hh-trust-item:nth-child(even) {
        border-left: 1px solid #DDD5C7 !important;
    }

    .hh-trust-item:nth-child(n+3) {
        border-top: 1px solid #DDD5C7 !important;
    }
}


/* MOBILE */

@media (max-width: 600px) {

    .hh-trust-strip {
        width: calc(100% - 24px) !important;
        grid-template-columns: 1fr !important;
        padding: 5px 16px !important;
        margin-top: 20px !important;
    }

    .hh-trust-item {
        padding: 15px 5px !important;
    }

    .hh-trust-item + .hh-trust-item,
    .hh-trust-item:nth-child(even),
    .hh-trust-item:nth-child(n+3) {
        border-left: none !important;
        border-top: 1px solid #DDD5C7 !important;
    }

    .hh-trust-icon {
        width: 34px !important;
        margin-right: 12px !important;
        text-align: center !important;
    }

    .hh-trust-text strong {
        font-size: 16px !important;
    }

}/* =========================================================
   WHY CHOOSE THE HERB HUT - REFINED VERSION
   ========================================================= */

.hh-why {
    width: 100% !important;
    max-width: 1180px !important;

    margin: 55px auto 60px auto !important;
    padding: 48px 42px !important;

    box-sizing: border-box !important;

    background: #F8F6F0 !important;

    border-top: 1px solid #E2D8C8 !important;
    border-bottom: 1px solid #E2D8C8 !important;
}

.hh-why-heading {
    max-width: 760px !important;

    margin: 0 auto 34px auto !important;

    text-align: center !important;
}

.hh-why-eyebrow {
    display: block !important;

    margin-bottom: 9px !important;

    color: #B8944F !important;

    font-size: 10px !important;
    font-weight: 700 !important;

    letter-spacing: 2px !important;
}

.hh-why-heading h2 {
    margin: 0 0 14px 0 !important;

    color: #123D32 !important;

    font-family: Georgia, "Times New Roman", serif !important;

    font-size: 32px !important;
    font-weight: 500 !important;

    line-height: 1.25 !important;
}

.hh-why-heading p {
    max-width: 700px !important;

    margin: 0 auto !important;

    color: #555555 !important;

    font-size: 14px !important;
    line-height: 1.65 !important;
}

.hh-why-grid {
    display: grid !important;

    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;

    gap: 18px !important;

    margin: 0 !important;
}

.hh-why-item {
    padding: 25px 22px !important;

    box-sizing: border-box !important;

    background: #FFFFFF !important;

    border: 1px solid #E5E0D8 !important;

    text-align: center !important;
}

.hh-why-item:before {
    content: "" !important;

    display: block !important;

    width: 34px !important;
    height: 2px !important;

    margin: 0 auto 17px auto !important;

    background: #B8944F !important;
}

.hh-why-icon {
    width: 40px !important;
    height: 40px !important;

    margin: 0 auto 13px auto !important;

    display: flex !important;

    align-items: center !important;
    justify-content: center !important;

    background: #123D32 !important;
    color: #FFFFFF !important;

    border-radius: 50% !important;

    font-size: 0 !important;
}

.hh-why-item:nth-child(1) .hh-why-icon:after {
    content: "✓" !important;

    font-size: 19px !important;
    font-weight: 600 !important;
}

.hh-why-item:nth-child(2) .hh-why-icon:after {
    content: "•" !important;

    font-size: 27px !important;
    line-height: 1 !important;
}

.hh-why-item:nth-child(3) .hh-why-icon:after {
    content: "UK" !important;

    font-size: 10px !important;
    font-weight: 700 !important;

    letter-spacing: 0.5px !important;
}

.hh-why-item h3 {
    margin: 0 0 9px 0 !important;

    color: #123D32 !important;

    font-family: Georgia, "Times New Roman", serif !important;

    font-size: 20px !important;
    font-weight: 500 !important;

    line-height: 1.3 !important;
}

.hh-why-item p {
    margin: 0 !important;

    color: #666666 !important;

    font-size: 13px !important;
    line-height: 1.55 !important;
}

.hh-why-footer {
    max-width: 820px !important;

    margin: 28px auto 0 auto !important;

    padding-top: 23px !important;

    border-top: 1px solid #DDD5C7 !important;

    text-align: center !important;
}

.hh-why-footer p {
    margin: 0 0 16px 0 !important;

    color: #555555 !important;

    font-size: 13px !important;
    line-height: 1.6 !important;
}

.hh-why-footer a {
    display: inline-block !important;

    padding: 10px 21px !important;

    background: #123D32 !important;
    color: #FFFFFF !important;

    text-decoration: none !important;

    font-size: 10px !important;
    font-weight: 600 !important;

    letter-spacing: 0.8px !important;

    border-radius: 2px !important;
}

.hh-why-footer a:hover {
    background: #1D5546 !important;
}


/* TABLET */

@media (max-width: 900px) {

    .hh-why {
        padding: 42px 24px !important;
    }

    .hh-why-grid {
        grid-template-columns: 1fr !important;
    }

}


/* MOBILE */

@media (max-width: 600px) {

    .hh-why {
        margin: 40px auto 45px auto !important;
        padding: 36px 16px !important;
    }

    .hh-why-heading h2 {
        font-size: 28px !important;
    }

    .hh-why-heading p {
        font-size: 14px !important;
    }

    .hh-why-item {
        padding: 23px 18px !important;
    }

}/* =========================================================
   THE HERB HUT - FOOTER REFINEMENT
   ========================================================= */

/* Main footer */
footer,
#footer {
    background: #123D32 !important;
}

/* Footer inner spacing */
footer .container,
#footer .container {
    padding-top: 28px !important;
    padding-bottom: 22px !important;
}

/* Newsletter area */
#newsletter,
.newsletter {
    margin-bottom: 22px !important;
}

#newsletter h2,
#newsletter h3,
.newsletter h2,
.newsletter h3 {
    color: #FFFFFF !important;
    font-family: Georgia, "Times New Roman", serif !important;
    font-size: 22px !important;
    font-weight: 500 !important;
}

/* Footer column headings */
footer h3,
footer .nav_title,
#footer h3,
#footer .nav_title {
    color: #FFFFFF !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
}

/* Footer links */
footer a,
#footer a {
    color: #C8D3CE !important;
    text-decoration: none !important;
    font-size: 13px !important;
    line-height: 1.5 !important;
    transition: color 0.2s ease !important;
}

footer a:hover,
#footer a:hover {
    color: #FFFFFF !important;
}

/* Footer navigation lists */
footer ul,
#footer ul {
    margin-top: 8px !important;
}

footer li,
#footer li {
    margin-bottom: 6px !important;
}

/* Copyright */
footer .copyright,
#footer .copyright {
    color: #D7DED9 !important;
    font-size: 11px !important;
}

/* Social icons */
footer .social,
#footer .social {
    margin-top: 14px !important;
}

footer .social a,
#footer .social a {
    opacity: 0.75 !important;
    transition: opacity 0.2s ease !important;
}

footer .social a:hover,
#footer .social a:hover {
    opacity: 1 !important;
}

/* Reduce unnecessary empty height */
footer,
#footer {
    min-height: 0 !important;
}


/* =========================================================
   MOBILE FOOTER
   ========================================================= */

@media (max-width: 600px) {

    footer .container,
    #footer .container {
        padding-top: 25px !important;
        padding-bottom: 18px !important;
    }

    footer h3,
    #footer h3 {
        margin-top: 18px !important;
        margin-bottom: 8px !important;
    }

    footer a,
    #footer a {
        font-size: 13px !important;
    }

}/* =========================================================
   THE HERB HUT - COMPACT FOOTER FINAL
   ========================================================= */

footer > .container {
    padding-top: 45px !important;
    padding-bottom: 28px !important;
}

/* Newsletter */
#newsletter {
    margin: 0 auto 38px auto !important;
    padding: 0 !important;
}

/* Three footer columns */
#footer_links_container {
    margin: 0 auto 32px auto !important;
    padding: 0 !important;
    min-height: 0 !important;
    height: auto !important;
}

/* Remove inherited large column heights */
#footer_links_container > div {
    min-height: 0 !important;
    height: auto !important;
    padding-bottom: 0 !important;
}

/* Copyright */
#copyright {
    margin: 0 auto !important;
    padding: 18px 0 0 0 !important;
    min-height: 0 !important;
    height: auto !important;
}

/* Social area */
#social_media_container {
    margin: 15px auto 0 auto !important;
    padding: 0 !important;
    min-height: 0 !important;
    height: auto !important;
}

/* Prevent theme from stretching footer */
footer .container {
    min-height: 0 !important;
    height: auto !important;
}

/* MOBILE */
@media (max-width: 600px) {

    footer > .container {
        padding: 32px 20px 24px 20px !important;
    }

    #newsletter {
        margin-bottom: 30px !important;
    }

    #footer_links_container {
        margin-bottom: 26px !important;
    }

    #copyright {
        padding-top: 12px !important;
    }
}