/** Shopify CDN: Minification failed

Line 320:0 Unexpected "}"

**/
@charset "UTF-8";
/**
 * McMichael Gallery Shopify Theme
 *
 * @package Shopify
 * @author Rachel Schmidt and Katie Phillips @ Generator Design
 * @since V 1.0
 */

/* Variables*/
:root{
    --light-brown: #dbbc8c;
    --light-yellow: #fcf7e8;
    --secondary-dark:#333333;
    --red: #CF4D3C;
    --grey: #707070;
    --slightgrey: #E8E8E8;
    --lightgrey: #F0F0F0;
    --lightwgrey: #d8d8d8;
    --white: #ffffff;
    --black: #000000;
    --body-font: "McMichael Sans", Arial, Helvetica, sans-serif;
}

@font-face {
    font-family: "McMichael Sans";
    src: url("McMichaelSansRegular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "McMichael Sans";
    src: url("McMichaelSansMedium.woff2") format("woff2");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "McMichael Sans";
    src: url("McMichaelSansItalic.woff2") format("woff2");
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "McMichael Sans";
    src: url("McMichaelSansMediumItalic.woff2") format("woff2");
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

:root {
    /* Type scale */
    --font-h1: clamp(2.75rem, 5vw + 1rem, 5rem);
    /* 44px–80px */
    --font-h2: clamp(2.25rem, 4vw + 0.5rem, 3.75rem);
    /* 36px–60px */
    --font-h3: clamp(1.75rem, 3vw + 0.5rem, 2.75rem);
    /* 28px–44px */
    --font-h4: clamp(1.5rem, 2vw + 0.5rem, 2rem);
    /* 24px–32px */
    --font-h5: clamp(1.25rem, 1.5vw + 0.5rem, 1.5rem);
    /* 20px–24px */
    --font-h6: clamp(1.125rem, 1vw + 0.25rem, 1.25rem);
    /* 18px–20px */

    --font-xxs: 0.75rem;
    /* 12px */
    --font-xs: 0.875rem;
    /* 14px */
    --font-s: 1rem;
    /* 16px */
    --font-m: 1.125rem;
    /* 18px */
    --font-l: 1.25rem;
    /* 20px */
    --font-xl: 1.5rem;
    /* 24px */
    --font-xxl: 2rem;
    /* 32px */

    /* Spacing scale */
    --space-xxs: 0.1875rem;
    /* 3px */
    --space-xs: 0.375rem;
    /* 6px */
    --space-s: 0.75rem;
    /* 12px */
    --space-m: 1.125rem;
    /* 18px */
    --space-l: 1.5rem;
    /* 24px */
    --space-xl: 2.25rem;
    /* 36px */
    --space-xxl: 3rem;
    /* 48px */
}

/*Structure-----------------------------------------------------------------------------------------------------------*/
*{
    box-sizing: border-box;
}
body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: var(--white);
    color: var(--black);
    font-family: var(--body-font);
    letter-spacing: -.01em;
}

input:focus,
button:focus,
a:focus {
    outline: none !important;
    box-shadow: none !important;
}

.container, 
.container-fluid, 
.container-lg, 
.container-md, 
.container-sm, 
.container-xl, 
.container-xxl {
    max-width: calc(100% - 100px);
}
.title.container {
    width: 100%;
    max-width: 100% !important;
}

img{
    max-width: 100%;
}
section{
    margin: 3rem 0;
}
.wrapper{
   /* overflow-x:hidden; */
}
.full-width {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

/*Page Transitions*/
.transition-fade {
    transition: 0.4s;
    opacity: 1;
}
html.is-animating .transition-fade {
    opacity: 0;
}

/*Image Lightbox*/
.tobii{
    transition: 0.7s all ease;
}
.tobii[aria-hidden=true],.tobii__slider[aria-hidden=true]{
    display: block;
    opacity: 0;
    visibility: hidden;

}
.tobii__slide .tobii-image {
    transform: scale(1);
    transition: 0.5s all ease;
}
.tobii__slide[aria-hidden=true] .tobii-image {
    transform: scale(0.7);
}
.tobii-is-open .tobii__slide[aria-hidden=true] .tobii-image {
    transform: scale(1);
}
.tobii__slide figure>img{
    max-height: 85vh;
}
.tobii__slide .tobii-html{
    padding:3rem;
    border-radius: 0.5rem;
}
.tobii__slide .tobii-html > div{
    display: block !important;
}

/*Html Lightboxes*/
.modal-window {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s all;
}
.modal-window:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1;
}
.modal-content {
    position: relative;
    padding: 3rem;
    max-width: 90%;
    margin: 0 auto;
    max-height: 80vh;
    overflow-y: scroll;
    box-shadow: 1rem 0 2rem rgba(0, 0, 0, 0.2);
    border: 2px solid white;
    z-index: 2;
    border-radius: 0;
}
.modal-window .tobii__btn--close{
    z-index: 5;
    color:var(--white);
    width:1.5rem;
    height:1.5rem;
    top:0.5rem;
    left:0.5rem;
    right:auto;
}
.tobii__btn_dark{
    color:var(--black) !important;
}
.modal-window.open{
    opacity: 1;
    visibility: visible;
}
.modal-content::-webkit-scrollbar{
    width: 12px;
    height: 12px;
}
.modal-content::-webkit-scrollbar-thumb{
    background: var(--black);
    border-color: var(--black);
    border-radius:0;
}
.modal-content::-webkit-scrollbar-thumb:hover{
    background: var(--secondary-dark);
}
.modal-content::-webkit-scrollbar-track{
    background: var(--lightgrey);
    border-radius:0;
}

/*Typography----------------------------------------------------------------------------------------------------------*/

/*Titles*/
h1.alt,.h1.alt{
    font-family:var(--body-font);
    text-transform: none;
    font-size: 2.25rem;
    line-height: 110%;
}

/*Links*/

/*Copy*/
p,li,blockquote{
}
small {
    font-size: 70%;
}
.text-right{
    text-align: right !important;
}

/*Forms*/
input, label, textarea, select{
    width: 100%;
    display: block;
}
input[type="text"]:-moz-read-only, textarea:-moz-read-only{
    opacity: 0.5;
    background-color:var(--lightwgrey);
}
input[type="text"]:read-only,textarea:read-only{
    opacity: 0.5;
    background-color:var(--lightwgrey);
}
label,legend {
    text-transform: uppercase;
    display: block;
    margin-top: 0;
    margin-bottom: .5rem;
    font-weight: 500;
    font-size: var(--font-s);
    line-height: 1.2;
}
}
label.required:after,
legend.required:after, label > span{
    content: '*Required';
    color: var(--red);
    font-size: .8rem;
    float: right;
}
input, textarea, select{
    padding: 0.5rem;
    border:1px solid var(--lightgrey);
}
input:hover, input:focus, input:active, textarea:hover, textarea:focus, textarea:active, select:focus, select:active{
    border-color: var(--grey);
}
.form-group,.product-form__input{
    margin-bottom: 1.5rem;
}
.form-row-group{
    margin-bottom:0;
}
.form-row-group .row > div{
    margin-bottom: 1.5rem;
}

/*Recaptcha*/
.g-recaptcha{
    margin-bottom:2rem;
}

/*Radio Buttons*/
.radio-button{
    position: relative;
    display: inline-block;
    margin:0 .25rem 0 0;
}
.radio-button input{
    position: absolute;
    height: 100%;
    width:100%;
    opacity: 0;
    cursor: pointer;
}
.radio-button label{
    background-color: var(--white);
    border: 1px solid  var(--black);
    color:var(--black);
    padding: 0.2rem 1rem .1rem;
    border-radius: 2rem;
    cursor: pointer;
    transition: 0.3s all;
}
.radio-button input:checked ~ label{
    background-color: var(--black);
    color:var(--white);
}

/*Checkbox*/
.checkbox input[type="checkbox"] {
    opacity: 0;
}
.checkbox label {
    position: relative;
    display: inline-flex;
    padding-left: 3rem;
    min-height: 2rem;
    flex-direction: column;
    justify-content: center;
    width:auto;
}
.checkbox label::before {
    position: absolute;
    content: "";
    display: inline-block;
    height: 2rem;
    width: 2rem;
    background-color: var(--black);
    border-radius: 0.5rem;
    left: 0;
    top: 0;
}
.checkbox label svg {
    position: absolute;
    height: 16px;
    width: 16px;
    left: 8px;
    opacity: 0;
    visibility: hidden;
    transition:0.2s all;
}
.checkbox input[type="checkbox"]:checked + label svg {
    opacity: 1;
    visibility: visible;
}
.checkbox input[type="checkbox"]:focus + label:before {
    border:1px solid var(--black);
}
.checkbox input[type="checkbox"]:checked + label:before{
    box-shadow: 0 1px 5px rgba(0,0,0,0.1);
}

