/*
 Theme Name:   Storefront Child
 Description:  ACT Shops Override
 Author:       Michael Kinzl
 Author URI:   
 Template:     storefront
 Version:      1.0
 Text Domain:  storefront-child
*/

/* ------------------------------------ */
/* Color Schema                         */
/* ------------------------------------ */

:root {
    --primary: #2570af;
    --secondary: #105793;
    --green: #3cb44a;
    --red: #ea1f25;
    --warning: #ba2121;
    --invalid: #c03618;
    --bg-gray: #f6f6f6;
    --bg-dark: #efefef;
    --border-color: #ccc;
    --border-checkout: #b2b2b0;
    --border-dark: #a8a8a8;
    --text-color: #333;
    --bff-green: #2570af;
    --bff-magenta: #2570af;
    --box-shadow: 2px 2px 4px rgba(0,0,0,0.15);
}

/* ------------------------------------ */
/* Links                                */
/* ------------------------------------ */

.widget-area .widget a:hover,
.widget-area .widget a.current {
    color: var(--primary) !important;
}

/* ------------------------------------ */
/* Header                               */
/* ------------------------------------ */

@media (min-width: 768px) {
    .storefront-secondary-navigation .secondary-navigation {
        background-image: url('../../../assets/img/swb-shop.png');
        height: 140px;
        margin-bottom: -20px;
        background-repeat: no-repeat;
        background-size: 315px 60px;
        background-position: top 58px right 0px;
    }
}

/* ------------------------------------ */
/* Menu                                 */
/* ------------------------------------ */

.storefront-primary-navigation {
    border-top: solid 1px var(--primary);
    border-bottom: solid 1px var(--primary);
    background-color: var(--primary);
}

.site-header .primary-navigation ul.menu li > a,
.site-header .primary-navigation ul.menu li.current-menu-item > a {
	color: #ffffff !important;
}
.site-header #site-navigation ul.menu li.current-menu-item > a {
	border-bottom: solid 2px #ffffff;
}

.site-header nav.secondary-navigation a:hover {
	color: var(--primary) !important;
}
.site-header nav.secondary-navigation ul.menu li.current-menu-item > a {
	color: var(--primary) !important;
}

/* ------------------------------------ */
/* Products                             */
/* ------------------------------------ */

.site-main ul.products.columns-3 li.product {
    border: solid 1px var(--border-checkout);
}

.products .search-result .search-result-inner {
	border: solid 1px var(--border-checkout);
}

/* ------------------------------------ */
/* Shop                                 */
/* ------------------------------------ */

.wc-gzd-additional-info.shipping-costs-info {
    display: none !important
}

/* ------------------------------------ */
/* Cart                                 */
/* ------------------------------------ */

.site-header-cart .cart-contents {
    color: #ffffff !important;
}
.site-header-cart .cart-contents .count {
	opacity: 1;
}

/* ------------------------------------ */
/* Footer                               */
/* ------------------------------------ */

footer {
    border-top: solid 1px var(--primary);
    background-color: var(--primary) !important;
}
footer a,
footer span,
.footer-menu a,
.footer-copy {
	color: #ffffff !important;
}

.site-footer {
	color: #fff;
}

/* ------------------------------------ */
/* Mobile                               */
/* ------------------------------------ */

@media (max-width: 768px) {
    .storefront-primary-navigation {
        background-color: #ffffff;
        border: none;
    }
}

