/** Shopify CDN: Minification failed

Line 221:10 Expected identifier but found "{"
Line 221:11 Unexpected "{"
Line 221:20 Expected ":"
Line 444:11 Expected identifier but found "{"
Line 444:12 Unexpected "{"
Line 444:21 Expected ":"
Line 444:50 Expected ":"
Line 462:12 Expected identifier but found whitespace
Line 462:14 Unexpected "{"
Line 462:23 Expected ":"
... and 4 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:masafi-collection-cards (INDEX:51) */
.masafi-collections{
    padding:70px 0;
    background:#F6F5F3;
    overflow-x:hidden;
}

.masafi-collections .page-width{
    max-width:1600px;
    width:100%;
    margin:0 auto;
    padding-left:20px;
    padding-right:20px;
    box-sizing:border-box;
}

.masafi-grid{
    display:grid;
    grid-template-columns:repeat(6,minmax(0,1fr));
    gap:24px;
    width:100%;
}

/* ===========================
   CARD
=========================== */

.masafi-card{
    position:relative;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    padding:35px 22px 25px;
    text-align:center;
    text-decoration:none;
    overflow:visible;
    border:2px solid transparent;
    background: linear-gradient(#fff,#fff) padding-box, linear-gradient(135deg,#8b5a18,#d4af37,#f4e7b0,#b8891e) border-box;
    border-radius:22px;
    transition:.35s ease;
    width:100%;
    min-width:0;
    box-sizing:border-box;
}

/* Arabic top ornament */

.masafi-card::before{

    content:"";

    position:absolute;

    top:-16px;

    left:50%;

    width:30px;

    height:30px;

    background:#fff;

    border-top:2px solid #d4af37;

    border-left:2px solid #d4af37;

    transform:translateX(-50%) rotate(45deg);

    z-index:2;

}

/* subtle pattern */

.masafi-card::after{

    content:"";

    position:absolute;

    inset:10px;

    border-radius:16px;

    background-image:radial-gradient(#d4af3722 1px, transparent 1px);

    background-size:18px 18px;

    opacity:.25;

    pointer-events:none;

}

/* Hover */

.masafi-card:hover{

    transform:translateY(-10px);

    box-shadow:
    0 20px 45px rgba(0,0,0,.12),
    0 0 0 1px rgba(212,175,55,.18);

}

/* ===========================
   IMAGE
=========================== */

.masafi-image{

    position:relative;

    width:120px;

    height:120px;

    margin-bottom:25px;

    display:flex;

    align-items:center;

    justify-content:center;

}

/* Gold glow */

.masafi-image::before{

    content:"";

    position:absolute;

    width:95px;

    height:95px;

    border-radius:50%;

    background:radial-gradient(circle,
    rgba(212,175,55,.35) 0%,
    rgba(212,175,55,.10) 45%,
    transparent 75%);

    z-index:0;

    transition:.4s;

}

.masafi-image img{

    position:relative;

    z-index:2;

    width:100%;

    height:100%;

    object-fit:contain;

    transition:.35s;

}

.masafi-card:hover .masafi-image::before{

    transform:scale(1.2);

    opacity:.8;

}

.masafi-card:hover img{

    transform:
        translateY(-10px)
        scale(1.08);

}

/* ===========================
   TITLE
=========================== */

.masafi-title{

    font-size:22px;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

    color:{{ section.settings.heading_color }};

    margin-bottom:12px;

    position:relative;

}

.masafi-collections h2{
    margin-bottom:60px;
    text-align:center;
    font-size:36px;
    font-weight:300;
}

/* Gold divider */

.masafi-title::after{

    content:"";

    display:block;

    width:45px;

    height:2px;

    margin:12px auto 0;

    background:#d4af37;

    border-radius:20px;

}

/* ===========================
   BUTTON
=========================== */

.masafi-btn{

    display:inline-flex;

    align-items:center;

    gap:8px;

    color:#555;

    font-size:15px;

    font-weight:500;

    transition:.3s;

}

.masafi-btn svg{

    width:16px;

    transition:.3s;

}

.masafi-card:hover .masafi-btn{

    color:#b8891e;

}

.masafi-card:hover .masafi-btn svg{

    transform:translateX(6px);

}

/* ===========================
   RESPONSIVE
=========================== */

@media(max-width:990px){

.masafi-grid{

grid-template-columns:repeat(3,1fr);
padding-top:20px;

}

}

@media (max-width:749px){

.masafi-collections{
    padding:40px 0;
}

.masafi-grid{

    display:grid;

    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:18px;
    padding-top:20px;

}

.masafi-card{
    min-width:unset;
    width:100%;
    padding:24px 12px 18px;

}

/* Smaller top ornament */

.masafi-card::before{

    width:22px;
    height:22px;

    top:-12px;

}

/* Smaller image */

.masafi-image{

    width:100px;
    height:100px;
    margin-bottom:18px;

}

.masafi-image::before{

    width:80px;
    height:80px;

}

/* Smaller heading */

.masafi-title{

    font-size:15px;

    letter-spacing:1px;

    margin-bottom:8px;

}

.masafi-title::after{

    width:32px;

    margin:8px auto 0;

}

/* Button */

.masafi-btn{

    font-size:13px;

    gap:5px;

}

.masafi-btn svg{

    width:12px;

}

/* Section heading */

.masafi-collections h2{

    font-size:28px;

    margin-bottom:28px;

}

}
/* END_SECTION:masafi-collection-cards */

/* START_SECTION:masafi-hero-slider (INDEX:54) */
/* =====================================================
   MASAFI LUXURY HERO SLIDER
===================================================== */

.masafi-hero{
    position:relative;
    overflow:hidden;
    background:#000;
}

.masafiHeroSwiper{
    width:100%;
    overflow:hidden;
}

.masafi-slide{
    position:relative;
}

/* =====================================================
   IMAGE
===================================================== */

.masafi-slide picture{
    display:block;
}

.masafi-slide picture img{
    display:block;
    width:100%;
    height:{{ section.settings.desktop_height }}px;
    object-fit:cover;
    object-position:center;
}

/* =====================================================
   OVERLAY
===================================================== */

.masafi-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(0,0,0,.72) 0%,
        rgba(0,0,0,.42) 45%,
        rgba(0,0,0,.10) 100%
    );
    opacity: {{ section.settings.overlay_opacity | times: 0.01 }};
    z-index:2;
}

