:root {
    /* wireframing */
  --bg-light: #F8F9FA;
  --text-light: #212529;
  --gray-light-1: #E9ECEF;
  --gray-light-2: #DEE2E6;
  --gray-light-3: #CED4DA;

  /* colors */
  --theme-dark-gray-font: #333;
  --theme-light-gray-font: #999;
  --theme-dark-red: #B00;
  --theme-dark-purple: #851f82;
  --theme-light-purple: #b7069c;
  --theme-blue: #069cb7;
  --theme-tan: #f8ebe1;
  --theme-yellow: #ff0;
}


/* ============================================================
    General Page Styles
============================================================ */

html {
	background: #fff;
}

body {
	font-family: 'Poppins', 'Open Sans', Arial, "Helvetica Neue", Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.85714;
    background: var(--theme-blue);
}

/* ----- Typography -------------------- */
h1, .h1, h2, .h2, h3, .h3 {
    margin-top: 10px;
    margin-bottom: 10px;
}

h1 {
	color: #000;
	text-transform: uppercase;
	font-size: 1.8em;
}

h2, .h2 {
	color: #000;
	font-size: 1.5em;
	border-bottom: 1px solid #4d4844;
	margin-bottom: 5px;
    margin-top: 25px;
}

h3, .h3 {
	font-size: 18px;
	color: #333;
	text-transform: uppercase;
    font-weight: 700;
    line-height: 1.5;
	margin-bottom: 5px;
    margin-top: 25px;
}

h4 {
	color: #000000;
    font-weight: 400;
    font-family: "system-ui",serif;
    line-height: 1.4em;
	margin-bottom: 0.5em;
    border-bottom: 1px solid #e0e0e0;
}

p {
    color: var(--theme-dark-gray-font);
	font-family: 'Poppins', 'Open Sans', Arial, "Helvetica Neue", Helvetica, sans-serif;
}

a {
    color: var(--theme-light-gray-font);
    text-decoration: none;
}

a:hover {
    color: #000;
}

/* lists */
ul, ol, dl {
    padding-left: 0;
}



/* ============================================================
    Header
============================================================ */

#header {
    padding-top: 0;
    background: transparent;
    border: none;
    margin-bottom: 0;
}

/* ----- Top Banner -------------------- */

#top-banner {
    background: var(--gray-light-2);
    padding: 35px 20px 10px 20px;
    background: var(--theme-dark-red);
}

#top-banner p {
    font-family: 'Open Sans', sans-serif;
    margin-bottom: 0;
    color: #fff;
    text-align: center;
    font-size: 18px;
}


/* ----- Main Content -------------------- */

.header-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 90%;
    margin: 0 auto;
    padding: 20px 15px;
    grid-gap: 40px;
    background: #fff;
}

/* ----- Logo -------------------- */
.woocommerce-active .site-header .site-branding {
    margin: 0;
    max-width: 300px;
    float: right;
}

.site-header .site-branding img {
    width: 100%;
    height: auto;
    max-width: 100%;
}



/* ----- Header Cart Stuff -------------------- */
.header-cart-info {
    display: grid;
    grid-template-columns: max-content min-content;
    grid-gap: 15px;
}

.header-desktop-cart-wrapper {
    margin: 0;
    padding: 0 15px;
}

.custom-cart-icon-wrapper {
    display: block;
    width: 70px;
    background: var(--theme-blue);
    color: #fff;
    height: 30px;
    border-radius: 5px;
    line-height: 30px;
    text-align: center;
    font-size: 14px;
    text-decoration: none;
}

.custom-cart-icon-wrapper:hover {
    background: var(--theme-dark-purple);
    color: #fff;
}

.woocommerce-active .site-header .site-search {
    float: none;
    width: 100%;
    margin-bottom: 15px;
}

#woocommerce-product-search-field-0 {
    padding: 0;
    height: 30px;
    border-radius: 5px;
    padding-right: 30px;
    line-height: 30px;
    padding-left: 10px;
}

.site-search .widget_product_search form::before {
    top: 0;
    right: 0;
    width: 30px;
    height: 30px;
    left: auto;
    line-height: 30px;
    text-align: center;
}

.header-payment-options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 7px;
    max-width: 270px;
    margin-bottom: 5px;
}

.header-payment-options img {
    border: 1px solid var(--gray-light-1);
}

.header-payment-options + p {
    text-align: center;
    max-width: 270px;
    text-transform: uppercase;
    font-family: 'Poppins', 'Open Sans', Arial, "Helvetica Neue", Helvetica, sans-serif;
    font-size: 12px;
}

#address-mobile {
    display: none;
}


/* ----- Primary Navigation -------------------- */
#primary-nav-wrapper {
    float: none;
    width: 90%;
    margin: 0 auto;
    padding: 0 15px;
    background: #fff;
}

.primary-nav-inner-wrapper {
    background: var(--theme-dark-purple);
    padding: 10px;
}

.primary-nav-inner-wrapper > a:first-of-type {
    color: #fff;
}

.primary-nav-inner-wrapper > a:first-of-type:hover {
    color: var(--theme-yellow);
}

#menu-main-menu > li > a {
    text-transform: uppercase;
    color: #fff;
    padding: 0 13px;
    line-height: 50px;
}

#menu-main-menu > li:hover > a {
    color: var(--theme-yellow);
}

#menu-main-menu > li.menu-item-has-children:hover > a {
    color: #fff;
    background: var(--theme-blue);
}

#menu-main-menu .sub-menu li a {
    border-bottom: 1px solid var(--theme-dark-gray-font);
}

#menu-main-menu .sub-menu li:hover a {
    color: #4d4844;
    border-bottom-color: #ccc;
}

#site-navigation {
    float: none;
    margin-right: 0;
    width: 100%;
}

