/* =========================================================
   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;
    }
}/* =========================================================
   THE HERB HUT - MOBILE HERO REPLACEMENT
   ========================================================= */

@media (max-width: 600px) {

    /* Hide the entire original slideshow contents */
    #slideshow_container > * {
        display: none !important;
    }

    #slideshow_container {
        display: block !important;

        width: calc(100% - 24px) !important;
        max-width: 430px !important;

        height: auto !important;
        min-height: 0 !important;

        aspect-ratio: 2 / 3 !important;

        margin: 18px auto 25px auto !important;
        padding: 0 !important;

        overflow: hidden !important;

        background-image: url("https://cdn.freewebstore.com/origin/896351/herbhutmobilehero.png?v=1788942730705") !important;
        background-size: cover !important;
        background-position: center top !important;
        background-repeat: no-repeat !important;
    }

}/* =========================================================
   THE HERB HUT - ABOUT PAGE
   ========================================================= */

.hh-about-page {
    width: 100% !important;
    max-width: 1180px !important;

    margin: 0 auto !important;
    padding: 55px 20px 70px 20px !important;

    box-sizing: border-box !important;
}


/* =========================================================
   INTRODUCTION
   ========================================================= */

.hh-about-intro {
    max-width: 850px !important;
    margin: 0 auto 55px auto !important;
    text-align: center !important;
}

.hh-about-eyebrow {
    display: block !important;

    margin-bottom: 10px !important;

    color: #B8944F !important;

    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 2px !important;
}

.hh-about-intro h1 {
    margin: 0 0 20px 0 !important;

    color: #123D32 !important;

    font-family: Georgia, "Times New Roman", serif !important;
    font-size: 42px !important;
    font-weight: 500 !important;
    line-height: 1.2 !important;
}

.hh-about-lead {
    margin: 0 auto 18px auto !important;

    color: #123D32 !important;

    font-size: 18px !important;
    font-weight: 500 !important;
    line-height: 1.65 !important;
}

.hh-about-intro p:not(.hh-about-lead) {
    margin: 0 auto 15px auto !important;

    color: #555555 !important;

    font-size: 15px !important;
    line-height: 1.75 !important;
}


/* =========================================================
   THREE VALUE CARDS
   ========================================================= */

.hh-about-values {
    display: grid !important;

    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;

    gap: 20px !important;

    margin: 0 0 45px 0 !important;
}

.hh-about-value {
    padding: 32px 25px 30px 25px !important;

    box-sizing: border-box !important;

    background: #F8F6F0 !important;

    border: 1px solid #E5E0D8 !important;

    text-align: center !important;
}

.hh-about-value > span {
    display: block !important;

    margin-bottom: 15px !important;

    color: #B8944F !important;

    font-size: 12px !important;
    font-weight: 700 !important;

    letter-spacing: 1.5px !important;
}