/*Searchboxes*/
.search-group{
    position:relative;
    display: flex;
    flex-direction: row;
}
.search-group input:focus{
    border-color:var(--black);
    outline:none;
}

/*Form Messages*/
.form-message,.form-status{
    position: relative;
    padding:1rem 1.5rem 1rem 2.5rem;
    border-radius: 1rem;
    margin-bottom:1rem;
    font-size:1rem;
}
.form-message.message-small,.form-status.message-small{
    font-size:0.7rem;
    padding:0.5rem 1.5rem;
    border-radius: 0 0 1rem 1rem;
}
.form-message svg,.form-status svg{
    position: absolute;
    top:50%;
    left:1rem;
    transform:translateY(-50%);
    width:20px;
    height: 20px;
}
.form-message.message-small svg,.form-status.message-small svg{
    display: none;
}
.form-message ul,.form-status ul{
    margin-bottom:0;
    padding-left:1.35rem;
}

/*Buttons-------------------------------------------------------------------------------------------------------------*/
.btn {
    padding: 1em 2em .75em;
    border-radius: 0 !important;
    border: 2px solid var(--black);
    background: var(--black);
    color: var(--white);
    font-weight: 400;
    transition: all .3s ease;
    text-transform: uppercase;
}
.btn:hover, 
.btn:focus {
    background: var(--lightwgrey);
    color: var(--black);
    border: 2px solid var(--black);
    transition: all .3s ease;
}
.btn-light {
    border: 2px solid var(--black);
    background: var(--black);
    transition: all .3s ease;
}
.btn-delete {
    background: var(--red);
    transition: all .3s ease;
}
.btn-outline-light {
    background: transparent;
    border: 2px solid var(--black);
    color: var(--black);
    transition: all .3s ease;
}
.btn-outline-light:hover {
    background: var(--lightwgrey);
    border: 2px solid var(--black);
    color: var(--black);
}

.wistlist-link:before {
    display: inline-block;
    content: '\f004';
    font-family: "Font Awesome 5 Free", sans-serif;
    font-weight: 400;
    padding-right: .5rem;
}
.wistlist-link:hover:before, 
.wistlist-link:focus:before, 
.wistlist-link:active:before {
    font-weight: 900;
}
.btn:disabled,.btn-disabled{
    background-color:var(--white);
    color:var(--grey);
    border:1px solid var(--grey);
}

.search-btn{
    padding:0.5rem 1rem;
}

/*Newsletter Embed Button*/
#newsletter-form button[type="submit"]{
    padding: 0.5rem 2.5rem;
    font-weight: 500;
    border-radius:unset;
    border:none;
    background-color: var(--black);
    border:2px solid var(--black);
    color: var(--white);
    transition: all .3s ease;
}
#newsletter-form button[type="submit"]:hover, #newsletter-form button[type="submit"]:focus{
    background-color: var(--lightgrey);
    color: var(--black);
    border-color: var(--lightgrey);
}





/*Hero Slider---------------------------------------------------------------------------------------------------------*/
.hero-item{
    height: 100%;
}
.hero-grid{
    height: 100%;
}
.hero-image{
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    min-height: 300px;
}
.hero-image img{
    height: 100%;
    min-width: 100%;
    margin: 0 auto;
 }
.hero-caption-container{
    position: relative;
    right:unset;
    left: unset;
    bottom: unset;
    background-color: var(--black);
}
.hero-caption-container .hero-caption{
    position: relative;
    color: var(--white);
    text-align: left;
    padding: 2rem 6rem 6rem 2rem;
    height: 100%;
    min-height: 600px;
    display: flex;
    align-items: center;

}
.hero-caption-container .hero-caption h2 {
    font-size: 3.75rem;
    text-transform: uppercase;
}
.hero-caption-container .hero-caption h2 small {
    display: block;
    font-size: 60%;
    font-weight: 300;
    line-height: 100%;
    margin-top:0.2rem;
}
.hero-caption-container .hero-caption p {
    font-size: 1.25rem;
    line-height: 1.5;
}
.hero-caption-container .hero-caption .hero-btn {
    text-decoration: none;
    display: inline-flex;
    font-size: 1.2rem;
    line-height: 1;
    padding: 15px 25px 11px 25px;
    border: 2px solid var(--black);
    background: transparent;
    color: var(--black);
    margin-top: 2rem;
    text-transform: uppercase;
    transition: all .5s ease;
    position: relative;
}
.hero-caption-container .hero-caption .hero-btn:hover, 
.hero-caption-container .hero-caption .hero-btn:focus {
    color: rgba(255,255,255,.9);
    background: var(--black);
}
.hero-arrows {
    position: absolute;
    left:32px;
    bottom: 0;
    padding-right: 2rem;
    padding-bottom: 2rem;
}
  
.hero-arrows .carousel-control-prev,
.hero-arrows .carousel-control-next {
    position: relative;
    display: inline-block;
    width: auto;
    opacity: 1;
    transition: all .5s ease;
}  
.hero-arrows .carousel-control-prev:hover {
    transform: translateX(-.125em);
}
.hero-arrows .carousel-control-next:hover {
    transform: translateX(.125em);
}
.hero-arrows .carousel-control-next-icon, 
.hero-arrows  .carousel-control-prev-icon {
    width: 3rem;
    height: 3rem;
}
.hero-arrows .carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}
.hero-arrows  .carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

/*Collection Feed-----------------------------------------------------------------------------------------------------*/
.collections {
}
.collections-feed{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap:1rem;
}
.collections-feed::before {
    content: '';
    width: 0;
    padding-bottom: 100%;
    -ms-grid-row: 1;
    grid-row: 1 / 1;
    -ms-grid-column: 1;
    grid-column: 1 / 1;
}
.collections-feed > *:first-child{
    -ms-grid-row: 1;
    grid-row: 1 / 1;
    -ms-grid-column: 1;
    grid-column: 1 / 1;
}
.collection-item {
    position: relative;
    text-align: center;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition:1s all;
    background-color: var(--white);
    min-height: 300px;
    border: none;
    transition: all .3s ease;
}
.collection-item:hover,
.collection-item:focus{
}
.collection-item a {
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    position: relative;
    color: var(--black);
    background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 15%, rgba(255,255,255,0) 40%);
    font-size: 1.5rem;
    text-decoration: none;
    transition: all .3s ease;
}
.collection-item a span {
    display: block;
    padding: 1rem .5rem;
    width: 100%;
    text-align: center;
    transition: all .3s ease;
}
.collection-item.flag a span {
    background-color: var(--red);
    color: var(--white);
}
.collection-item a:hover,
.collection-item a:focus,
.collection-item a:active {
    background: linear-gradient(0deg, rgba(0,0,0, .7) 0%, rgba(0,0,0, 0) 40%);
    color: var(--white);
}
.collection-item.flag a:hover span,
.collection-item.flag a:focus span,
.collection-item.flag a:active span {
    background-color: var(--black);
}

/*LinkList------------------------------------------------------------------------------------------------------------*/
.inline-list li{
    display: inline-block;
    margin:0.5rem;
}
.inline-list li a{
    text-decoration: none;
    background-color:var(--lightwgrey);
    padding:0.5rem 1rem;
    border-radius: 0.2rem;
    display: inline-block;
    font-size:1.2rem;
}
.inline-list li a:hover,.inline-list li a:focus{
    background-color:var(--light-yellow);
    color:white;
}

/*Title---------------------------------------------------------------------------------------------------------------*/
.title{
    padding:4rem 1rem 3rem 1rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--grey);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.title h1{
    display: block;
    text-align: center;
}
.title h1 small{
    font-size:1.2rem;
    color:var(--grey);
    text-align: left;
    display: block;
}
.title .btn{
    margin-top: 1.75rem;
    font-size: 1.35rem;
}

