﻿





.store-wrap2 {
    display: flex;
    flex-wrap: wrap; /* Ensures items wrap to the next row if needed */
    justify-content: center; /* Centers items horizontally */
    gap: 20px; /* Adds space between columns */
    max-width: calc(5 * 1fr + 4 * 20px); /* Restrict container to 5 columns with gaps */
    margin: 0 auto; /* Center the container */
}

.prod-grid {
    display: flex;
    flex-wrap: wrap; /* Ensures items wrap to the next row if needed */
    justify-content: center; /* Centers items horizontally */
    gap: 20px; /* Adds space between columns */
    max-width: calc(5 * 1fr + 4 * 20px); /* Restrict container to 5 columns with gaps */
    margin: 0 auto; /* Center the container */
    

}

.topsell-grid {
    justify-content: center; /* Centers items horizontally */
    width:100%;
}

/* Product card styling */
.product-card {
    background-color: #f4f4f4;
    padding: 20px;
    text-align: center;
    border: 1px solid #ddd;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.special-card {
    grid-column: span 5; /* Spans all 5 columns */
    background-color: #ffeaa7;
    padding: 20px;
    text-align: center;
    font-size: 1.2em;
}

.rateyo {
    margin: 0 auto 0px;
    z-index: 0 !important;
}

.hero_home {
    height: 350px; /*500px*/
    width: 100%;
    display: table;
}

.stars {
    float: left;
    position: absolute;
    left: 0px;
    top: 0px;
    z-index: 0;
    padding: 5px;
    font-weight: bold;
}

.prod_list {
    margin: 0 !important;
    padding: 5 !important;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card_top_sold {
    box-shadow: 0px 10px 30px 0px rgba(0,0,0,.05) !important;
    padding: 5px !important;
    border-radius: 25px !important;
    width: 400px !important;
    height: 100px !important;
    min-width: 400px !important;
    min-height: 100px !important;
    position: relative !important;
    margin: 5px 15px !important;
    background: #fff !important;
    scroll-snap-align: center !important;
    transition: all .25s ease !important;
    border: 2px solid #fff !important;
    display: flex !important;
    flex-direction: column !important;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.35) !important;
}


.card {
    
    padding: 5px !important;
    
    width: 260px !important;
    height: 330px !important;
    min-width: 260px !important;
    min-height: 330px !important;
    position: relative !important;
    margin: 5px 15px !important;
    background: #fff !important;
    scroll-snap-align: center !important;
    transition: all .25s ease !important;
    border: 0px solid #fff !important;
    display: flex !important;
    flex-direction: column !important;
    cursor: pointer !important;

}


.con-btn {
    min-width: 245px;
    display: flex;
    justify-content: center;
    margin: 0 auto;
}

.bottom-div {
    margin-top: auto;
    position: absolute;
    bottom: 5px;
    margin-right: 15px;
}

.add-active {
    /* transform: translate(0, -10px); */
    box-shadow: 0px 10px 30px 0px rgba(254, 160, 26, .2);
    border: 2px solid #fea01a;
}

    .add-active .add {
        display: none;
    }

    .add-active .con-image img:not(.bg) {
        transform: scale(1.15);
    }

    .add-active .con-input-btns {
        display: flex;
    }

.con-star {
    position: absolute;
    right: 0px;
    top: 0px;
    margin: 30px;
    font-size: 1.2rem;
}

.con-image {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 250px;
    border-radius: 15px;
    background: #f5f5f5;
}

    .con-image img {
        width: 100%;
        height: 100%;
        z-index: 0;
        border-radius: 15px;
    }

    .con-image .bg {
        position: absolute;
        z-index: 10;
        filter: blur(20px);
        opacity: .4;
    }

.con-text {
    width: 100%;
    padding: 0px 5px;
    opacity: .9;
    font-size: .8rem;
    min-height: 10px;
    min-width: 220px;
}