.hh-about-value h2 {
    margin: 0 0 12px 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-about-value p {
    margin: 0 !important;

    color: #666666 !important;

    font-size: 13px !important;

    line-height: 1.65 !important;
}


/* =========================================================
   SERVICE STRIP
   ========================================================= */

.hh-about-service {
    display: grid !important;

    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;

    margin: 0 0 55px 0 !important;

    padding: 0 !important;

    background: #123D32 !important;
}

.hh-about-service > div {
    padding: 24px 15px !important;

    box-sizing: border-box !important;

    text-align: center !important;
}

.hh-about-service > div + div {
    border-left: 1px solid rgba(255,255,255,0.18) !important;
}

.hh-about-service strong {
    display: block !important;

    margin-bottom: 6px !important;

    color: #FFFFFF !important;

    font-size: 11px !important;
    font-weight: 600 !important;

    letter-spacing: 0.8px !important;
}

.hh-about-service span {
    display: block !important;

    color: #C8D3CE !important;

    font-size: 12px !important;
    line-height: 1.4 !important;
}


/* =========================================================
   CLOSING CTA
   ========================================================= */

.hh-about-closing {
    max-width: 760px !important;

    margin: 0 auto !important;

    padding-top: 48px !important;

    border-top: 1px solid #E2D8C8 !important;

    text-align: center !important;
}

.hh-about-closing h2 {
    margin: 0 0 12px 0 !important;

    color: #123D32 !important;

    font-family: Georgia, "Times New Roman", serif !important;

    font-size: 30px !important;
    font-weight: 500 !important;
}

.hh-about-closing p {
    max-width: 650px !important;

    margin: 0 auto 22px auto !important;

    color: #666666 !important;

    font-size: 14px !important;
    line-height: 1.7 !important;
}

.hh-about-closing a {
    display: inline-block !important;

    padding: 11px 23px !important;

    background: #123D32 !important;
    color: #FFFFFF !important;

    text-decoration: none !important;

    font-size: 11px !important;
    font-weight: 600 !important;

    letter-spacing: 0.8px !important;

    border-radius: 2px !important;
}

.hh-about-closing a:hover {
    background: #1D5546 !important;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .hh-about-page {
        padding: 45px 18px 55px 18px !important;
    }

    .hh-about-intro h1 {
        font-size: 36px !important;
    }

    .hh-about-values {
        grid-template-columns: 1fr !important;
    }

    .hh-about-service {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .hh-about-service > div:nth-child(3) {
        border-left: none !important;
        border-top: 1px solid rgba(255,255,255,0.18) !important;
    }

    .hh-about-service > div:nth-child(4) {
        border-top: 1px solid rgba(255,255,255,0.18) !important;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .hh-about-page {
        padding: 35px 12px 45px 12px !important;
    }

    .hh-about-intro {
        margin-bottom: 38px !important;
    }

    .hh-about-intro h1 {
        font-size: 31px !important;
    }

    .hh-about-lead {
        font-size: 16px !important;
    }

    .hh-about-intro p:not(.hh-about-lead) {
        font-size: 14px !important;
    }

    .hh-about-values {
        gap: 14px !important;
        margin-bottom: 35px !important;
    }

    .hh-about-value {
        padding: 27px 20px !important;
    }

    .hh-about-service {
        grid-template-columns: 1fr !important;
        margin-bottom: 38px !important;
    }

    .hh-about-service > div,
    .hh-about-service > div:nth-child(3),
    .hh-about-service > div:nth-child(4) {
        border-left: none !important;
        border-top: 1px solid rgba(255,255,255,0.18) !important;
    }

    .hh-about-service > div:first-child {
        border-top: none !important;
    }

    .hh-about-closing {
        padding-top: 35px !important;
    }

    .hh-about-closing h2 {
        font-size: 27px !important;
    }

}/* =========================================================
   HIDE BEST SELLERS ON ABOUT PAGE ONLY
   ========================================================= */

#right:has(#page_content .hh-about-page) #featured {
    display: none !important;
}/* =========================================================
   THE HERB HUT - REMOVE GLOBAL FEATURED PRODUCTS
   ========================================================= */

#featured {
    display: none !important;
}/* =========================================================
   THE HERB HUT - REMOVE RELATED PRODUCTS
   ========================================================= */

#related_products,
#related_products_inner {
    display: none !important;
}/* =========================================================
   THE HERB HUT - PRODUCT PAGE
   CATALOGUE / PHONE / WHATSAPP ORDERING MODEL
   ========================================================= */

#details {
    width: 100% !important;
    max-width: 1180px !important;

    margin: 30px auto 20px auto !important;

    box-sizing: border-box !important;
}


/* LEFT - PRODUCT GALLERY */

#details_left {
    box-sizing: border-box !important;
}


/* RIGHT - PRODUCT INFORMATION */

#details_right {
    box-sizing: border-box !important;

    padding: 15px 10px 20px 35px !important;
}


/* PRODUCT TITLE */

#details_name {
    margin: 0 0 10px 0 !important;

    color: #123D32 !important;

    font-family: Georgia, "Times New Roman", serif !important;

    font-size: 29px !important;
    font-weight: 500 !important;

    line-height: 1.3 !important;
}


/* STOCK */

#details_stock {
    margin: 0 0 12px 0 !important;

    color: #5A7B38 !important;

    font-size: 10px !important;
    font-weight: 600 !important;

    letter-spacing: 1px !important;

    text-transform: uppercase !important;
}


/* PRICE */

#details_price {
    margin: 0 0 25px 0 !important;

    color: #123D32 !important;

    font-family: Georgia, "Times New Roman", serif !important;

    font-size: 26px !important;
    font-weight: 500 !important;
}


/* HIDE WISHLIST - NOT NEEDED FOR CATALOGUE */

#wishlist_not_logged_in_html {
    display: none !important;
}


/* =========================================================
   PRODUCT CART AREA
   ========================================================= */

/* Keep native product-cart functionality untouched.
   We are not adding online checkout controls. */


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    #details {
        margin: 20px auto 10px auto !important;
    }

    #details_right {
        padding: 25px 15px 15px 15px !important;
    }

    #details_name {
        font-size: 25px !important;

        line-height: 1.3 !important;
    }

    #details_price {
        font-size: 24px !important;

        margin-bottom: 20px !important;
    }

}/* =========================================================
   PRODUCT PAGE - REDUCE EMPTY SPACE
   ========================================================= */

#details {
    min-height: 0 !important;
    height: auto !important;
    padding-bottom: 20px !important;
    margin-bottom: 15px !important;
}

#details_left,
#details_right {
    min-height: 0 !important;
    height: auto !important;
}