/*Title with background image*/
.title-has-bg-img{
    background-size: cover;
    background-position: center;
    overflow:hidden;
    position:relative;
}
.title-has-bg-img .bg-image{
    position:absolute;
    z-index: 0;
    bottom:0;
    top:0;
    left:0;
    right:0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.title-has-bg-img .bg-image img{
    width:100%;
    height: auto;
}
.title-has-bg-img .title{
    position: relative;
    z-index: 1;
    border-bottom: none;
    margin-bottom:0;
}

/*Collection Lists Page-----------------------------------------------------------------------------------------------*/
.tag-list{
    list-style: none;
    padding: 0;
    text-align: center;
    display: block;
}
.tag-list ul{
    padding:0;
}
.tag-list li{
    display: inline-block;
    border-right: 1px solid var(--black);
    margin-bottom: 1rem;
    line-height: 1rem;
}
.tag-list li:last-child{
    border-right: unset;
}
.tag-list li a{
    text-decoration: none;
    padding: 0 0.5rem;
    font-weight: 500;
}
.category-container{
    padding: 3rem;
}
.category-content{
    border:1px solid var(--lightgrey);
    background-color: var(--white);
    transition:1s all;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
}
.category-content a{
    text-decoration: none;
}
a.category-image{
    display: block;
    width: 100%;
    padding-top:100%;
    position: relative;
    background-position: center center;
    background-size: 100%;
    background-repeat: no-repeat;
}
a.category-image:after{
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 2rem;
    content: "\f06e";
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 100%;
    height: 100%;
    top:0;
    bottom:0;
    left:0;
    right:0;
    background-color: var(--light-yellow);
    color: var(--white);
    opacity: 0;
    transition: 0.5s all;
}
a.category-image:hover:after, a.category-image:focus:after{
    opacity: 0.6;
}
.category-title h4{
    font-size: 1.5rem;
    text-align: center;
    padding: 1.5rem 1rem;
    line-height: 100%;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Shop By Artist*/
.shop-by-artists .artists-list{
    display: block;
    padding: 1rem 0;
    list-style: none;
    text-align: center;
}
.shop-by-artists .artists-list a{
    text-decoration: none;
    font-weight: 500;
    font-size: 1.2rem;
    line-height: 1.5;
}

/*Collections/Products Page-------------------------------------------------------------------------------------------*/
.shop-body{
    padding-bottom:3rem;
}

/*Product Filters/Sorting*/
.product-sort{
    margin-bottom: 60px;
}
.breadcrumbs{
    list-style: none;
    padding: 0;
}
.breadcrumbs li {
    display: inline-block;
    font-size: var(--font-xs);
    font-weight: 500;
}
.breadcrumbs li+li:before{
    padding: 0.5rem;
    content: '/';
    font-weight: 400;
}
.breadcrumbs li a {
    font-weight: 400;
    text-decoration: none;
    color: var(--black);
    transition: all .3s ease;
}
.breadcrumbs li a.current{
    font-weight: 400;
    color: #666;
}
.breadcrumbs li a:hover {
    font-weight: 400;
    color: var(--black);
}
.sort-form{
    position: relative;
    display: block;
    border: 1px solid var(--grey);
    width: 100%;
}
.sort-form select{
    position: relative;
    z-index: 2;
    background-color:transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding:0.5rem 3rem 0.5rem 0.5rem;
    border:none;
    width:100%;
}
.sort-form svg{
    position: absolute;
    z-index: 1;
    top:50%;
    right:1rem;
    transform:translateY(-50%);
}

/*Pagination*/
.pagination{
    margin-top: 4rem;
    display: flex;
    justify-content: center;
}
.pagination .page-link{
    border: none;
    font-weight: normal;
    color: var(--black);
    display: block;
    line-height: 100%;
}
.pagination .page-link.active{
    font-weight: 500;
}
.pagination .arrow-link{
    background-color: var(--black);
    color: var(--white);
}
.pagination .arrow-link:hover, .pagination .arrow-link:focus{
    background-color: var(--light-yellow);
}

/*Sidebar*/
.side-widget{
    margin: 2rem 0;
}
.side-widget:first-child{
    margin-top:0;
}
.side-widget:last-child{
    margin-bottom:0;
}
.side-widget .widget-image{
    width: 100%;
    height: 180px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-color:var(--lightwgrey);
}
.side-widget .widget-content{
    padding: 2rem;
}
.widget-content h4{
    margin:0 0 1.5rem 0;
}
.widget-content ul{
    list-style: none;
    padding: 0;
    text-align: left;
}
.widget-content ul li{
    display: block;
    border:none;
}
.widget-list li a{
    text-decoration: none;
}
.widget-content p > a{
    background-color:var(--white);
    color:var(--black);
    padding:0.5rem 1.5rem;
    text-decoration: none;
    font-weight: bold;
    margin:0.5rem 0;
    display: inline-block;
}
.widget-content p > a:hover,.widget-content p > a:focus,.widget-content p > a:active{
    background-color:var(--black);
    color:var(--white);
}

/*Product Grid*/
.products{
    grid-area: products;
}
.products-feed-grid{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 100% 1rem 100%;
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
    align-content: space-between;
    justify-content: space-around;
}

/*Product Item*/
.product-item {
    position: relative;
    transition: all .3s ease;
    margin: 0 auto;
    width: 100%;
    max-width: 350px;
}
/*
.product-item::after {
    content: '';
    position: absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;
    display: block;
    z-index: 1;
    opacity: 0;
    transition: all .3s ease;
    background: rgba(255,255,255,.5);
}
    */
.product-item > a {
    position: absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;
    display: block;
    z-index: 2;
}
.product-image {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}
.product-image .product-overlay {
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: column;
    position: absolute;
    width: 100%;
    height: 100%;
    top:0;
    bottom: 0;
    right: 0;
    left: 0;
    color: var(--white);
    transition: all 1s ease;
    text-align: center;
    background: rgba(255,255,255,.75);
}
.product-item:hover::after,
.product-item:hover .product-overlay,
.product-item > a:hover ~ .product-image .product-overlay,
.product-item > a:focus ~ .product-image .product-overlay {
    opacity: 1;
}

/*View Button*/
.product-overlay .view-btn {
    display: inline-block;
    color: var(--black);
    text-decoration: none;
    transform:translateY(-1rem);
    transition: 0.65s transform ease;
}
.product-overlay .view-btn .icon {
    width: 25px;
    height: 25px;
}
.product-item:hover .product-overlay .view-btn,
.product-item > a:hover ~ .product-image .view-btn,
.product-item > a:focus ~ .product-image .view-btn{
    transform:translateY(0);
}

/*Add to Cart Button*/
.product-item .add-to-cart{
    position: absolute;
    width:100%;
    z-index: 9;
    text-align: center;
    opacity:0;
    transition: 0.45s all ease;
    top:0;
}
.product-item:hover .add-to-cart, .product-item > a:focus ~ .add-to-cart, .product-item:focus-within .add-to-cart{
    opacity: 1;
}
.product-item .add-to-cart .add-btn,.product-item .add-to-cart .btn{
    line-height: 100%;
    font-size:0.8rem;
    padding:1rem;
    text-transform: uppercase !important;
    width:auto;
}
.product-item .add-to-cart .add-btn:focus,.product-item .add-to-cart .btn:focus{
    opacity: 1;
}
.product-item .product-price .price{
    justify-content: center;
    text-align: center;
}

/*Product Content*/
.product-content{
    position: relative;
    padding: 2rem 3rem;
    text-align: center;
    background-color: white;
}
.product-content p{
    margin-bottom:0;
}
.product-title {
    margin-top: .25em;
    max-width: 500px;
}
.product-price {
    font-weight: 400;
    color: var(--grey);
    font-size: var(--font-m);
    text-align: center;
}

/*Not Found*/
.not-found{
    padding:2rem;
    border:2px solid var(--lightwgrey);
}
.not-found h2{
    font-size:2rem;
}

/*Product Page--------------------------------------------------------------------------------------------------------*/
.product-nav {
    padding:1rem 0;
    margin-bottom: 1.5rem;
}
.product-info {
    padding-top: 1.5rem;
}
.product-info .product-price {
    font-size: var(--font-m);
    margin-bottom: 1.5rem;
}

/*Price*/
.price {
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: var(--font-xl);
    font-weight: 400;
    line-height: 1;
}
.price .sale-price {
    display: none;
}
.price.on-sale .reg-price {
    font-size:60%;
    font-weight: normal;
    text-decoration: line-through;
    padding-right:0.5rem;
}
.price .badge{
    display: none;
    background-color:var(--white);
    color:var (--black);
    font-size:0.7rem;
    padding: .5em 2em .25em;
    border-radius: 2rem;
    font-weight: 400;
    margin-left:1rem;
}
.price.on-sale .price-badge-sale {
    text-transform: uppercase;
    display: inline;
    color: var(--white);
    background-color: var(--red);
}
.price .price-badge-member{
    display: inline;
    color:var(--white);
    background-color: var(--lightwgrey);
}
.price.sold-out .price-badge-sold-out{
    display: inline;
}

.products-feed-grid .price {
    font-size: var(--font-m);
}

/*Quantity*/
.quantity{
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom:1rem;
}
.quantity input{
    padding:0 0.2rem 0 1rem;
    border: 1px solid  var(--grey);
    height:3rem;
    font-size:1rem;
    max-width:4rem;
    text-align: center;
    border-left:none;
    border-right:none;
}
.quantity button.quantity-btn{
    background-color: transparent;
    border: 1px solid  var(--grey);
    height:3rem;
    width:3rem;
}
.quantity button.quantity-btn svg{
    height: 15px;
    width: 15px;
}

/*Add to Cart*/
.product-meta .add-to-cart .btn{
    line-height: 100%;
    padding: 1rem 2rem .75em 2em;
    border: 2px solid var(--black);
    text-transform: uppercase;
}
.product-meta .add-to-cart .btn.alt{
    background-color:white;
    border: 2px solid var(--black);
    color:var(--black);
}
.product-form__buttons > button{
    margin-bottom:0.5rem;
    width:100%;
}

/*Meta*/
.product-meta{
}
.product-meta .row > div{
    margin-bottom:2rem;
}
.product-sku{
    color: var(--grey);
    font-size: var(--font-s);
}
.product-description, .product-tags, .product-type{
    margin-bottom: 2rem;
}
.product-description .notice{
    padding:1rem 1.5rem;
    font-weight: bold;
    background-color:rgba(0,0,0,0.1);
}
.product-tags ul, .product-type ul{
    list-style: none;
    padding: 0;
}
.product-tags ul li, .product-type ul li{
    display: inline-block;
    font-weight: 500;
    color: var(--grey);
}
.product-tags ul li:not(:last-child):after, .product-type ul li:not(:last-child):after{
    content:',';
}
.product-tags ul li a, .product-type ul li a{
    text-decoration: none;
}

/*Product Images*/
.product-slide{
    transition: 1s all ease;
}
.product-thumbs{
    position: relative;
}
.product-thumbs [data-bs-target]{
    overflow: hidden;
    text-indent: unset;
    width:100px;
    height: 100px;
}
.image-container{
    text-align: center;
    padding:1rem;
}
.image-container img{
    width:auto;
    height: auto;
    max-height: 700px;
}
.zoom {
    display:inline-block;
    position: relative;
}
.zoom:after {
    content:'';
    display:block;
    width:33px;
    height:33px;
    position:absolute;
    top:0;
    right:0;
}
.zoomImg{
    background-color:white;
    transform: scale(1.25);
}
.zoom-btn{
    position: absolute;
    top:1rem;
    right:1rem;
    z-index: 99;
}

/*Product Share*/
.product-share{
    display: block;
    width: 100%;
    text-align: center;
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}
.product-share li {
    display: inline-block;
    font-weight: 400;
    color:var(--grey);
    margin: 0 0.25rem;
}
.product-share .heading {
    position: relative;
    top: 2px;
    display: inline-block;
} 
.product-share a {
    transition: all .3s ease;
} 
.product-share a:hover {
    color: var(--black);
    opacity: .7;
} 

/*Search--------------------------------------------------------------------------------------------------------------*/
.search-grid-section{
    width:100%;
}
.products-searchbar{
    margin-bottom:4rem;
}

/*Cart----------------------------------------------------------------------------------------------------------------*/
.cart{
    padding-bottom:3rem;
}
.cart-title{
    font-size:3rem;
    line-height: 100%;
    margin: 0;
}
.cart-title small{
    font-size: 1rem;
    color: rgba(var(--grey), 50%);
    text-transform: uppercase !important;
}
.cart-empty {
    text-align: center;
}
.cart-empty .btn {
    margin-top:2rem;
}
.cart-contents {
    padding-bottom: 3rem;
    border-bottom:0.01rem solid var(--grey);
}
.cart-items {
    width:100%;
}
.cart-items thead {
    border-bottom:0.01rem solid var(--grey);
}
.cart-items th {
}
.cart-item > td {
    padding-top: 1.5rem;
}
.cart-item-product-img .product-image-thumb {
    height: 120px;
    width:120px;
    overflow:hidden;
    background:var(--lightwgrey);
    display: flex;
    justify-content: center;
    align-items: center;
}
.cart-item-product-img .product-image-thumb img {
    max-width:100%;
    transition:0.5s all;
}
.cart-item-product-img .product-image-thumb:hover img,
.cart-item-product-img .product-image-thumb:focus img {
    transform: scale(1.2);
}
.vendor-name{
    font-size:0.8rem;
    font-style: italic;
    font-weight:300;
    margin-bottom:0.2rem;
}
.cart-item-product h4 {
    text-decoration: none;
    margin-top:0;
    margin-bottom:0;
    font-size: var(--font-xl);
}
.cart-item-product h4 a{
    text-decoration: none;
}
.cart-item-product h4 a:hover,.cart-item-product h4 a:focus{
    color: var(--black);
}
.cart-item-product dl,.product-option{
    margin-bottom:0;
}
.cart-item-product ul.discounts{
    padding:0;
}
.cart-item-product ul.discounts li{
    font-size:0.8rem;
}
.total-price {
    font-size: var(--font-xl);
}
.total-price p {
    margin-top: -.7em;
}
.product-option *{
    display: inline;
    color:var(--grey);
    font-weight: 400;
    font-style: italic;
    font-size:0.9rem;
}
.product-option dt{
    padding-right:0.2rem;
}
.cart-item-qty .product-quantity{
    display: inline-block;
}
.cart-item-qty .product-quantity label{
    display: none;
}
.cart-item-qty .remove-btn{
    display: inline-block;
    margin-left:1rem;
}
.cart-item-qty .icon-remove{
    width: 17px;
    height: 17px;
}
.cart-item-qty .icon-remove path{
    fill:var(--grey);
}

/*Login Request*/
h1#login {
    text-transform: uppercase;
}
.cart-login-request {
    background-color:var(--lightwgrey);
    padding: 2rem 2rem 1rem;
    text-align: center;
    font-size: 1rem;
    position: relative;
}
.cart-login-request a {
    border-bottom: 2px solid var(--black);
}

/*Cart Notice*/
.cart-notice{
    background-color:var(--black);
    color:white;
    margin-bottom:2rem;
    padding:2rem 2rem 1.5rem;
    text-align: center;
    font-size: 1rem;
    position: relative;
}
.cart-notice svg {
    position: absolute;
    top:-0.75rem;
    left:50%;
    transform:translateX(-50%);
}
.cart-notice a {
    color: var(--white);
    border-bottom: 2px solid var(--white);
}
.cart-notice a:hover,
.cart-notice a:focus {
        color: var(--white);
    }

/*Cart Note*/
.cart-note {
    display: block;
    margin:3rem 0;
}
.cart-note textarea{
   height: 100px;
}
.cart-note label {
    text-transform: uppercase;
}
/*Discounts*/
.discounts{
    margin:0;
    display:flex;
    flex-wrap: wrap;
}
.discounts li{
    background-color:var(--lightwgrey);
    font-weight: bold;
    color:var(--secondary-dark);
    display: inline-block;
    margin:0.3rem;
    border-radius: 2rem;
    padding:0.5rem 1.5rem;
}
.discounts li:first-child{
    margin-left:0;
}
.discounts li:last-child{
    margin-right:0;
}

/*Totals*/
.totals p{
    text-align: right;
}
.tax-note{
    font-size:0.9rem;
    font-style: italic;
}
.cart-tas .row{
    justify-content: center;
}
.cart-tas button{
    margin-left:1rem;
    width:100%;
}
.cart-tas button:first-child{
    margin-left:0;
}
.additional-checkout-buttons{
    text-align: center;
}
.additional-checkout-buttons ul{
    justify-content: center !important;
}

/*Add to Cart Notification*/
.cart-notification{
    color:var(--black);
}
.cart-notification h2{
    color:var(--black);
}
.cart-notification-product{
    margin-bottom:2rem;
    font-size:1.3rem;
    font-style: italic;
}

/*Page----------------------------------------------------------------------------------------------------------------*/
.page-header{
    padding: 5rem 0;
}
.page-title h1{
    display: block;
    text-align: center;
}
.page-content{
    font-size:1.2rem;
    line-height: 150%;
}
.page-content hr{
    margin:3rem 0;
}

/*Contact Page--------------------------------------------------------------------------------------------------------*/
#contact{
    padding: 0 2rem;
}
.contact-sidebar{
    padding: 1rem 2rem;
}