.con-text-sub {
    width: 100%;
    padding: 0px 5px;
    opacity: .5;
    font-size: .8rem;
    min-height: 10px;
    min-width: 220px;
}

.con-text h3 {
    padding: 10px 0px;
}

.con-price {
    width: 100%;
    text-align: center;
    font-weight: bold;
    padding: 15px;
    font-size: 1.1rem;
    padding-top: 10px;
    min-height: 50px;
    min-width: 220px;
}

.add {
    width: 100%;
    padding: 15px;
    background: linear-gradient(130deg, #fdc527 0%, #fea01a 100%);
    border: 0px;
    border-radius: 20px;
    color: #fff;
    font-weight: bold;
    font-size: 1rem;
    min-width: 220px;
}



.card__overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    visibility: none;
    transition: .5s ease;
    background-color: #393839dd;
    border-radius: 15px;
}


.card:hover .card__overlay {
    opacity: 1;
}

.overlay__text {
    color: white;
    font-size: 14px;
    position: absolute;
    top: 55%;
    left: 50%;
    width: 90%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: left;
}

.overlay__text__tags {
    color: white;
    display: inline-block;
    height: 25px;
    background-color: blue;
    margin: 2px;
    border-radius: 2px;
    z-index: 9000;
}


.button {
    background-color: #f05328;
    padding: 1.5rem;
    margin-top: 2rem;
    display: inline-block;
    color: white;
    text-decoration: none;
    z-index: 20;
}


:root {
    --color1: #393839cc;
    --color2: #673839cc;
}

/*
        .card:before,
        .card:after {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            top: 0;
            background-repeat: no-repeat;
            opacity: .9;
            mix-blend-mode: color-dodge;
            transition: all .33s ease;
            border-radius: 35px !important;
        }
        */


.card:after {
    opacity: 1;
    background-image: linear-gradient(125deg, #ff008450 15%, #fca40040 30%, #ffff0030 40%, #00ff8a20 60%, #00cfff40 70%, #cc4cfa50 85%);
    background-position: 50% 50%;
    background-size: 160%;
    background-blend-mode: overlay;
    z-index: 2;
    filter: brightness(1) contrast(1);
    transition: all .33s ease;
    mix-blend-mode: color-dodge;
    opacity: .95;
    border-radius: 35px !important;
}

.card.active:after,
.card:hover:after {
    filter: brightness(1) contrast(1);
    ;
    opacity: 1;
}

.card.active,
.card:hover {
    animation: none;
    transition: box-shadow 0.1s ease-out;
}

    .card.active:before,
    .card:hover:before {
        animation: none;
        background-image: linear-gradient( 110deg, transparent 15%, var(--color1) 48%, var(--color2) 52%, transparent 75% );
        background-position: 50% 50%;
        background-size: 250% 250%;
        opacity: .88;
        filter: brightness(.66) contrast(1.33);
        transition: none;
    }



.card.animated {
    transition: none;
    animation: holoCard 12s ease 0s 1;
    &:before

{
    transition: none;
    animation: holoGradient 12s ease 0s 1;
}

}








.framek {
    margin: 10px;
    width: 250px !important;
    height: 250px !important;
    border-radius: 10px;
    box-shadow: 4px 8px 16px 0 rgba(0,0,0,0.1);
    overflow: hidden;
    background: var(--img) 50% 50% /cover, black;
    color: #fff;
    font-family: 'Quicksand', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-width: 250px !important;
    min-height: 250px !important;
    &::before

{
    content: var(--title);
    display: block;
    background: black;
    padding: 10px;
    font-size: 12px;
    box-sizing: border-box;
    height: 50px;
    opacity: .7;
    transition: font-size .6s cubic-bezier(0.76, 0, 0.24, 1);
}

&::after {
    content: var(--text);
    display: block;
    padding: 10px;
    background: black;
    box-sizing: border-box;
    height: 20px;
    margin-bottom: -20px;
    transition: height .6s cubic-bezier(0.76, 0, 0.24, 1);
    color: white;
    font-size: 12px;
    cursor: pointer !important;
}

&:hover::after {
    height: 200px;
    font-size: 12px;
}

&:hover::before {
    font-size: 12px;
}

}

.slick-initialized .slick-slide {
    display: flex !important;
}

.store_content-upper {
    margin-bottom: 15px;
}



.store_avatar {
    border-radius: 50%;
    height: 100px;
    border: 5px solid white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.4);
    position: relative;
    z-index: 10;
}

