/** Shopify CDN: Minification failed

Line 7:0 Unexpected "78%"
Line 7:86 Unterminated string token

**/
78% of storage used … If you run out of space, you can't save to Drive or use Gmail.
/*
-----------------
TABLE OF CONTENTS
-----------------
- General
    > Text
- Sections
    > Hello bar
    > Header
    > Custom collage
    > Image banner
    > Custom image banner
    > Recently viewed
    > Wishlist Plus
    > InstaFeed
    > Footer
- Components
    > Swiper
- Store-specific styles (child styles)
    > Custom collage
    > Banner button
    > Swipper
    > Product information
    > Recently viewed products
    > Product grid
    > Testimonials (custom liquid)
*/

/*------------------------------------------------------------------------------
- General
------------------------------------------------------------------------------*/

.text-left{
    text-align: left !important;
}

.text-center{
    text-align: center !important;
}

.text-right{
    text-align: right !important;
}

/*------------------------------------------------------------------------------
- Sections
------------------------------------------------------------------------------*/

/* Hello bar */
.rk-hello-bar{
    border-width: 1px 0;
    border-style: solid;
    border-color: var(--color-foreground);
    padding: 0.75rem 0;
}

.rk-hello-bar .item-list{
    text-align: center;
}

.rk-hello-bar .item-list p{
    margin: 0;
}

@media (min-width: 750px){
    .rk-hello-bar .item-list{
        display: flex;
    }

    .rk-hello-bar.halign-left .item-list{
        justify-content: left;    
    }

    .rk-hello-bar.halign-center .item-list{
        justify-content: center;    
    }

    .rk-hello-bar.halign-right .item-list{
        justify-content: right;    
    }

    .rk-hello-bar.halign-justify .item-list{
        justify-content: space-between;    
    }

    .rk-hello-bar .item-list .item:not(:last-child){
        margin-right: 1rem;
    }
}

/* Header */
.custom-item .menu-drawer__menu-item > account-icon,
.custom-item .menu-drawer__menu-item > .svg-wrapper{
    margin-right: 1rem;
}

.menu-drawer__utility-links{
    display: none;
}

@media screen and (max-width: 989px){
    .header__icons details-modal.header__search{
        display: none;
    }
}

/* Custom collage */
@media screen and (min-width: 750px) {

    .rk-collage .collage{
        grid-auto-flow: row;
    }

    .rk-collage .collage.layout-left{
        grid-template-columns: 1fr 0.5fr 0.5fr;
    }

    .rk-collage .collage.layout-right{
        grid-template-columns: 0.5fr 0.5fr 1fr;
    }
}

.rk-collage .collage__item .inner{
    width: auto;
    background-size: cover;
    background-position: center;
    position: relative;
}

.rk-collage .collage__item .inner .button-container{
    position: absolute;
    left: 0;
    bottom: 1.5rem;
    width: 100%;
    text-align: center;
}

.rk-collage .collage__item .inner .button-container .button{
    min-height: 0px;
    padding: 0.5rem 0.75rem;
    border-radius: 3rem;
    border-width: 1px;
    border-style: solid;
    border-color: var(--color-button-text);
}

.rk-collage .collage__item .inner .button-container .button::before,
.rk-collage .collage__item .inner .button-container .button::after{
    display: none;
}

@media screen and (max-width: 749px){
    .rk-collage .collage__item:nth-child(3n + 1) .inner{
        height: calc(100vw / 1.667) !important;
        background-size: cover !important;
    }

    .rk-collage .collage__item:nth-child(3n + 2) .inner,
    .rk-collage .collage__item:nth-child(3n) .inner{
        height: calc(100vw / 1.25) !important;
        background-size: cover !important;
    }

}

@media screen and (min-width: 750px) and (max-width: 1199px){
    .rk-collage .collage__item .inner{
        height: calc(100vw / 4) !important;
        background-size: cover !important;
    }
}

/* Image banner */
.banner.layout-blended-images .banner__media{
    left: 0;
    right: auto;
    width: 100%;
}

.banner.layout-blended-images .banner__media:nth-child(1){
    z-index: 10;
}

.banner.layout-blended-images .banner__media:nth-child(2){
    z-index: 20;
}