@media screen and (max-width: 768px) {

    body {
        padding-top: 50px;
    }

    #header {
        padding-bottom: 0;
    }

    .header-content {
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
    }

    .woocommerce-active .site-header .site-branding {
        float: none;
        align-self: center;
        justify-self: center;
        width: 100%;
    }

    .header-center-image-wrapper {
        width: 100%;
        justify-self: center;
        align-self: center;
    }

    #address-mobile address {
        font-size: 15px;
        margin-bottom: 0;
    }

    body.home #address-mobile address {
        margin-bottom: -15px;
    }

    #address-mobile .street {
        margin-bottom: 5px;
    }

    .header-desktop-cart-wrapper {
        display: none;
    }

    #address-mobile {
        display: block;
        grid-column: 1 / span 2;
        text-align: center;
    }

    #primary-nav-wrapper {
        position: absolute;
        top: 0;
        left: -300vw;
        right: 300vw;
        width: 100%;
        max-width: 100%;
        padding: 0;
    }

    #primary-nav-wrapper.show {
        left: -15px;
        right: -15px;
    }

    .primary-nav-inner-wrapper {
        background: var(--theme-blue);
        padding: 0;
    }

    .primary-nav-inner-wrapper > a {
        display: block;
        border-bottom: 1px solid rgba(0, 0, 0, .8);
        padding: 14px;
    }

    #site-navigation-menu-toggle {
        display: none;
    }

    #menu-main-menu-1 {
        padding-left: 0;
    }

    #menu-main-menu-1 > li {
        border-bottom: 1px solid rgba(0, 0, 0, .8);
    }

    #menu-main-menu-1 > li > a {
        color: #fff;
        text-transform: uppercase;
        padding: 14px;
    }

    #menu-main-menu-1 .dropdown-toggle {
        color: #fff;
    }

    #menu-main-menu-1 .sub-menu {
        background: #fff;
        margin-left: 0;
    }

    #menu-main-menu-1 .sub-menu li {
        border-bottom: 1px solid rgba(0, 0, 0, .8);
    }

    #menu-main-menu-1 .sub-menu li a {
        padding: 14px;
    }

    .handheld-navigation {
        max-height: max-content;
    }

    .handheld-navigation ul li a {
        color: #000;
    }

    .handheld-navigation ul li .dropdown-toggle {
        color: #000;
    }

    .handheld-navigation ul.menu li button::after {
        content: "";
    }

}

























#content {
    width: 90%;
    background: #fff;
    margin: 0 auto;
    padding: 20px 15px;
}








/* ============================================================
    Page Content
============================================================ */

#side-navigation {
    padding: 0;
}

#side-navigation h1 {
    font-size: 29px;
    line-height: 1;
    margin-top: 0;
}

#side-navigation ul {
    padding-left: 0;
    margin-left: 0;
    font-size: 16px;
}

#side-navigation ul li a {
    text-decoration: none;
}

#side-navigation a.lv-1 {
    font-weight: bold;
    color: #242424;
    margin-top: 15px;
    display: block;
}

#side-navigation li.lv-2.child a {
    font-weight: normal;
    color: #000;
    line-height: 35px;
}

/* ----- Breadcrumbs -------------------- */
.storefront-breadcrumb {
    width: 90%;
    margin: 0 auto;
    padding: 0 15px;
    background: #fff;
}

.storefront-breadcrumb .col-full {
    background: #f8ebe1;
    border-top: 1px solid #4d4844;
    border-bottom: 1px double #4d4844;
    margin: auto;
    width: 100%;
    max-width: 100%;
    padding: 0 15px;
    line-height: 45px;
    box-sizing: border-box;
}

.storefront-breadcrumb .woocommerce-breadcrumb,
.storefront-breadcrumb .woocommerce-breadcrumb a {
    font-size: 12px;
    font-style: italic;
    text-decoration: none;
}

.storefront-breadcrumb .woocommerce-breadcrumb a:hover {
    text-decoration: underline;
}

.storefront-breadcrumb .woocommerce-breadcrumb a::before {
    display: none;
}


@media screen and (max-width: 768px) {
    .storefront-breadcrumb {
        width: 100%;
    }
}



/* ============================================================
    Footer
============================================================ */

#footer {
    background: #efefef;
    padding: 0;
    padding-top: 20px;
}

.footer-content-wrapper {
    width: 81%; /* 90% of 90% */
    margin: 0 auto;
    padding: 0 15px;
}


/* ----- Footer Newsletter Signup Form -------------------- */

#footer-newsletter-signup {
    text-align: center;
    width: 100%;
    max-width: 660px;

    @media screen and (max-width: 768px) {
        max-width: 400px;
    }

    #gform_wrapper_2 {
        max-width: 660px;
        position: relative;

        #field_2_1 {
            display: grid;
            grid-template-columns: max-content 1fr;
            align-items: center;

            @media screen and (max-width: 768px) {
                grid-template-columns: 1fr;
            }

            .gfield_label .gfield_required {
                display: none;
            }

            label.gfield_label {
                margin-bottom: 0;
                align-content: center;
                width: 185px;
                padding-right: 20px;
                padding-left: 20px;
                border-bottom: none;
                color: #000000;
                font-weight: 400;
                font-family: "system-ui", serif;
                line-height: 1.4em;
                font-size: 18px;

                @media screen and (max-width: 768px) {
                    padding-left: 5px;
                    margin-bottom: 5px;
                }
            }

            .ginput_container.ginput_container_email {
                width: 100%;
                max-width: 100%;
            }

            input#input_2_1 {
                height: 44px;
                border-right: none;
                border-top-right-radius: 0;
                border-bottom-right-radius: 0;
                border: 1px solid #000;
                width: 100%;
                text-align: left;
                padding-right: 190px;
                border-radius: 5px;

                @media screen and (max-width: 768px) {
                    padding-right: 10px !important;
                }
            }
        }

        .gform-footer {
            margin-top: 0;
            position: absolute;
            top: 0;
            right: 0;

            @media screen and (max-width: 768px) {
                position: relative;
                margin-top: 10px;
                margin-bottom: 45px;
                padding-left: 0;
            }

            #gform_submit_button_2 {
                background: var(--theme-blue);
                height: 44px;
                width: 180px;
                border-left: none;
                border-top-left-radius: 0;
                border-bottom-left-radius: 0;
                border-top-right-radius: 5px;
                border-bottom-right-radius: 5px;

                &:hover {
                    background: #000;
                }

                @media screen and (max-width: 768px) {
                    width: 100%;
                    border-radius: 5px;
                }
            }
        }
    }
}