/*Account-------------------------------------------------------------------------------------------------------------*/
.return-link {
    font-size: var(--font-m);
    text-decoration: none;
    background-color: var(--lightwgrey);
    padding: 1em 2em .75em;
    line-height: 100%;
    display: inline-block;
    margin-bottom: 0.2rem;
    width: 100%;
    transition: all .3s ease;
    text-transform: uppercase !important;
}
.return-link:hover,.return-link:focus{
    background-color: var(--black);
    color:white;
}
.logout-link{
    background-color:var(--black);
    color:white;
}
.logout-link:hover,.logout-link:focus{
    background-color:var(--black);
}
.shopify-challenge__container{
    min-height: 40vh;
    padding:5rem 0;
}
.shopify-challenge__button{
    width:auto;
    margin:0 auto;
}

.account-info .account-name{
    line-height: 120%;
}
.account-info .account-name strong{
    display: block;
}
.account-info .account-name small{
    font-weight: bold;
    color:var(--red);
}
.account-info .btn{
    margin-bottom:0.5rem;
}
.account-info .btn:hover,.account-info .btn:focus,.account-info .btn:active{
    background-color:var(--white) !important;
    color:var(--black) !important;
}

/*Membership----------------------------------------------------------------------------------------------------------*/
.membership-section{
    flex:1;
}