/* =====================================================
   CONTENT
===================================================== */

.masafi-slide .page-width{
    position:absolute;
    inset:0;
    z-index:5;

    display:flex;
    align-items:center;
}

.masafi-content{
    width:100%;
    max-width:650px;
    color:#fff;
}

.masafi-align-left{
    margin-right:auto;
    text-align:left;
}

.masafi-align-center{
    margin:auto;
    text-align:center;
}

.masafi-align-right{
    margin-left:auto;
    text-align:right;
}

/* =====================================================
   SUBHEADING
===================================================== */

.masafi-subheading{

    display:inline-flex;

    align-items:center;

    gap:10px;

    color:#D4AF37;

    font-size:15px;

    font-weight:600;

    letter-spacing:4px;

    text-transform:uppercase;

    margin-bottom:20px;

}

.masafi-subheading:before{

    content:"";

    width:40px;

    height:2px;

    background:#D4AF37;

}

/* =====================================================
   HEADING
===================================================== */

.masafi-heading{

    margin:0;

    color:#fff;

    font-size:68px;

    line-height:1.05;

    font-weight:700;

}

.masafi-heading span{

    color:#D4AF37;

}

/* =====================================================
   DESCRIPTION
===================================================== */

.masafi-description{

    margin-top:28px;

    font-size:18px;

    line-height:1.9;

    color:rgba(255,255,255,.88);

}

/* =====================================================
   BUTTONS
===================================================== */

.masafi-buttons{

    display:flex;

    flex-wrap:wrap;

    gap:16px;

    margin-top:40px;

}

.masafi-align-center .masafi-buttons{
    justify-content:center;
}

.masafi-align-right .masafi-buttons{
    justify-content:flex-end;
}

.masafi-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    min-width:190px;

    padding:16px 34px;

    border-radius:60px;

    text-decoration:none;

    font-weight:600;

    transition:.35s;

}

.masafi-btn.primary{

    color:#fff;

    background:linear-gradient(
        135deg,
        #8b5a18,
        #d4af37,
        #b8891e
    );

}

.masafi-btn.primary:hover{

    transform:translateY(-4px);

    box-shadow:0 15px 35px rgba(212,175,55,.35);

}

.masafi-btn.secondary{

    border:2px solid #D4AF37;

    color:#fff;

    background:transparent;

}

.masafi-btn.secondary:hover{

    background:#D4AF37;

    color:#111;

}

/* =====================================================
   ARROWS
===================================================== */

.swiper-button-prev,
.swiper-button-next{

    width:58px;

    height:58px;

    border-radius:50%;

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(8px);

    color:#fff;

    transition:.35s;

}

.swiper-button-prev:hover,
.swiper-button-next:hover{

    background:#D4AF37;

    color:#111;

}

.swiper-button-prev:after,
.swiper-button-next:after{

    font-size:20px;

    font-weight:700;

}

/* =====================================================
   PAGINATION
===================================================== */

.swiper-pagination{

    bottom:35px !important;

}

.swiper-pagination-bullet{

    width:12px;

    height:12px;

    background:#fff;

    opacity:.35;

}

.swiper-pagination-bullet-active{

    background:#D4AF37;

    opacity:1;

}

/* =====================================================
   KEN BURNS EFFECT
===================================================== */

.swiper-slide-active picture img{

    animation:masafiZoom 8s linear forwards;

}

@keyframes masafiZoom{

from{
transform:scale(1);
}

to{
transform:scale(1.08);
}

}

/* =====================================================
   TABLET
===================================================== */

@media(max-width:991px){

.masafi-slide picture img{

height:450px;

}

.masafi-heading{

font-size:50px;

}

}

/* =====================================================
   MOBILE
===================================================== */

@media(max-width:749px){

.masafi-slide picture img{

height:{{ section.settings.mobile_height }}px;

}

.masafi-slide .page-width{

align-items:flex-end;

padding-bottom:70px;

}

.masafi-content{

max-width:100%;

text-align:center;

}

.masafi-subheading{

justify-content:center;

font-size:12px;

letter-spacing:3px;

margin-bottom:15px;

}

.masafi-subheading:before{

display:none;

}

.masafi-heading{

font-size:34px;

line-height:1.2;

}

.masafi-description{

font-size:15px;

line-height:1.7;

margin-top:16px;

}

.masafi-buttons{

justify-content:center;

gap:12px;

margin-top:28px;

}

.masafi-btn{

min-width:155px;

padding:13px 24px;

font-size:14px;

}

.swiper-button-prev,
.swiper-button-next{

display:none;

}

.swiper-pagination{

bottom:20px !important;

}

}
/* END_SECTION:masafi-hero-slider */