/* #footer-newsletter-signup {
    text-align: center;
    width: 100%;
    max-width: 660px;
}

#gform_wrapper_2 {
    max-width: 660px;
    position: relative;
}

#gform_wrapper_2 #field_2_1 {
    display: grid;
    grid-template-columns: max-content 1fr;
    align-items: center;
}

#gform_wrapper_2 .ginput_container.ginput_container_email {
    width: 100%;
    max-width: 100%;
}

#field_2_1 .gfield_label {
    margin-bottom: 0;
    align-content: center;
}

#gform_wrapper_2 label.gfield_label.gform-field-label {
    width: 180px;
    padding-right: 20px;
    border-bottom: none;
    color: #000000;
    font-weight: 400;
    font-family: "system-ui", serif;
    line-height: 1.4em;
    font-size: 18px;
    padding-left: 20px;
}

#field_2_1 > label .gfield_required {
    display: none;
}

#gform_wrapper_2 .gform-footer {
    margin-top: 0;
    position: absolute;
    top: 0;
    right: 0;
}

#gform_wrapper_2 input#input_2_1 {
    height: 44px;
    border-right: none;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border: 1px solid #000;
    width: 100%;
    text-align: left;
    padding-right: 190px;
    border-radius: 5px;
}

#gform_submit_button_2 {
    background: var(--theme-blue);
    height: 44px;
    width: 180px;
    border-left: none;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
} */


/* ----- Footer Widgets -------------------- */
.footer-widgets {
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
}

.footer-widgets.row-1.col-4.fix {
    width: 100%;
    margin: 0 auto;
    padding-top: 20px;
    display: grid;
    grid-template-columns: 1fr minmax(300px, 1fr) 1fr 1fr;
    grid-gap: 20px;
    border-bottom: 0;
}

.footer-widgets.row-1.col-4.fix::before {
    display: none;
}

.footer-widgets.col-4 .block {
    margin-right: 0;
    width: 100%;
}

.footer-widgets a {
    text-decoration: none;
}

.footer-widgets h5 {
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
}

.footer-widgets dl {
    display: grid;
    grid-template-columns: max-content 1fr;
    grid-gap: 5px;
    row-gap: 0;
}

.footer-widgets dl dt {
    font-weight: normal;
}

.footer-widgets dl dd {
    margin-bottom: 0;
}

.footer-widgets a:hover {
    text-decoration: underline;
}

.footer-title {
    text-transform: inherit;
    text-align: left;
    font-weight: 400;
    font-family: "system-ui", serif;
    line-height: 1.4em;
    color: #000;
    margin-bottom: 0.5em;
    border-bottom: 1px solid #e0e0e0;
    padding: 0.5em 0;
    margin-top: 0;
    font-size: 18px;
}

.footer-widgets address {
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
}

.footer-widgets address a {
    display: block;
}

.footer-widgets .widget {
    margin-bottom: 0;
}

/* widget 2 */
.footer-widget-2 p {
    margin-top: 50px;
}

.footer-widget-1 p:first-of-type,
.footer-widget-2 p:first-of-type,
.footer-widget-2 p:last-of-type,
.footer-widget-3 p:first-of-type,
.footer-widget-4 p:first-of-type {
    display: none;
}

/* ----- Footer Socials -------------------- */
#footer-socials-row .footer-icons {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, max-content);
    padding: 0 0 50px 0;
    margin: 0;
    justify-content: center;
    grid-gap: 20px;
    font-size: 24px;
}

#footer-socials-row .footer-icons li {
    display: inline-block;
}

#footer-socials-row .footer-icons li a {
    color: var(--theme-light-gray-font);
}

#footer-areas-served {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 30px;
    padding: 0;
    display: none;
}

#footer-areas-served h4 {
    font-size: 18px;
    margin-bottom: 9px;
}

#footer-areas-served .area-body {
    display: grid;
    grid-template-columns: 120px 1fr;
}

#footer-areas-served .area-body p {
    max-height: 200px;
    overflow-y: scroll;
    scrollbar-width: none;          /* Standard property for Firefox */
    -ms-overflow-style: none;       /* Legacy property for Internet Explorer and Edge */
}

#footer-areas-served .area-body p::-webkit-scrollbar {
    display: none; /* Safari, Chrome, and Opera */
}

#footer-areas-served .area-body .fa-square-h,
#footer-areas-served .area-body .fa-truck,
#footer-areas-served .area-body .fa-location-dot {
    font-size: 55px;
    color: var(--theme-light-gray-font);
    opacity: .6;
    margin-left: 10px;
}

#footer-copyright-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 60px 15px 20px 15px;
}

#footer-copyright-row p {
    margin: 0;
    font-size: 12px;
}

#footer-copyright-row .developer {
    text-align: right;
}

/* ----- Handheld Footer Bar -------------------- */
.storefront-handheld-footer-bar {
    position: absolute;
    top: 0;
    bottom: auto;
    z-index: 9999;
    border-top: 0;
    box-shadow: none;
    height: max-content;
    max-height: 50px;
    overflow: hidden;
    background: #222;
    padding: 0 5px;
}