/*GiftCard------------------------------------------------------------------------------------------------------------*/
.gc-price p{
    font-size: 1.5rem;
    font-weight: bold;
}
.gc-code{
    max-width:600px;
    margin:2rem auto 0.5rem;
}
.gc-code input{
    font-size: 1.5rem;
}
.gc-copy-code .btn{
    padding:0.5rem 1rem;
    line-height: 100%;
    text-wrap: none;
}

/*Footer--------------------------------------------------------------------------------------------------------------*/
.signup-section{
    background-color: var(--light-yellow);
    color:var(--white);
    text-align: center;
    padding: 2rem 0;
    margin:0;
}
.signup-section .container{
    max-width:1200px;
}
.signup-section .row > div:first-child{
    margin-bottom:2rem;
}
.signup-section h3{
    font-weight:600;
    font-size: 1.6rem;
    margin-bottom:0.4rem;
}
.signup-section .btn{
    font-size: 1.75rem;
}

/*Sign up Form*/
.ctct-form-embed.form_2 .ctct-form-defaults{
    background-color:transparent !important;
}

footer{
    margin-top: 2rem;
    background-color: var(--black);
    color:var(--white);
}
footer a, .signup-section a{
    color:var(--white);
}
.footer-content{
    word-break: break-word;
}
.footer-brand{
    display: block;
    padding:0 1rem;
}
.footer-brand img{
    max-width: 280px;
    width:100%;
    height: auto;
}
.footer-contact{
    padding:2rem;
}
.footer-contact p, .footer-contact a{
    color: var(--lightgrey);
    transition: 0.3s color;
}
.footer-contact a:hover, .footer-contact a:focus{
    color:var(--lightwgrey);
}
.social-links{
    list-style: none;
    padding: 0;
}
.social-links li{
    display: inline-block;
}
.social-links li a{
    font-size:1.1rem;
    padding: 0 0.3rem;
    transition: 0.3s color;
}
.footer-contact .social-links li a{
    color: var(--white);
}
.social-links li a:hover, .footer-contact .social-links li a:focus{
    color: var(--lightwgrey);
}
.footer-nav{
    width:100%;
}
.footer-items{
    padding: 1.2rem;
}
.footer-items h4{
    display: block;
    font-size: 1.25rem;
    padding-bottom:.5rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--grey);
}
.footer-items ul{
    list-style: none;
    padding: 0;
}
.footer-items ul li a{
    text-decoration: none;
    color: var(--lightwgrey);
    transition: 0.3s color;
}
.footer-items ul li a:hover, .footer-items ul li a:focus{
    color:var(--white);
}
.footer-widgets,.footer-menus{
    padding: 2rem 1rem;
}
.footer-widget{
    border: 1px solid var(--grey);
    padding: 1.5rem;
}
.footer-widget h3{
    text-align: center;
    font-size: 3.5rem;
    margin-bottom:2rem;
    line-height: 100%;
}
.footer-widget h3 span{
    display: block;
    font-size: 60%;
    line-height: 100%;
    font-weight:normal;
}
.footer-widget .btn{
    display: block;
    padding: 0.5rem;
}
.credit-bar{
    background-color: var(--secondary-dark);
    color: var(--white);
    padding: .5rem 0;
}
.credit-bar a{
    margin-left:2rem;
    text-decoration: none;
    transition: 0.3s color;
}
.credit-bar a:hover, .credit-bar a:focus{
    color: var(--lightwgrey);
}

/*Pre-orders----------------------------------------------------------------------------------------------------------*/
.swal2-styled.swal2-confirm{
    background-color:var(--black) !important;
}

/*Responsive----------------------------------------------------------------------------------------------------------*/

/*Phones*/
@media (min-width: 576px) {
    /*Structure*/
    .return-link{
        width:auto;
    }
    /*Collection Feed*/
    .collections-feed{
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 48% 2% 48%;
        grid-template-columns: repeat(2,48%);
        gap:2%;
    }
    .collection-item{
        min-height: 440px;
    }

    /*Product Items*/
    .products-feed-grid{
        -ms-grid-columns: 48% 1rem 48%;
        grid-template-columns: repeat(2, 2fr);
    }
    
    /*Product Grid*/
    .product-grid,.search-grid-section .product-grid{
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 1fr 1rem 1fr;
        grid-template-columns: repeat(2, 1fr);
        gap: 60px;
    }
    
    /*Category Carousel*/
    .category-inner .carousel-item.active,
    .category-inner .carousel-item-next,
    .category-inner .carousel-item-prev {
        display: flex;
        justify-content: center;
    }
    .category-container{
        padding: 3rem 1.5rem;
    }
    .category-slide .carousel-control-next, .category-slide  .carousel-control-prev{
        width:auto;
    }
    .category-slide .carousel-control-prev{
        left:-2rem
    }
    .category-slide .carousel-control-next{
        right:-2rem
    }
}
@media (max-width: 767px) {
    /*Structure*/
    .sm-hide{
        display: none;
    }

    /*Product Grid*/
    .products-grid-section{
        padding-bottom: 4rem;
    }

    /*Category Carousel*/
    .carousel-inner .carousel-item > div {
        display: none;
    }
    .carousel-inner .carousel-item > div:first-child {
        display: block;
    }

    /*Cart*/
    .cart-items{
        display: block;
    }
    .cart-item{
        display: grid;
        grid-template: repeat(2,auto)/repeat(4,1fr);
        gap: 1.5rem;
        width:100%;
    }
    .cart-item-product-img {
        grid-row: 1/3;
    }
    .cart-item-product {
        grid-column: 2/4;
    }
    .cart-item-qty {
        grid-column: 2/5;
        padding-top: 0 !important;
    }
    .cart-item-total{
        grid-row: 1/2;
        grid-column: 4/5;
    }
    .cart-item-total .price{
        justify-content: flex-end;
    }
}

/*Tablets*/
@media (min-width: 768px) {
    /*Structure*/
    section{
        margin: 5rem 0;
    }
    /*Typography*/
    h1,.h1{
        font-size: 3.75rem;
    }
    h1.alt,.h1.alt{
        font-size: 3.25rem;
    }
    h2,.h2{
        font-size:3rem;
    }
    h3,.h3{
        font-size:2.5rem;
    }
    h4,.h4{
        font-size:2rem;
    }
    h5,.h5{
        font-size:1.5rem;
    }
    .text-md-right{
        text-align: right !important;
    }
    .text-md-left{
        text-align: left !important;
    }
    

    .product-images {
        padding-right: 6rem;
    }
    
    /*Footer*/
    .footer-contact,.footer-widgets,.footer-menus{
        padding: 2rem;
    }
    .footer-widget{
        padding: 1.7rem;
    }

    /*Hero Carousel*/
    .hero-inner{
        height: 600px;
    }
    .hero-grid{
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    }
    
    /*Category Carousel*/
    .category-inner .carousel-item-end.active,
    .category-inner .carousel-item-next {
        transform: translateX(33%);
    }
    .category-inner .carousel-item-start.active,
    .category-inner .carousel-item-prev {
        transform: translateX(-33%);
    }
    .shop-by-artists .artists-list{
        -moz-column-count: 3;
             column-count: 3;
    }
    .category-inner .carousel-item-end,
    .category-inner .carousel-item-start {
        transform: translateX(0);
    }

    /*Product Item*/
    .product-item .add-to-cart{
        top:60%;
    }
    .product-item:hover .add-to-cart, .product-item > a:focus ~ .add-to-cart, .product-item:focus-within .add-to-cart{
        top:50%;
    }
    .product-item .add-to-cart .add-btn{
        font-size:1rem;
        padding: 1rem 2.5rem;
    }

    /*Product Filters/Sorting*/
    .sort-form{
        max-width:300px;
    }

    /*Product Page*/
    .product-info {
        padding-top:0;
    }
    .product-info .product-price{
        margin-bottom:3rem;
    }
    .product-slide {
    }
    .product-form__buttons > button {
        margin-bottom:0;
        width:auto;
    }
}
@media (max-width: 960px) {
    /*Structure*/
    .md-hide{
        display: none;
    }

    /*Navbar*/
    .navbar-top .container{
        max-width:100%;
    }
}