.store_avatar-wrap {
    text-align: center;
    background: linear-gradient(141deg, #0fb8ad 0%, #1fc8db 51%, #2cb5e8 75%);
    padding-top: 25px;
    border-radius: 5px 5px 0 0;
    width: 250px;
}

.store_about-text {
    color: #777;
    line-height: 150%;
}

.store_content {
    text-align: left;
    padding: 30px 10px;
}



.store_content-wrap {
    width: 250px;
    top: -50px;
    position: relative;
    box-shadow: 0 2px 5px rgba(0,0,0,0.4);
    border-radius: 0 0 5px 5px;
    background-color: white;
    display: flex !important;
    flex-direction: column !important;
    min-height: 180px !important;
}


.store-wrap {
    margin: 0 auto;
    padding: 10px;
    box-shadow: 0px 10px 30px 0px rgba(0,0,0,.05) !important;
    padding: 5px !important;
    border-radius: 35px !important;
    width: 260px !important;
    height: 400px !important;
    min-width: 260px !important;
    min-height: 400px !important;
    scroll-snap-align: center !important;
    transition: all .25s ease !important;
    border: 2px solid #fff !important;
    display: flex !important;
    flex-direction: column !important;
}

.store_title {
    margin: 5px 0;
    color: rgb(0, 145, 179);
    font-weight: 60;
}






/** Custom Select **/
.custom-select-wrapper {
    user-select: none;
    width: 100%;
}

.custom-select-wrapper select {
    display: none;
}

.custom-select {
    position: relative;
    display: inline-block;
    width: 100%;
   
}

.custom-select-trigger {
    position: relative;
    display: block;
    width: 100%;
    padding: 0 44px 44px 18px;
    font-size: 20px;
    font-weight: 150;
    color: slategrey;
    line-height: 40px;
    background: white;
    border-radius: 2px;
    cursor: pointer;
    height: 1rem;
    border-bottom: 1px solid #000; /* Add a thin bottom border */
}

    .custom-select-trigger:after {
        position: absolute;
        display: block;
        content: '';
        width: 10px;
        height: 10px;
        top: 50%;
        right: 25px;
        margin-top: -3px;
        border-bottom: 1px solid #fff;
        border-right: 1px solid #fff;
        transform: rotate(45deg) translateY(-50%);
        transition: all .4s ease-in-out;
        transform-origin: 50% 0;
    }

.custom-select.opened .custom-select-trigger:after {
    margin-top: 3px;
    transform: rotate(-135deg) translateY(-50%);
}

.custom-options {
    position: absolute;
    display: block;
    top: 100%;
    left: 0;
    right: 0;
    min-width: 100%;
    margin: 15px 0;
    border: 1px solid #b5b5b5;
    border-radius: 4px;
    box-sizing: border-box;
    box-shadow: 0 2px 1px rgba(0,0,0,.07);
    background: #fff;
    transition: all .4s ease-in-out;
    z-index: 50;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-15px);
}

.custom-select.opened .custom-options {
    opacity: .9;
    visibility: visible;
    pointer-events: all;
    transform: translateY(0);
}

.custom-options:before {
    position: absolute;
    display: block;
    content: '';
    bottom: 100%;
    right: 25px;
    width: 7px;
    height: 7px;
    margin-bottom: -4px;
    border-top: 1px solid #b5b5b5;
    border-left: 1px solid #b5b5b5;
    background: #fff;
    transform: rotate(45deg);
    transition: all .4s ease-in-out;
}