body.logged-in .storefront-handheld-footer-bar {
    top: 46px;
}

.storefront-handheld-footer-bar ul {
    display: grid;
    grid-template-columns: 1fr 3fr 1fr;
    padding-left: 0;
}

.storefront-handheld-footer-bar ul li {
    width: auto !important;
}

.storefront-handheld-footer-bar ul li:first-child {
    justify-content: left;
}

.handheld-search-field-container {
    position: relative;
}

#woocommerce-product-search-field-1 {
    width: 100%;
    padding-right: 60px;
    padding-top: 5px;
    padding-bottom: 5px;
    margin-top: 5px;
    border-radius: 4px;
    font-size: 12px;
    height: 40px;
    line-height: 40px;
}

.handheld-search-field-container form button[type="submit"] {
    position: absolute;
    top: 5px;
    right: 0;
    width: 40px;
    height: 40px;
    overflow: hidden;
    color: transparent;
    border-radius: 4px;
}

.handheld-search-field-container form button[type="submit"]::after {
    content: "\f002";
    font-family: 'Font Awesome 5 Free';
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    position: absolute;
    top: 0;
    right: 0;
    color: #000;
}

.my-menu-trigger {
    width: 50px;
    height: 50px;
    line-height: 50px;
    display: grid;
    float: right;
}

.my-menu-trigger .fa-bars {
    display: block;
    width: 25px;
    height: 25px;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.site-footer .storefront-handheld-footer-bar a:not(.button):not(.components-button) {
    background: transparent;
    color: #fff;
    height: 50px;
    line-height: 50px;
    font-size: 14px;
    width: 50px;
    border-right: 0;
    text-decoration: none;
}

.storefront-handheld-footer-bar ul li.cart .count {
    display: none;
}

.storefront-handheld-footer-bar ul li.cart>a::before {
    position: relative;
    top: -5px;
}



.grecaptcha-badge {
    bottom: 85px !important;
}


/* ----- Top Top Button -------------------- */
#to-top .to-top-caption {
    margin-top: -4px !important;
}

#to-top .to-top-icon {
    font-size: 20px;
    position: relative;
    top: 3px;
}


@media screen and (max-width: 992px) {

    .footer-widgets.row-1.col-4.fix {
        grid-template-columns: 1fr;
    }

    .footer-widgets.col-4 .block {
        width: 100%;
    }

}

@media screen and (max-width: 768px) {

    #gform_wrapper_2 #field_2_1 {
        grid-template-columns: 1fr;
        row-gap: 15px;
    }

    #gform_wrapper_2 label.gfield_label.gform-field-label {
        padding-left: 5px;
    }

    #gform_wrapper_2 .gform-footer {
        top: 40px;
    }

    #footer-areas-served {
        grid-template-columns: 1fr;
    }
}






/* ============================================================
    Page Templates
============================================================ */

/* ----- Page -------------------- */

#content {
    display: grid;
    width: 90%;
    grid-template-rows: 1fr;
    grid-template-columns: 200px minmax(0, 1fr);
    grid-gap: 20px;
    overflow: hidden;
    padding-left: 4.5%;
    padding-right: 4.5%;
}

body.home #content {
    padding-left: 15px;
    padding-right: 15px;
}

/*Sidebar*/
#secondary {
    grid-row: 1 / -1;
    grid-column: 1;
    width: 100%;
}

/*Main Content*/
#primary {
    grid-row: 1 / -1;
    grid-column: 2;
    margin-right: 0;
    width: 90%;
    padding-left: 20px;
    border-left: 1px solid #4d4844;
    margin: 0 auto;
}

body.home #primary {
    padding: 0;
    border-left: 0;
}

@media screen and (max-width: 768px) {

    .entry-title,
    .woocommerce-products-header__title.page-title {
        font-size: 14px;
    }

    #content {
        grid-template-columns: 1fr;
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

    #primary {
        grid-row: 1;
        grid-column: 1;
        padding-left: 0;
        border-left: 0;
    }

    #secondary {
        display: none;
    }
}

/* ----- Home -------------------- */

body.home #footer-areas-served {
    display: grid;
}

body.home h1.entry-title {
    display: none;
}

.home-section-separator {
    display: block;
    border-top: 1px solid #6f156f;
    margin-bottom: 100px;
    margin-top: 35px;
}

body.home #content {
    grid-template-columns: minmax(0, 1fr);
}

body.home #primary {
    grid-row: 1;
    grid-column: 1;
    width: 90%;
}

body.home #secondary {
    display: none;
}

/* Banner */
#home-page-banner {
    margin-bottom: 20px;
}

#home-page-banner .banner-slide img {
    width: 100%;
    height: 20%;
}

.banner-overlay {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateY(0);
    opacity: 0;
}

.banner-overlay .banner-btn {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

#home-intro-text {
    padding: 20px;
    background: var(--theme-light-purple);
    text-align: center;
    margin-top: -10px;
}

#home-intro-text h1 {
    font-size: 43px;
    line-height: 57px;
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    letter-spacing: .1px;
}

/* Featured Products */

#home-featured-products .fs_category_title {
    display: none !important;
}

#home-featured-products h2 {
    margin-top: 30px;
    margin-bottom: 50px;
}

.fs_product_wrap {
    row-gap: 40px;
}

.fs_product_wrap > div::after {
    content: "View Details";
    display: block;
    font-size: 12px;
    color: #fff;
    background: var(--theme-blue);
    border-radius: 3px;
    justify-self: center;
    padding: 5px 10px;
    min-width: 140px;
}

.fs_product_wrap > div:hover::after {
    background: var(--theme-dark-purple);
}