/* McMichael Theme */

    

    /* Base reset */
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html,
    body {
      height: 100%;
    }

    body {
      font-family: "McMichael Sans", Arial, Helvetica, sans-serif;
      font-size: var(--font-m);
      font-weight: 400;
      line-height: 1.6;
      color: var(--black);
      background: var(--white);
      margin: 0;
      zoom: 100%;
    }

    /* Headings */
    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
      /* letter-spacing: -.025em; */
      line-height: 0.9;
      margin-top: var(--space-xl);
      margin-bottom: var(--space-m);
      font-weight: 400;
    }

    h1 {
      font-size: var(--font-h1);
    }

    h2 {
      font-size: var(--font-h2);
    }

    h3 {
      font-size: var(--font-h3);
    }

    h4 {
      font-size: var(--font-h4);
    }

    h5 {
      font-size: var(--font-h5);
    }

    h6 {
      font-size: var(--font-h6);
    }

    .title-container h1 {
        text-transform: uppercase;
        text-align: left;
        width: 50%;
        max-width: 700px;
    }
    .title-container .title {
        padding: 6rem 0 5rem;
        display: block;
        text-align: left;
        border: none;
    }

    .uppercase {
        text-transform: uppercase;
    }

    /* Class to reverse all uppercase global heading rule */
    .c {
      text-transform: lowercase !important;
    }

    /* Paragraphs */
    p {
      margin-top: 0;
      margin-bottom: var(--space-m);
    }

    strong,
    b {
      font-weight: 500;
    }

    body.font-loaded strong,
    body.font-loaded b {
      font-weight: 500;
    }

    /* Links */
    a {
    }
    a:hover,
    a:focus {
        color: var(--black);
    }

    a,
    #main p a {
      position: relative;
      color: var(--black);
      text-decoration: none;
    }

    /* Thin base line (static) */
    #main p a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -0.125em;
      width: 100%;
      height: 1px;
      background: var(--black);
      pointer-events: none;
    }

    /* Thick animated line (starts at 0 width) */
    #main a::before {
      display: inline-block;
      content: "";
      position: absolute;
      left: 0;
      bottom: -0.125em;
      width: 0;
      height: 2px;
      background: var(--black);
      transition: width 0.3s ease;
      pointer-events: none;
      z-index: 1;
    }

    #main a:hover::before,
    #main a:focus::before {
      width: 100%;
    }

    /* Lists */
    ul li,
    ol li {
    margin-bottom: var(--space-xs);
    }
    ul li:last-child,
    ol li:last-child {
    margin-bottom: 0;
    }

    ul {
    list-style-type: disc;
    }
    ul ul {
    list-style-type: circle;
    margin-top: var(--space-xs);
    padding-left: var(--space-m);
    }

    ol {
    list-style-type: decimal;
    }
    ol ol {
    list-style-type: lower-alpha;
    margin-top: var(--space-xs);
    padding-left: var(--space-m);
    }

    .list--unstyled {
    list-style: none;
    margin: 0;
    padding: 0;
    }
    .list--unstyled li {
    margin-bottom: var(--space-xs);
    }

    .list--inline {
    list-style: none;
    padding: 0;
    margin: 0;
    }
    .list--inline li {
    display: inline-block;
    margin-right: var(--space-s);
    }
    .list--inline li:last-child {
    margin-right: 0;
    }

    dl {
    margin-bottom: var(--space-l);
    }
    dl dt {
    font-family: "FeedSansMedium";
    font-weight: 500;
    margin-bottom: var(--space-xxs);
    }
    dl dd {
    margin-bottom: var(--space-s);
    margin-left: var(--space-m);
    }

    /* Utility font size classes */
    .xxs {
      font-size: var(--font-xxs);
    }

    .xs {
      font-size: var(--font-xs);
    }

    .s {
      font-size: var(--font-s);
    }

    .m {
      font-size: var(--font-m);
    }

    .l {
      font-size: var(--font-l);
    }

    .xl {
      font-size: var(--font-xl);
    }

    .xxl {
      font-size: var(--font-xxl);
    }

    hr {
        height: 1px;
        background-color: var(--grey);
        border: none;
        width: 100%;
        margin: 2rem 0;
        opacity: 1;
    }


    /* Notification Bar */
    .notification-bar {

    }
    .notification-bar a {
        background-color: var(--black);
        color: var(--white);
        display: block;
        position: relative;
        text-align: center;
        padding: .75em 30px;
        font-weight: 400;
        font-size: .9rem;
        line-height: 1.2;
        text-decoration: none;
        transition: all .5s ease;
    }
    .notification-bar > a:hover,.notification-bar > a:focus{
        background-color: var(--lightwgrey);
        color: var(--black);
    }
    .notification-bar i{
        padding-left:1rem;
        transition: padding-left 1s ease;
    }
    .notification-bar > a:hover i,.notification-bar > a:focus i{
        padding-left:2rem;
    }

    /* Header layout */
    #header {
      background:  var(--white);
      position: fixed;
      width: 100%;
      box-shadow: 0 15px 15px rgba(0, 0, 0, 0.05);
      top: 0;
      left: 0;
      z-index: 1000;
      transition: transform 0.3s ease;
    }

    #MainContent {
        margin-top: 200px;
    }

    #header .header-content {
      display: flex;
      justify-content: space-between;
      align-items: stretch;
      padding: 30px 60px 0px 60px;
      width: 100%;
    }

    .hide-header {
      transform: translateY(-100%);
    }

    .logo {
      flex-shrink: 1;
      min-width: 0;
      max-width: 100%;
      margin-right: 20px;
    }

    .logo svg {
      display: block;
      width: 380px;
      max-width: 100%;
      height: auto;
      object-fit: contain;
    }

    .logo:hover {
      opacity: 0.7;
      transition: opacity 0.3s ease;
    }
    
    nav {
    all: unset;
    display: block;
    }

    nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    }

    nav li {
    margin: 0;
    padding: 0;
    }

    nav a {
    text-decoration: none;
    color: inherit;
    }

    .top-menu {
        margin-top: 7px !important;
    }

    .dropdown-toggle::after {
        border: none !important;
        margin-left: 0 !important;
    }

    /* Hamburger */
    #hamburger {
      display: none;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      width: 40px;
      min-width: 40px;
      gap: 12px;
      cursor: pointer;
      z-index: 100;
    }

    #hamburger span {
      display: block;
      width: 100%;
      height: 4px;
      height: 4px;
      background: var(--black);
      transition: all 0.3s ease;
    }

    #hamburger.active span:nth-child(1) {
      position: relative;
      top: 16px;
      width: 48px;
      rotate: 135deg;
    }

    #hamburger.active span:nth-child(2) {
      opacity: 0;
    }

    #hamburger.active span:nth-child(3) {
      position: relative;
      top: -16px;
      width: 48px;
      rotate: -135deg;
    }








/* NEW */
.header-icons {
    display: flex;
    gap: 20px;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}