.option-hover:before {
    background: #f9f9f9;
}

.custom-option {
    position: relative;
    display: block;
    padding: 0 22px;
    border-bottom: 1px solid #b5b5b5;
    font-size: 18px;
    font-weight: 600;
    color: #red;
    line-height: 47px;
    cursor: pointer;
    transition: all .4s ease-in-out;
}

    .custom-option:first-of-type {
        border-radius: 4px 4px 0 0;
    }

    .custom-option:last-of-type {
        border-bottom: 0;
        border-radius: 0 0 4px 4px;
    }

    .custom-option:hover,
    .custom-option.selection {
        background: #f9f9f9;
    }




    /** Custom Select **/
.custom-select-wrapper2 {
    user-select: none;
    width: 100%;
}

.custom-select-wrapper2 select {
    display: none;
}

.custom-select2 {
    position: relative;
    display: inline-block;
    width: 100%;
   
}

.custom-select-trigger2 {
    position: relative;
    display: block;
    width: 100%;
    padding: 0 44px 44px 18px;
    font-size: 20px;
    font-weight: 150;
    color: slategrey;
    line-height: 40px;
    background: white;
    border-radius: 2px;
    cursor: pointer;
    height: 1rem;
    border-bottom: 1px solid #000; /* Add a thin bottom border */
}

    .custom-select-trigger2:after {
        position: absolute;
        display: block;
        content: '';
        width: 10px;
        height: 10px;
        top: 50%;
        right: 25px;
        margin-top: -3px;
        border-bottom: 1px solid #fff;
        border-right: 1px solid #fff;
        transform: rotate(45deg) translateY(-50%);
        transition: all .4s ease-in-out;
        transform-origin: 50% 0;
    }

.custom-select2.opened .custom-select-trigger2:after {
    margin-top: 3px;
    transform: rotate(-135deg) translateY(-50%);
}

.custom-options2 {
    position: absolute;
    display: block;
    top: 100%;
    left: 0;
    right: 0;
    min-width: 100%;
    margin: 15px 0;
    border: 1px solid #b5b5b5;
    border-radius: 4px;
    box-sizing: border-box;
    box-shadow: 0 2px 1px rgba(0,0,0,.07);
    background: #fff;
    transition: all .4s ease-in-out;
    z-index: 50;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-15px);
}

.custom-select2.opened .custom-options2 {
    opacity: .9;
    visibility: visible;
    pointer-events: all;
    transform: translateY(0);
}

.custom-options2:before {
    position: absolute;
    display: block;
    content: '';
    bottom: 100%;
    right: 25px;
    width: 7px;
    height: 7px;
    margin-bottom: -4px;
    border-top: 1px solid #b5b5b5;
    border-left: 1px solid #b5b5b5;
    background: #fff;
    transform: rotate(45deg);
    transition: all .4s ease-in-out;
}

.option-hover2:before {
    background: #f9f9f9;
}

.custom-option2 {
    position: relative;
    display: block;
    padding: 0 22px;
    border-bottom: 1px solid #b5b5b5;
    font-size: 18px;
    font-weight: 600;
    color: #red;
    line-height: 47px;
    cursor: pointer;
    transition: all .4s ease-in-out;
}

    .custom-option2:first-of-type {
        border-radius: 4px 4px 0 0;
    }

    .custom-option2:last-of-type {
        border-bottom: 0;
        border-radius: 0 0 4px 4px;
    }

    .custom-option2:hover,
    .custom-option2.selection {
        background: #f9f9f9;
    }







#preloadedImages {
    width: 0px;
    height: 0px;
    display: inline;
    background-image: url(https://@Model.Platform.AzureStorageName/marketoperators/@Model.MarketOperator.MOID/mo_logo.png);
}