.fs_product_wrap .h4 {
    color: var(--theme-dark-purple);
    display: block;
    font-weight: bold;
    margin: 0;
    text-transform: uppercase;
    font-size: 16px;
    line-height: 29px;
    padding-bottom: 0 !important;
}

.fs_product_wrap .h6 {
    font-size: 12px;
    line-height: 47px;
    margin-bottom: 0;
    padding-bottom: 0 !important;
}

.fs_product_wrap .h6 > span:nth-child(1) {
    position: relative;
    top: -5px;
}

.fs_product_wrap .amount {
    color: #000;
    font-size: 25px;
}

/* 1. Original Price (<del>): Small font and centered line */
.fs_product_wrap .h6 del {
  text-decoration: none !important; /* Removes the broken native line */
  display: block !important;
  width: max-content;
  justify-self: center;
  line-height: normal !important;   /* Overrides the 20px bug */

  /* Creates a perfectly centered custom strike-through line */
  background-image: linear-gradient(transparent 47%, red 47%, red 53%, transparent 53%);
}

.fs_product_wrap .h6 del * {
    font-size: 19px;
}

/* 2. New Sale Price (<ins>): Bigger font, bold, no line */
.fs_product_wrap .h6 ins {
  text-decoration: none !important; /* Removes the browser underline */
  display: inline-block !important;
}

.fs_product_wrap .h6 ins * {
    color: red;
    font-weight: normal;
    line-height: 1;
}



/* CTA Cards */
#home-cta-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px;
    margin-bottom: 50px;
    margin-top: 100px;
}

#home-cta-cards .cta-box {
    background: var(--gray-light-1);
    text-align: center;
    padding: 16px;
}

#home-cta-cards .cta-box h2 {
    color: #fff;
    font-weight: normal;
    font-size: 24px;
    border: none;
    font-family: 'Open Sans', Arial, sans-serif;
    margin-top: 12.5px;
}

#home-cta-cards .cta-box p {
    color: #fff;
}

#home-cta-cards .cta-box .btn {
    color: #fff;
    background: var(--theme-blue);
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 14px;
    border: 1px solid #4d4844;
    border-radius: 4px;
}

#home-cta-cards .cta-box .btn:hover {
    background: var(--theme-dark-purple);
}

#home-cta-cards .dark-purple-box {
    background: var(--theme-dark-purple);
}

#home-cta-cards .blue-box {
    background: var(--theme-blue);
}

#home-cta-cards .light-purple-box {
    background: var(--theme-light-purple);
}

#home-cta-cards .light-purple-box .btn {
    background: #4d4844;
}


@media screen and (max-width: 992px) {
    #home-cta-cards {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    body.home #primary {
        width: 100%;
    }

    #home-page-banner {
        border-top: 2px solid #4d4844;
    }

    #home-intro-text h1 {
        font-size: 14px;
        line-height: 24px;
    }
}



/* ----- Local Page -------------------- */

.local-page hr {
    height: 0;
    margin: 20px 0;
    border-top: .5px solid #eee;
    opacity: 1;
}

.local-page .py-4 {
    margin-bottom: 0;
    padding-bottom: 0 !important;
}

/* delivery countdown */
.delivery-countdown.delivery-countdown-clock {
    display: block;
    clear: both;
    padding: 30px 10px;
    text-align: center;
    background: #EEE;
    border: 2px solid #CCC;
}

.fs-delivery-countdown {
    display: grid;
    grid-template-columns: repeat(3, max-content);
    justify-content: center;
    align-items: center;
    grid-gap: 10px;
    color: #000;
}

span[data-role="remaining-time"] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 5px;
}

span[data-role="remaining-time-hours"],
span[data-role="remaining-time-minutes"],
span[data-role="remaining-time-seconds"] {
    display: grid;
    grid-template-columns: 1fr;
    text-align: center;
}

span[data-role="remaining-time-hours"] span:first-child,
span[data-role="remaining-time-minutes"] span:first-child,
span[data-role="remaining-time-seconds"] span:first-child {
    font-size: 52px;
    line-height: 1;
}

span[data-role="remaining-time-hours"] span:first-child::after,
span[data-role="remaining-time-minutes"] span:first-child::after {
    content: ":";
    margin-left: 10px;
}

span[data-role="remaining-time-hours"] span:last-child,
span[data-role="remaining-time-minutes"] span:last-child,
span[data-role="remaining-time-seconds"] span:last-child {
    text-transform: uppercase;
    font-size: 12px;
    text-align: left;
    padding-left: 5px;
}


.local-featured-product-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.local-featured-product-wrapper .image-wrapper img {
    width: 100%;
    max-width: 375px;
}

.local-featured-product-wrapper .details-wrapper {
    display: grid;
}

.local-featured-product-wrapper .details-wrapper h2 {
    border: none;
    text-transform: uppercase;
    font-size: 29px;
}

.local-featured-product-wrapper .details-wrapper .details-inner {
    display: block;
    max-width: 380px;
    justify-self: end;
    margin-top: 60px;
}

.local-featured-product-wrapper .from-price {
    display: none;
}

.local-featured-product-wrapper .details-wrapper .woocommerce-Price-amount {
    font-size: 30px;
    color: #000;
    font-weight: bold;
}

.local-featured-product-button {
    display: block;
    width: max-content;
    padding: 10px 20px;
    border-radius: 10px;
    background: var(--theme-purple);
    color: #fff;
}

.local-featured-product-button:hover {
    color: #fff;
    background: #000;
    text-decoration: none;
}

.blurb-wrapper {
    font-weight: bold;
}

.map-section-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.weather-widget-blurb-wrapper {
    display: grid;
    grid-template-columns: 115px 1fr;
    grid-gap: 20px;
}

.weather-widget-blurb-wrapper .section-title {
    grid-column: 1 / span 2;
}

.weather-widget-wrapper {
    overflow: hidden;
}