.header-icons svg {
    width: 28px;
    height: auto;
    flex-shrink: 0;
    display: block;
    margin-top: -5px;
}
.cart-btn svg {
    width: 33px;
    height: auto;
}
.cart-btn,
.cart-btn span {
    font-size: 18px;
    line-height: 1;
    color: var(--white);
    position: relative;
}
.cart-btn span.currency-code {
    color: var(--black);
    z-index: 100;
}
.cart-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    position: relative;
}
.cart-btn .cart-count {
    position: absolute;
    top: -13px;
    left: 17px;
    background: var(--black);
    color: var(--white);
    width: 22px;
    height: 22px;
    font-size: 13px;
    line-height: 1;
    text-align: center;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 2px 0px 0 0;
    white-space: nowrap;
    transition: all .3s ease;    
}
.header-icon a,
.search-toggle,
.search-close {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: black;
    transition: all .3s ease;
}
.header-icon a svg,
.search-toggle svg,
.search-close svg {
  transition: all .3s ease;
}
.header-icon a:hover svg,
.search-toggle:hover svg,
.search-close a:hover svg {
  transform: scale(1.1);
}
.search-toggle {
    border: none;
    background: none;
}
.search-wrapper {
    position: relative;
}
.search-box {
    position: absolute;
    top: calc(50% - 3px);
    right: 40px;
    transform: translateY(-50%);
    width: 0;
    backface-visibility: hidden;
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: width 0.3s ease;
        box-sizing: border-box;
}
.search-box input {
    border: 1px solid var(--black);
    padding: 6px 8px;
    width: 300px;
    background: var(--white);
    color: var(--black);
    appearance: none;
}
.search-wrapper.active .search-box {
    width: 300px;
}
.search-close {
    margin-top: 5px;
}

.cart-btn:hover .cart-count {
  transform: scale(1.2);
  transition: all .3s ease;
}
.hidden-count {
    display: none !important;
}

















/* Header Content Menu*/
.main-menu {
    color: var(--black);
    text-align: center;
    box-shadow: 0 15px 15px rgba(0, 0, 0, 0.05);
}
.navbar-nav-alt {
    display: flex;
    flex-direction: row;
    gap: 1.25em;
    padding: 20px 60px 0 60px;
    width: 100%;
}
.navbar-nav-alt .nav-item {
    font-size: var(--font-l);
    color: var(--black);
    text-align: left;
}
.navbar-nav-alt .nav-item .nav-link:focus, 
.navbar-nav-alt .nav-item .nav-link:hover {
    color: var(--black);
}
.navbar-nav-alt .nav-item .nav-link {
    display: block;
    color: var(--black); 
    position: relative;
    height: 100%;
    padding: 5px 0 15px 0;
}
.navbar-nav-alt .nav-item .nav-link .icon-caret {
    display: none;
}
.navbar-nav-alt .nav-item .nav-link.active {
    font-weight: 400;
}

/* Dropdown Menu*/
.dropdown-menu {
    background: var(--white);
    color: var(--black);
    display: block;
    opacity: 0;
    visibility: hidden;
    border-radius: unset;
    margin-left: -30px;
    padding: 0 !important;
    border: 0;
    transform: translateY(-10px);
    transition: all .3s ease;
    box-shadow: 0 15px 15px rgba(0, 0, 0, 0.05);
}
.dropdown-menu li {
    padding: .5em 2em;
}
.dropdown-item {
    display: inline;
    font-size: var(--font-m);
    line-height: 1.1;
    font-weight: 400;
    padding: .5em 0;
    transition: all 0.3s ease;
    cursor: pointer;
}
.dropdown-item:focus, 
.dropdown-item:hover,
.dropdown-item:active,
.sub-dropdown-item:active {
    color: var(--black);
    background: transparent;
}
.dropdown-item.dropdown-title + .sub-dropdown-menu {
    height: 300px;
    overflow-y: auto;
    margin-top: .5rem;
}

/*Dropdown Toggle*/
.dropdown-toggle:after {
    content: none;
}
.dropdown-toggle .icon-caret {
    transition: 0.4s transform ease;
    content:'';
    width: 0.8rem;
    margin-left: 0.2rem;
    font-family: "Font Awesome 5 Free", sans-serif;
    display: inline-block !important;
}
.dropdown-toggle.show .icon-caret {
    transform: rotate(180deg);
}

/*Sub Sub Dropdown Menu*/
.sub-dropdown-menu {
    list-style: none;
    padding-left: 0;
}
.sub-dropdown-item {
    font-size: var(--font-xs);
    letter-spacing: -.02em;
    line-height: 1.1;
    padding: 0;
    display: inline-block;
    position: relative;
    text-decoration: none;
}
.sub-dropdown-item::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-top: -1px;
    margin-right: 5px;
    vertical-align: middle;
    flex: 0 0 8px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'><path d='M2 1 L6 4 L2 7' stroke='currentColor' stroke-width='1' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
    transform: translateY(0.5px);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.sub-dropdown-item:focus, 
.sub-dropdown-item:hover {
    color: var(--black);
    background-color: transparent;
}
.sub-dropdown-menu li {
    padding: .05em 0 !important;
}
.sub-dropdown-menu li:first-child {
    margin-top: .5em;
}
.dropdown-menu li:first-child {
    padding-top: 1.5em;
}
.dropdown-menu li:last-child {
    padding-bottom: 1.5em;
}

/* Animated underline hover effect for menu links */
.nav-link,
.dropdown-item {
    position: relative;
    text-decoration: none;
}

.nav-link::after,
.dropdown-item::after,
.sub-dropdown-item:after  {
    content: "" !important;
    position: absolute;
    left: 0;
    bottom: -.35em;
    width: 0;
    height: 2px;
    background: var(--black);
    transition: width 0.3s ease;
}
.nav-link::after  {
    bottom: .75em;
}
.dropdown-item::after  {
    bottom: 0em;
}
.nav-link:hover::after,
.dropdown-item:hover::after,
.sub-dropdown-item:hover::after {
    width: 100%;
}


/*Mega Menus*/
.mega-image{
    display: inline-block;
    position: relative;
    width: 100%;
    height: 100px;
    min-height: 250px;
    background-color: #dbdbdb;
    background-position: center center;
    background-size: 100%;
    background-repeat: no-repeat;
    transition:0.7s all ease;
}
.mega-image:hover{
    background-size:120%;
}
.mega-image .dropdown-item{
    position: absolute;
    padding: 1rem;
    font-size: .75rem;
    bottom: 0;
    right: 0;
    width: inherit;
    background-color: rgba(255,255,255,0.45);
    color: var(--black);
    text-align: right;
    transition: all 0.5s ease;
}
.mega-image .dropdown-item:hover,.mega-image .dropdown-item:focus{
    background-color:rgba(0,0,0,0.75);
    color: var(--white);
}
.mega-image .dropdown-item svg{
    width: 15px;
    transition: .75s transform;
}
.mega-image .dropdown-item:hover svg,.mega-image .dropdown-item:focus svg{
    transform: translateX(5px);
}





/* Main content */
#main {
    background: var(--white);
    padding: 185px 60px 60px 60px;
}

/* Footer */
#footer {
    background: var(--black);
    color: var(--white);
    padding: 40px 60px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-left {
    flex: 1 1 45%;
}