.Prodcontainer {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: 600px;
    height: 300px;
    background: #fff;
    margin: 85px 10px 85px 0px;
    align-items: center;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.35) !important;
    border-radius: 25px;
    display: flex; /* Use Flexbox */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    flex: 1 0 45%; /* Full-width card */
}

    .Prodcontainer .imgBx {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 50%;
        height: 100%;
        background: #87a6a5;
        transition: .3s linear;
        border-radius: 25px;
    }

        .Prodcontainer .imgBx .floatimg {
            height: 100%;
            width: 100%;
            display: grid;
            place-items: center;
            align-items: center;
            animation: float 6s ease-in-out infinite;
        }

@keyframes float {
    0% {
        transform: translateY(0%);
    }

    50% {
        transform: translateY(-6%);
    }

    100% {
        transform: translateY(0%);
    }
}

.Prodcontainer .imgBx:before {
    position: absolute;
    top: 0px;
    left: 24px;
    color: #000;
    opacity: 0.2;
    font-size: 8em;
    font-weight: 800;
}

.Prodcontainer .imgBx img {
    position: relative;
    width: 300px;
    transform: rotate(-30deg);
    left: -10px;
    transition: .9s linear;
}

.Prodcontainer .details {
    display: flex;
    width: 50%;
    height: 100%;
    box-sizing: border-box;
    padding: 0px;
    text-align: center;

}

    .Prodcontainer .details h2 {
        margin: 0;
        padding: 0;
        font-size: 2.4em;
        line-height: 1em;
        color: #444;
    }


    .Prodcontainer .details h3 {
        margin: 0;
        padding: 0;
        display: flex;
        font-size: 1.5em;
        color: #a2a2a2;
        position: absolute;
        bottom: 75px;
        right:150px;
    }

    .Prodcontainer .details button {
        background: #000;
        color: #fff;
        border: none;
        outline: none;
        padding: 15px 20px;
        margin-top: 5px;
        font-size: 16px;
        letter-spacing: 1px;
        text-transform: uppercase;
        font-weight: 600;
        border-radius: 40px;
        align-self: center;
    }

    .Prodcontainer .details .add {
        width: 100%;
        padding: 15px;
        background: linear-gradient(130deg, #0fb8ad 0%, #444 100%);
        border: 0px;
        border-radius: 20px;
        color: #fff;
        font-weight: bold;
        font-size: 1rem;

    }

    .Prodcontainer .details .con-btn {
       width:50%;
        display: flex;
        margin: 0 auto;
        position: absolute;
        bottom: 5px;
    }

    .Prodcontainer .details .con-text {
        width: 100%;
        padding: 0px 5px;
        opacity: .9;
        font-size: .8rem;
        min-height: 10px;
        min-width: 220px;
    }

    .Prodcontainer .details .con-text-sub {
        width: 100%;
        padding: 0px 5px;
        opacity: .5;
        font-size: 1rem;
        min-height: 10px;
        min-width: 220px;
    }
    .Prodcontainer .details .con-price {
        width: 100%;
        text-align: center;
        font-weight: bold;
        padding: 15px;
        font-size: 1.1rem;
        padding-top: 10px;
        min-height: 50px;
        min-width: 220px;

    }


/* responsive */
@media (max-width: 1000px) {


    .profile-box {
        width: 100% !important;
        height: auto;
        padding: 20px;
        display: none !important;
    }

       
}

.hidden {
    display: none !important;
}


.profile-box2 {
    grid-column: span 2 !important; /* Make it take up 2 columns */
    padding: 5px !important;
    max-width: 350px !important;
    min-width: 350px !important;
    height: 350px !important;
    position: relative !important;
    margin: 5px 250px !important;
    background: #fff !important;
    scroll-snap-align: center !important;
    transition: all .25s ease !important;
    border: 0px solid #fff !important;
    cursor: pointer !important;
}

    .profile-box2:hover {
        transform: translateY(-10px);
        box-shadow: 0 5px 80px rgba(0, 0, 0, 0.5);

    }

    .profile-box2 img {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        display: block;
        border-radius: 4px;
        transition: 1s ease all;
    }

    .profile-box2:hover img {
        transform: scale(1.15);
    }

    .profile-box2 .box-content {
        color: white;
        position: absolute;
        width: 100%;
        bottom: 0;
        left: 0;
        z-index: 999;
        padding: 5px 20px 0px;
        background: rgba(0, 0, 0, 0.5);
        transition: 0.3s ease all;
    }



        .profile-box2 .box-content h3 {
            margin-bottom: 15px;
            font-size:1rem;
            color:white;
        }













/* Base Styles */
.special-card {
    display: flex;
    flex: 1 0 100%; /* Full-width card */
    align-items: center; /* Align sections vertically */
    justify-content: space-between; /* Space out sections horizontally */
    background: linear-gradient(90deg, #C8A2C8, #4B0082);
    box-sizing: border-box;
    max-height: 350px;
    padding: 20px;
    box-shadow: 0px 10px 30px 0px rgba(0,0,0,.05);
    padding: 5px;
    border-radius: 35px;
    margin: 55px 0px !important;
}

    /* Left Section (Logo) */
    .special-card .left-section {
        flex: 0 0 25%; /* Occupies 25% width */
        display: flex;
        justify-content: center;
        align-items: center;
    }

        .special-card .left-section img {
            max-width: 75%;
            height: auto;
            border-radius: 10px;
        }

    /* Middle Section (Title & Description) */
    .special-card .middle-section {
        flex: 0 0 40%; /* Occupies 50% width */
        text-align: center;
        
    }

        .special-card .middle-section h2 {
            font-size: 1.5em;
            margin: 0 0 10px;
              color:white;
        }

        .special-card .middle-section p {
            font-size: 1.0em;
            margin: 20px;
            color:white;
           

        }

    /* Right Section (Stacked Images) */
    .special-card .right-section {
        flex: 0 0 25%; /* Occupies 25% width */
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
    }

    .special-card .image-stack {
        position: relative;
        width: 250px; /* Fixed width for images */
        height: 300px; /* Adjust height to ensure centering */
        display: flex;
        flex-direction: column;
        justify-content: center; /* Center images vertically relative to stack */
    }

        .special-card .image-stack img {
            width: 80%;
            height: auto;
            border-radius: 5px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
            position: absolute; /* Overlapping images */
            box-shadow: 0px 10px 30px 0px rgba(0,0,0,.05) !important;
            padding: 5px !important;
            border-radius: 35px !important;
        }

            .special-card .image-stack img:nth-child(1) {
                top: -40px; /* Offset for the top image */
                left: 70px;
            }

            .special-card .image-stack img:nth-child(2) {
                top: 50px; /* Center image */
                left: -100px;
            }

            .special-card .image-stack img:nth-child(3) {
                top: 150px; /* Offset for the bottom image */
                left: 40px;
            }

/* Responsive Design */
@media (max-width: 768px) {
    .special-card {
        flex-direction: column; /* Stack sections vertically */
        text-align: center;
    }

        .special-card .left-section,
        .special-card .middle-section {
            flex: 1 0 auto; /* Allow sections to grow/shrink */
            width: 100%; /* Take full width */
        }

        .special-card .right-section {
            display: none; /* Hide the right section */
        }

        .special-card .middle-section h2 {
            font-size: 1.5em; /* Adjust font size */
        }

        .special-card .middle-section p {
            font-size: 1em; /* Adjust font size */
        }


}

@media (max-width: 680px) {
    .special-card {
        padding: 10px; /* Reduce padding on smaller devices */
    }

        .special-card .middle-section h2 {
            font-size: 1.2em; /* Further reduce font size */
        }

        .special-card .middle-section p {
            font-size: 0.9em; /* Further reduce font size */
        }
    .box {
        flex: 1 0 100%; /* Full-width card */
    }
}