.other-items-wrapper .fs_category_title {
    display: none !important;
}

/* Weather Widget */

#local-page-weather-widget > div > div > div.mm-widget__header-wrap {
	display: none;
}

#local-page-weather-widget > div > div > div.mm-widget__vertical-forecast-wrap {
	display: none;
}

#local-page-weather-widget > div > div {
	height: auto;
	color: #000;
	background: transparent;
	border-radius: 0;
	float: none;
    width: 110px;
    padding: 15px;
    margin: 0 30px 20px 0;
    text-align: center;
    line-height: 1;
    border: 1px solid #EEE;
}

#local-page-weather-widget > div > div > div.mm-widget__temp-vertical-wrap {
	padding-bottom: 0;
    margin-bottom: 0;
    border: none;
    display: grid;
}

#local-page-weather-widget > div > div > div.mm-widget__temp-vertical-wrap > div.mm-widget__temp-range-wrap > div.mm-widget__temp-range {
	display: none;
}

#local-page-weather-widget > div > div > div.mm-widget__temp-vertical-wrap > div.mm-widget__temp-range-wrap > div.mm-widget__temp-range-icon > img {
	filter: brightness(0) !important;
	width: 100%;
}

#local-page-weather-widget > div > div > div.mm-widget__temp-vertical-wrap > div.mm-widget__temp-range-wrap {
	grid-row: 1;
}

#local-page-weather-widget > div > div > div.mm-widget__temp-vertical-wrap > div.mm-widget__temp-value {
	font-size: 40px;
	color: rgb(96,96,96);
	margin-bottom: 10px;
}

#local-page-weather-widget > div > div > div.mm-widget__temp-vertical-wrap > div.mm-widget__temp-range-wrap > div.mm-widget__temp-range-icon {
	width: 100%;
	max-width: 50px;
}


@media screen and (max-width: 1200px) {

    .fs-delivery-countdown {
        grid-template-columns: 1fr;
    }

    span[data-role="remaining-time"] {
        width: max-content;
        justify-self: center;
    }

}

@media screen and (max-width: 768px) {

    .local-featured-product-wrapper {
        grid-template-columns: 1fr;
    }

    .map-section-wrapper {
        grid-template-columns: 1fr;
    }

    .weather-widget-blurb-wrapper {
        grid-row: 2;
    }

    .map-section-map-wrapper {
        grid-row: 1;
    }

}


/* ----- Single Product -------------------- */

body.single-product .product-title {
    text-transform: uppercase;
    font-size: 29px;
    margin-top: 12px;
    border-bottom: 0;
}

body.single-product .onsale {
    display: none;
}

body.single-product .woocommerce-product-gallery__wrapper * {
    border-radius: 0;
}

.storefront-sticky-add-to-cart {
    display: none;
}

.my-product-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
}

.my-product-wrapper .product-title {
    grid-column: 1 / span 2;
}

.my-product-wrapper .my-image-col .woocommerce-product-gallery {
    width: 100% !important;
    margin: 0 !important;
}

.my-product-wrapper .my-image-col .woocommerce-product-gallery img {
    width: 100%;
}

.my-product-wrapper .my-details-col .summary {
    width: 100% !important;
    float: none;
    display: grid;
    grid-template-columns: minmax(100px, min-content) 1fr;
}

.my-product-wrapper .my-details-col .summary .base-price {
    grid-column: 1 / span 2;
    padding: 0;
}

.my-product-wrapper .from-price {
    display: none;
}

.my-product-wrapper .my-details-col .summary .base-price h3 {
    text-transform: capitalize;
    font-weight: normal;
    border-bottom: 1px solid var(--theme-purple);
    font-size: 24px;
    border-bottom: 1px solid #000;
}

.my-product-wrapper .woocommerce-variation-add-to-cart,
.my-product-wrapper .cart {
    display: grid;
    grid-template-columns: max-content 1fr;
}

.my-product-wrapper .woocommerce-variation-add-to-cart .quantity,
.my-product-wrapper .cart .quantity {
    grid-column: 1;
    border-radius: 5px;
    overflow: hidden;
}

.my-product-wrapper .single_add_to_cart_button {
    background: var(--theme-blue);
    border-radius: 5px;
}

.my-product-wrapper .single_add_to_cart_button.disabled {
    background: gray;
}

.my-product-wrapper .my-details-col .woovr-variations {
    grid-column: 1 / span 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.woovr-variations .woovr-variation {
    margin-left: 0;
    margin-right: 0;
    border-right: 1px solid #eee;
    padding: 5px;
}

.woovr-variations .woovr-variation:nth-child(3n) {
    border-right: 0;
}

.single-product div.product .variations_button {
    padding-top: 0;
}

.my-product-wrapper .my-details-col .price {
    grid-row: 1;
    grid-column: 1;
}

.my-product-wrapper .variations_form {
    display: contents;
}

.single_variation_wrap {
    grid-row: 1;
    grid-column: 2;
    align-self: center;
}

.my-product-wrapper .my-details-col h2 {
    grid-column: 1 / span 2;
    margin-bottom: 15px;
}

.my-product-wrapper .my-details-col .edit-link {
    display: none;
}

.my-product-wrapper .my-details-col .product-details {
    grid-column: 1 / span 2;
}

.my-product-wrapper .my-details-col .product-addon {
    grid-column: 1 / span 2;
}

.my-product-wrapper .my-disclaimer-col {
    grid-column: 1 / span 2;
}

.my-product-wrapper .my-disclaimer-col .description1 {
    background-color: #f2dede;
    border: 1px solid #ebccd1;
    border-radius: 3px;
    color: #a94442 !important;
    padding-left: 10px;
    margin-top: 15px;
    margin-bottom: 15px;
    padding: 15px;
}

.my-product-wrapper .my-disclaimer-col .description1 h2,
.my-product-wrapper .my-disclaimer-col .description1 p {
    color: #a94442;
}

/* tweak for simple product layout */
.my-product-wrapper form.cart {
    grid-row: 1;
    grid-column: 2;
}

@media screen and (max-width: 1250px) {

    .my-product-wrapper {
        grid-template-columns: 1fr;
    }

    .my-product-wrapper .product-title {
        grid-row: 1;
        grid-column: 1;
    }

    .my-product-wrapper .my-image-col {
        grid-row: 2;
        grid-column: 1;
    }

    .my-product-wrapper .my-details-col .price {
        grid-row: 1;
        grid-column: 1;
    }

    .my-product-wrapper .my-details-col {
        grid-column: 1;
    }


    /* tweak for simple product layout */
    .my-product-wrapper form.cart {
        grid-row: 1;
        grid-column: 2;
    }
}


/* ----- Product Category -------------------- */
.products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px;
}