.banner.layout-blended-images .banner__media:nth-child(2) div{
    position: static;
    max-width: var(--page-width);
    display: flex;
    align-items: center;
    justify-content: right;
}

.banner.layout-blended-images .banner__media:nth-child(2) div img{
    height: 70%;
    width: auto;
}

.banner.layout-blended-images .banner__content{
    z-index: 30;
}

.banner.layout-blended-images .banner__content .banner__box{
    max-width: 50%;
}

@media screen and (max-width: 749px){
    .banner.layout-blended-images.banner--stacked .banner__media:nth-child(2){
        display: none;
    }

    .banner.layout-blended-images .banner__content{
        position: absolute;
        left: 0;
        top: 0;
    }

    .banner.layout-blended-images .banner__content .banner__box{
        max-width: 100%;
    }
}

/* Custom image banner */
.rk-image-banner .page-width{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.rk-image-banner-left{
    flex: 0 0 67%;
    max-width: 67%;
    text-align: left;
}

.rk-image-banner-left .title{
    margin-top: 0;
    margin-bottom: 0;
}

.rk-image-banner-left .subtitle{
    margin-top: 1rem;
}

.rk-image-banner-right{
    flex: 0 0 calc(33% - 2rem);
    max-width: calc(33% - 2rem);
    text-align: right;
}

.rk-image-banner-right img{
    width: 100%;
    height: auto;
}

@media screen and (max-width: 749px){
    .rk-image-banner .page-width{
        flex-direction: column-reverse;
    }

    .rk-image-banner-left,
    .rk-image-banner-right{
        flex: 0 0 100%;
        max-width: 100%;
        text-align: center;
    }

    .rk-image-banner-left .title{
        margin-top: 0;
    }
}

/* Recently viewed */
.rk-recently-viewed .recently-viewed-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, 1fr);
}

@media screen and (min-width: 750px) {
    .rk-recently-viewed .recently-viewed-grid {
      grid-template-columns: repeat(4, 1fr);
    }
}

.rk-recently-viewed h2{
    margin-top: 0;
    margin-bottom: 1rem;
}

/* Wishlist Plus */
.swym-wishlist-button-bar{
    display: block !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.swym-wishlist-button-bar .swym-btn-container{
    display: block !important;
}

.swym-wishlist-button-bar .swym-btn-container button.swym-add-to-wishlist{
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    flex-direction: row-reverse !important;
    
    width: 100% !important;    
    border-radius: 9px !important;
    height: 47px !important;
    background-color: transparent !important;
    color: rgb(var(--color-button-text)) !important;
    transition: box-shadow var(--duration-short) ease !important;
    border: 1px solid rgb(var(--color-button-text)) !important;
}

.swym-wishlist-button-bar .swym-btn-container button.swym-add-to-wishlist::after{
    position: static !important;
    color: rgb(var(--color-button-text)) !important;
    height: auto !important;
}

.swym-wishlist-button-bar .swym-btn-container button.swym-add-to-wishlist span{
    text-indent: 0 !important;
    margin-right: 10px !important;
}

.swym-wishlist-button-bar .swym-btn-container button.swym-add-to-wishlist:hover{
    box-shadow: 0px 0px 5px rgb(var(--color-button-text)) !important;
}

/* InstaFeed */
#instagram-feed-box{
    padding-top: 36px !important;
    padding-bottom: 36px !important;
}

/* Footer */
footer.footer .footer-block{
    text-align: center;
}

footer.footer .footer-block p,
footer.footer .footer-block a{
    font-size: 1.4rem;
}

footer.footer .footer-block:nth-child(2) p,
footer.footer .footer-block:nth-child(2) a{
    font-size: 1.6rem;
}

footer.footer .footer-block li a{
    justify-content: center;
}

@media screen and (min-width: 750px){

    footer.footer .footer-block:nth-child(1){
        text-align: left;
    }

    footer.footer .footer-block:nth-child(1) li a{
        justify-content: left;
    }

    footer.footer .footer-block:nth-child(3){
        text-align: right;
    }
}

footer.footer .footer-block a{
    text-decoration: none;
    color: rgb(var(--color-foreground));
}

footer.footer .footer-block a:hover{
    text-decoration: underline;
}