.footer-right {
    flex: 1 1 45%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.footer-text-box {
    margin-bottom: 40px;
}

.footer-address {
    margin-bottom: 40px;
}

.footer-address p {
    font-size: 14px;
    margin-bottom: 20px;
}

.footer-address .footer-mini-menu {
    font-size: 14px;
}

.footer-text {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-copy {
    font-size: 12px;
    margin-bottom: 0;
}

.footer-menu {
    display: flex;
    gap: 50px;
}

.footer-menu-col {
    display: flex;
    flex-direction: column;
    gap: .5em;
    /*width: 50%;*/
    font-size: 18px;
    margin-bottom: 60px;
    flex: 1 1 auto;
    align-items: flex-start;
}

.footer-menu-col a {
    display: inline;
    flex: 0 0 auto;
    width: auto;
    position: relative;
}

.footer-bottom-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

.footer-spacer {
    flex-grow: 1;
}

.footer-mini-menu {
    font-size: 12px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Animated underline hover effect for footer links */
.footer-mini-menu a,
.footer-menu a {
    display: inline-block;
    position: relative;
    text-decoration: none;
    color: var(--white);
    flex: 0 0 auto;
    width: auto;
}

.footer-mini-menu a::after,
.footer-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -.125em;
    width: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.8);
    transition: width 0.3s ease;
}

.footer-mini-menu a::after {
    height: 1px;
}

.footer-mini-menu a:hover::after,
.footer-menu a:hover::after,
.footer-mini-menu a::after {
    width: 100%;
}

.footer-logo img {
    width: 100%;
    display: block;
    margin-top: 40px;
}

.footer-social {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    list-style: none;
    gap: .25rem;
}

.footer-social a {
    margin: 0;
    display: inline-block;
    font-size: 1rem;
    line-height: .5em;
    padding: .25rem;
}

.footer-social a:hover,
.footer-mini-menu a:hover {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.footer-social svg {
    fill: var(--white);
    max-width: 24px;
    height: auto;
}

/* Responsive media query for under 960px */
@media (max-width: 960px) {

    #header {
        position: relative;
    }
    #header .header-content {
        flex-direction: row;
        align-items: center;
        position: relative;
        flex-wrap: wrap;
        padding: 30px;
    }
    .hide-header {
        transform: none;
    }

    .logo {
        flex: 0 0 calc(100% - 80px);
    }
    #hamburger {
        display: flex;
        flex: 0 0 50px;
    }
    .top-menu {
        flex: 0 0 100%;
        margin-top: 25px !important;
        margin-bottom: -10px;
        justify-content: center;
    }
    #hamburger {
        display: flex;
    }

    #main {
        padding: 60px;
    }

    #MainContent {
        margin-top: 0;
    }

    .container, 
    .container-fluid, 
    .container-lg, 
    .container-md, 
    .container-sm, 
    .container-xl, 
    .container-xxl {
        padding-right: var(--bs-gutter, 30px);
        padding-left: var(--bs-gutter, 30px);
        max-width: 100%
    }

    .footer-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-left {
        order: 2;
    }

    .footer-right {
        order: 1;
        align-items: flex-start;
        text-align: left;
        width: 100%;
    }

    .footer-bottom-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .footer-menu {
        width: 100%;
        gap: 1em;
        margin-bottom: 50px;
    }

    .footer-menu-col {
        margin-bottom: 0;
    }

    .search-box {
        display: flex;
        align-items: center;
        gap: 10px;
        position: fixed;
        z-index: 200;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        height: 0;
        padding-left: 30px;
        padding-right: 30px;
        padding-top: 0;
        padding-bottom: 0;
        opacity: 0;
        overflow: hidden;
        background: rgba(255, 255, 255, .96);
        transform: translateY(-101%);
        transition: all .3s ease;
        box-shadow: 0 15px 15px #0000000d;
    }
    .search-wrapper.active {
    }
    .search-wrapper.active .search-box {
        position: fixed;
        transform: none;
        width: 100%;
        opacity: 1;
        height: auto;
        padding-top: 42px;
        padding-bottom: 42px;
    }
    .search-toggle-wrapper {
        margin-left: auto;
        display: flex;
        align-items: center;
    }

    .main-menu {
        position: absolute;
        width: 100%;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        border-top: 1px solid #ddd;
        z-index: 99;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-30px);
        transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
        z-index: 999;
    }
    .main-menu {
        box-shadow: 0 15px 15px rgba(0, 0, 0, 0.05);
    }
    .main-menu.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    .navbar-nav-alt {
        display: flex;
        flex-direction: column;
        gap: 0;
        padding: 20px 30px 0 30px;
    }
    .navbar-nav-alt  .nav-item {
        font-size: var(--font-xl);
    }
    .navbar-nav-alt .nav-item .nav-link {
        padding: 5px 0;
    }
    .nav-link::after,
    .dropdown-item::after,
    .sub-dropdown-item:after  {
        display: none;
    }
    .dropdown-menu, .sub-dropdown-menu {
        width: 100%;
        margin: 0;
        opacity: 1;
    }
    .dropdown-menu {
        position: relative;
        box-shadow: none;
        visibility: visible;
    }
    .dropdown-item {
        font-size: var(--font-l);
        white-space: unset;
    }
    .dropdown-menu,
    .sub-dropdown-menu {
        display: none;
    }
    .dropdown-menu li {
        padding: .5em 0;
    }
    .dropdown-menu li:last-child {
        padding-bottom: .5em;
    }
    .nav-item.dropdown.mobile-open > .dropdown-menu {
        display: block;
    }
    .sub-dropdown-item-open > .sub-dropdown-menu {
        display: block;
    }
    .nav-item.dropdown.mobile-open > .dropdown-toggle .icon-caret {
        transform: rotate(180deg);
    }
    

}

/* Responsive media query for under 430px iPhone 15 Pro Max */
@media (max-width: 430px) {
    .desktop-only {
    display: none;
    }

    #hamburger.active span:nth-child(1) {
    position: relative;
    rotate: 135deg;
    }

    #hamburger.active span:nth-child(3) {
    position: relative;
    rotate: -135deg;
    }

    #main {
    padding: 30px;
    }

    #footer {
    padding: 30px;
    }

    .footer-bottom-row,
    .footer-content {
    width: 100%;
    }

    .footer-menu-col {
    gap: .5em;
    }

    .footer-social,
    .footer-mini-menu {
    }

    .footer-menu {
    gap: .5em;
    flex-wrap: wrap;
    }

}






/*Laptops/Desktops*/
@media (min-width: 960px) {
    .title-has-bg-img .title{
        min-height: 350px;
    }
    /*Modals*/
    .modal-content {
        max-width: 50vw;
    }

    /* Dropdown menu */
    .dropdown:hover > .dropdown-menu,
    .dropdown:focus-within > .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }
    .dropdown:hover .nav-item{
        border-color: var(--black);
    }
    .dropdown:hover .dropdown-toggle svg{
        transform: rotate(180deg);
    }
    .dropdown-menu {
        text-align: left;
    }
    .dropdown:hover .mega-menu, 
    .dropdown:focus .mega-menu, 
    .mega-menu.show{
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    }
    .mega-image{
          min-width: 300px;
          height: unset;
    }

    /*Collection Feed*/
    .collections-feed{
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 33% 2% 33% 2% 33%;
        grid-template-columns: repeat(3, 3fr);
        gap: 4rem;
    }

    /*Products Feed*/
    .products-feed-grid{
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 25% 1rem 25% 1rem 25% 1rem 25%;
        grid-template-columns: repeat(4, 4fr);
        justify-content: center;
        gap: 1rem;
    }
    .products-feed-grid.three-column{
        -ms-grid-columns: 30% 1rem 30% 1rem 30%;
        grid-template-columns: repeat(3, 3fr);
    }
    .products-feed-grid.two-column{
        -ms-grid-columns: 48% 1rem 48%;
        grid-template-columns: repeat(2, 2fr);
    }
    .products-feed-grid.one-column{
        -ms-grid-columns: 100% 1rem 100%;
        grid-template-columns: repeat(1, 1fr);
    }
    .product-overlay .view-btn .icon{
        width: 38px;
        height: 38px;
    }

    /*Footer*/
    .footer-widgets{
        padding:2rem 1rem;
    }
    .footer-widget{
        padding: 1.5rem;
    }
    .footer-widget h3{
        font-size:2.5rem;
    }
    .signup-section .row > div:first-child{
        margin-bottom:0;
    }
    /*Collections/Products Page*/
    .shop-body{
        display:flex;
        flex-wrap: wrap;
        flex-direction: row;
        padding-bottom: 6rem;
    }
    .sidebar-section{
        order:0;
        width: 30%;
        padding-right: 60px;
    }
    .products-grid-section{
        order:1;
        width:70%;
    }
    .shop-body.no-sidebar .shopify-section{
        width:100%;
        order:0;
    }
    
    /*Product Sorting*/
    .product-sort{
        width:100%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    /*Product Grid*/
    .product-grid{
        grid-template-columns: repeat(3,1fr);
    }
    .search-grid-section .product-grid{
        grid-template-columns: repeat(4,1fr);
    }

    /*Product Page*/
    .product-sku{
        text-align: right;
    }
    .product-wishlist{
        text-align: right;
    }

    /*Membership Form*/
    .membership-section{
        padding-right:3rem;
    }
}
@media (min-width: 1200px) {
    /*Footer*/
    .hero-inner{
        height: 680px;
    }
    .footer-widget h3{
        font-size:3.5rem;
    }

}
@media (min-width: 1350px) {
    /*Hero Carousel*/
    .hero-caption-container{
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 1fr 680px;
        grid-template-columns: 1fr 680px;
        align-items: center;
    }
    .hero-caption-container .hero-caption{
        -ms-grid-column: 2;
        grid-column-start: 2;
    }
}

/*Print*/
@media print {
    header, footer, button,.modal-content{
        display: none;
    }
    main,a,button,.btn{
        color: black !important
    }
    p,li,blockquote{
        font-size:12pt;
    }
    a{
        font-weight: bold;
        text-decoration: underline;
    }
    .product-item,.collection-item{
        min-height: none;
        box-shadow: none;
    }
    .product-image{
        padding:0;
    }
}