/* for gifts and addons category */
body.term-gifts-add-ons .products {
    grid-template-columns: repeat(3, 1fr);
}

.products::before {
    display: none !important;
}

.products .product {
    width: 100% !important;
    margin-right: 0;
}

@media screen and (max-width: 1300px) {
    .products,
    body.term-gifts-add-ons .products {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 1100px) {
    .products,
    body.term-gifts-add-ons .products {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 500px) {
    .products,
    body.term-gifts-add-ons .products {
        grid-template-columns: repeat(1, 1fr);
    }
}



/* ============================================================
    Pages
============================================================ */

/* ----- Leave a Review -------------------- */
body.page-id-36625 .entry-title {
    display: none;
}

body.page-id-36625 h2:first-of-type {
    text-align: center;
}

.review-links {
    display: flex;
    max-width: 960px;
    margin: 40px auto;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    text-align: center;
    font-size: 20px;
}

.review-link {
    display: block;
    max-width: 280px;
    margin: 40px 0;
    color: #000;
    text-decoration: none !important;
}

.review-provider {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 150px;
    margin: auto;
    background: #FFF;
    border-radius: 1000px;
    border: 2px solid rgba(0, 0, 0, .2);
    box-shadow: 0 0 0 5px #FFF;
    transition: border .4s;
}

.review-link:hover .review-provider {
    color: #000;
    border-color: rgba(0, 0, 0, .8);
}

.review-provider .fa-google,
.review-provider .fa-square-facebook,
.review-provider .fa-yelp {
    width: 32px;
    height: 32px;
}

.review-provider .fa-google {
    color: #4285f4;
}

.review-provider .fa-square-facebook {
    color: #3b5998;
}

.review-provider .fa-yelp {
    color: #d32323;
}

.review-button {
    margin-top: 10px;
    padding: 15px 30px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: 500;
    text-shadow: -1px -1px 1px #004499;
    background: #0066CC;
    border-radius: 3px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .3);
}

@media screen and (max-width: 835px) {
    .review-links {
        flex-direction: column;
    }
}



/* ----- Wedding Main Page -------------------- */
body.page-id-7771 #content {
    padding-right: 30px;
}

body.page-id-7771 .img-responsive {
    border-radius: 0;
}

#wedding-image-wrapper {
    margin-bottom: 40px;
}

#wedding-intro-wrapper {
    text-align: center;
    max-width: 638px;
    margin: 0 auto 40px auto;
}

#wedding-intro-wrapper p {
    font-family: 'Poppins', 'Open Sans', Arial, sans-serif;
    font-size: 19.2px;
}

#wedding-intro-wrapper p br {
    display: none;
}

#wedding-links-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 30px;
    text-align: center;
}


#wedding-links-wrapper .btn-primary {
    background: #4d4844;
    border-color: #4d4844;
    color: #fff;
    font-size: 14px;
    font-family: 'Open Sans', Arial, sans-serif;
    text-decoration: none;
}

#wedding-links-wrapper .btn-primary:hover {
    background: var(--theme-dark-purple);
}

@media screen and (max-width: 1360px) {
    body.page-id-7771 #content {
        padding-right: 0;
    }
}

@media screen and (max-width: 992px) {
    #wedding-links-wrapper {
        grid-template-columns: 1fr;
    }
}




/* ----- Wedding "Gallery" Page -------------------- */
.wedding-category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px;
    row-gap: 40px;
}

.wedding-category-image-wrapper {
    width: 100%;
    padding-top: 70%;
    position: relative;
    overflow: hidden;
}

.wedding-category-image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.wedding-category-title {
    margin-top: 20px;
    text-align: center;
    text-transform: uppercase;
    color: var(--theme-dark-purple);
    border: none;
    font-size: 16px;
    font-weight: 600;
}

@media screen and (max-width: 1200px) {
    .wedding-category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 500px) {
    .wedding-category-grid {
        grid-template-columns: 1fr;
    }
}


/* ----- Fresh Flower Care -------------------- */
#flower-care-faqs {
    display: grid;
    grid-template-columns: 170px 1fr;
    grid-gap: 0;
}

#flower-care-faqs dt {
    font-style: italic;
    color: #008000;
    font-weight: normal;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 16px;
    padding-left: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 40px;
    padding-top: 20px;
}

#flower-care-faqs dd {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 16px;
    border-bottom: 1px solid #eee;
    padding-left: 30px;
    padding-bottom: 40px;
    padding-top: 20px;
    margin-bottom: 0;
}


/* ----- Shop -------------------- */
.woocommerce-pagination .page-numbers li .page-numbers.current  {
    background: var(--theme-dark-purple);
    color: #fff;
}

.products .woocommerce-loop-product__title {
    color: var(--theme-dark-purple);
    display: block;
    font-weight: bold !important;
    margin: 0;
    text-transform: uppercase;
    font-size: 16px;
    line-height: 29px;
    padding-bottom: 0 !important;
    border: none;
}