/*------------------------------------------------------------------------------
- Components
------------------------------------------------------------------------------*/
[class^="featured-collection-slider-"]{
    padding-bottom: 50px !important;
}

[class^="featured-collection-btn-prev-"],
[class^="featured-collection-btn-next-"]{
    top: auto !important;
    bottom: -25px !important;
    opacity: 1 !important;
}

[class^="featured-collection-btn-prev-"].swiper-button-disabled,
[class^="featured-collection-btn-next-"].swiper-button-disabled{
    opacity: 0.3 !important;
}

[class^="featured-collection-btn-prev-"]{
    left: calc(50% - 50px) !important;
}

[class^="featured-collection-btn-next-"]{
    left: calc(50% + 25px) !important;
}

/*------------------------------------------------------------------------------
- Store-specific styles (child styles)
------------------------------------------------------------------------------*/

/* Custom collage */
.rk-collage .collage__item {
    /* border: 2px solid rgba(246,228,224,0.2) !important; */
    padding: 2px  !important; 
    background: linear-gradient(to top, #b89c44, #e4d8aa, #d3bd6e) !important;
}

.rk-collage .collage-wrapper-title{
    color: #554617 !important;
}
    
.rk-collage .button--primary{
    color: #554617 !important;
    background-color: rgba(246, 228, 224, 0.9) !important;
    border: 1px solid #2e544c !important;
    font-weight: bold !important;
    padding: 0.5rem 3rem !important;
}

.rk-collage .inner:hover{
    background-size:120% !important;
}

.rk-collage .inner{
    transition: background 1s !important;
    background-size:100% !important;
}

/* Banner button */
.banner.layout-blended-images .button,
.rk-image-banner .button{
    background-color: transparent !important;
    padding: 0.75rem 2rem !important;
    min-height: 0 !important;
    font-weight: bold !important;
}

/* Swipper */
a.swiper-slide > div:first-child {
    border: 0.2rem solid rgba(246, 228, 224, 0.1) !important;
    background: linear-gradient(
                    0deg,
                    rgba(184, 156, 68, 1),
                    rgba(228, 216, 170, 1) 50%,
                    rgba(211, 189, 110, 1) 100%
                ) !important;
    background-attachment: fixed !important;
}

/* Product information */
.product-form__buttons .button--primary {
    text-transform: capitalize !important;
}

/* Recently viewed products */
.rk-recently-viewed .card__inner{
    border: 2px solid rgba(246,228,224,0.2) !important; 
    background: linear-gradient(to top, #b89c44, #e4d8aa, #d3bd6e) !important;
}

.rk-recently-viewed .h5 {
    font-size: 16px !important;
    font-family: "Source Sans Pro", sans-serif !important;
}

.rk-recently-viewed .full-unstyled-link {
    width: 32ch !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

@media (max-width: 1199px) and (min-width: 990px) {
    .rk-recently-viewed .full-unstyled-link {
        width: 26ch !important;
    }
}

/* Product grid */
[id$="__product-grid"] .h5 {
    font-size: 16px  !important;
    font-family: "Source Sans Pro", sans-serif !important;
}

[id$="__product-grid"] .full-unstyled-link {
    width: 32ch !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

@media (max-width: 1199px) and (min-width: 990px) {
    [id$="__product-grid"] .full-unstyled-link {
        width: 26ch !important;
    }
}

[id$="__product-grid"] .svg-wrapper {
    right: 10px !important;
}

[id$="__product-grid"] .select__select {
    background: #faf3f2 !important;
    color: #554617 !important;
    padding: 4px 10px !important;
    border-radius: 8px !important;
    border: 1px solid #554617 !important;
    text-transform: capitalize !important;
}

[id$="__product-grid"] .facet-filters__field {
    margin-top: -4px !important;
}

/* Testimonials (custom liquid) */
.script-container {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
    background-image: url('https://southmiamijewelers.net/cdn/shop/files/smj-gold-bg-color2.png?v=1753386013&width=1100') !important;
    background-size: cover !important;
}

.script-container [class^="WidgetTitle__Header"] {
    font-size: 2.4rem !important;
    color: #554617 !important;
    font-family: "Playfair Display", serif !important;
}