.products .button {
    background: var(--theme-dark-purple);
    color: #fff;
    border-radius: 3px;
}

.products .price {
    font-size: 12px;
    line-height: 47px;
    margin-bottom: 0;
    padding-bottom: 0 !important;
}

.products .price > span:nth-child(1) {
    position: relative;
    top: -5px;
}

.products .price .amount {
    color: #000;
    font-size: 25px;
}

.products .onsale {
    display: none;
}

/* 1. Original Price (<del>): Small font and centered line */
.products .price del {
  text-decoration: none !important; /* Removes the broken native line */
  display: block !important;
  width: max-content;
  justify-self: center;
  line-height: normal !important;   /* Overrides the 20px bug */

  /* Creates a perfectly centered custom strike-through line */
  background-image: linear-gradient(transparent 47%, red 47%, red 53%, transparent 53%);
}

.products .price del * {
    font-size: 19px;
}

/* 2. New Sale Price (<ins>): Bigger font, bold, no line */
.products .price ins {
  text-decoration: none !important; /* Removes the browser underline */
  display: inline-block !important;
}

.products .price ins * {
    color: red;
    font-weight: normal;
    line-height: 1;
}


/* ----- Cart -------------------- */

/* layout */
.entry-content .woocommerce {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 20px;
    width: 100%;
}

.woocommerce-notices-wrapper {
    grid-column: 1 / span 2;
}

.wc-empty-cart-message {
    grid-column: 1 / span 2;
}

.cart-collaterals .cart_totals {
    float: none;
    width: 100%;
}

.wc-proceed-to-checkout a {
    background: var(--theme-blue) !important;
    font-size: 16px !important;
    font-weight: normal;
    border-radius: 5px;
}

/* table styles */
body.page-id-11 th,
body.page-id-11 td {
    padding: 5px 10px;
}


@media screen and (max-width: 1420px) {

    .entry-content .woocommerce {
        grid-template-columns: 1fr;
    }

    .woocommerce-notices-wrapper,
    .woocommerce-cart-form,
    .wc-empty-cart-message,
    .cart-collaterals {
        grid-column: 1;
    }
}

@media screen and (max-width: 1030px) {

    body.page-id-11 #content {
        grid-template-columns: 1fr;
        padding-left: 30px;
        padding-right: 30px;
    }

    body.page-id-11 #secondary {
        display: none;
    }

    body.page-id-11 #primary {
        grid-column: 1;
        padding-left: 0;
        border: none;
        width: 100%;
    }

}


/* ----- Checkout -------------------- */
body.woocommerce-checkout .col-1,
body.woocommerce-checkout .col-2{
	width:100%;
}



body.page-id-12 .wc-block-components-checkout-place-order-button {
    background: var(--theme-dark-purple);
}



/* ----- Search Results -------------------- */
body.search-results .products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px;
}

body.search-results .products::before {
    display: none;
}

body.search-results .products .product {
    width: 100% !important;
    margin-right: 0 !important;
}

@media screen and (max-width: 1400px) {
    body.search-results .products {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 768px) {
    body.search-results .products {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 500px) {
    body.search-results .products {
        grid-template-columns: 1fr;
    }
}


/* ----- Contact Us -------------------- */
#gform_wrapper_1 .gform_heading {
    display: none;
}

#gform_fields_1 {
    row-gap: 5px;
}

#gform_fields_1 .gfield .gfield_label {
    display: grid;
    grid-template-columns: max-content max-content;
    justify-content: right;
    font-weight: bold;
    padding-right: 15px;
}

#gform_wrapper_1 .gform-footer {
    margin-top: 0;
}

#gform_submit_button_1 {
    width: 100%;
    background: var(--theme-blue);
}

@media screen and (max-width: 640px) {
    #gform_fields_1 .gfield .gfield_label {
        justify-content: left;
    }
}


/* ----- Bridal Consultation -------------------- */
#gform_wrapper_3 .gform_heading {
    display: none;
}

#gform_wrapper_3 .gform-footer {
    margin-top: 0;
    padding-left: 255px;
}

#gform_submit_button_3 {
    width: 100%;
    background: var(--theme-blue);
}

#gform_fields_3 {
    row-gap: 5px;
}

/* 1. Target the row container, NOT just the label */
#gform_fields_3 .gfield {
    display: grid !important;
    /* Forces label to be exactly 240px or wider if text demands it, input fills the rest */
    grid-template-columns: minmax(240px, max-content) 1fr;
    justify-items: right;
    gap: 15px;
    width: 100%;
}

/* 2. Style the label inside the grid row */
#gform_fields_3 .gfield .gfield_label {
    grid-column: 1;
    text-align: right;
    font-weight: bold;
    /* Clear display grid overrides to force normal inline text wrapping */
    display: inline !important;
    white-space: normal !important;
    word-break: break-word;
    width: 100%;
}

/* 3. Force the inputs to span the entire remaining space */
#gform_fields_3 .gfield input,
#gform_fields_3 .gfield textarea,
#gform_fields_3 .gfield select,
#gform_fields_3 .gfield .ginput_container {
    grid-column: 2;
    width: 100% !important;
    max-width: 100% !important;
}

@media screen and (max-width: 768px) {

    #gform_fields_3 .gfield {
        grid-template-columns: 1fr;
        gap: 0;
    }

    #gform_fields_3 .gfield input,
    #gform_fields_3 .gfield textarea,
    #gform_fields_3 .gfield select,
    #gform_fields_3 .gfield .ginput_container {
        grid-column: 1;
    }

    #gform_fields_3 .gfield .gfield_label {
        text-align: left;
    }

    #gform_wrapper_3 .gform-footer {
        padding-left: 0;
    }
}
