.modern-antiqua-regular {
    font-family: "Modern Antiqua", serif;
    font-weight: 400;
    font-style: normal;
}


html {
    scroll-behavior: smooth;
}

body {
    overflow: hidden;
    /* This will disable scrolling */
    font-family: "Jost", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.fixed-hero {
    height: 100vh;
    /* Full viewport height */
    width: 100%;
    /* Full width of the viewport */
    text-align: center;
    /* Center align text */
}

.wave-1 {
    background-image: url('/img/wave.svg'), linear-gradient(to bottom, white, #f3f4f5);
    background-size: cover;
    /* Adjusts the size of the background */
    background-position: center;
    /* Adjusts the position of the background */
    background-repeat: no-repeat;
    /* Prevents repeating the background */
}

.wave-2 {
    background-image: url('/img/wave-2.svg');
    background-size: cover;
    /* Adjusts the size of the background */
    background-position: center;
    /* Adjusts the position of the background */
    background-repeat: no-repeat;
    /* Prevents repeating the background */
}

.wave-3 {
    background-image: url('/img/wave-3.svg');
    background-size: cover;
    /* Adjusts the size of the background */
    background-position: center;
    /* Adjusts the position of the background */
    background-repeat: no-repeat;
    /* Prevents repeating the background */
}

.custom-container {
    margin-right: 2rem;
    margin-left: 2rem;
}

.square-loader {
    width: 85px;
    height: 35px;
    --g1: conic-gradient(from 90deg at 3px 3px, #0000 90deg, black 0);
    --g2: conic-gradient(from -90deg at 22px 22px, #0000 90deg, black 0);
    background: var(--g1), var(--g1), var(--g1), var(--g2), var(--g2), var(--g2);
    background-size: 25px 25px;
    background-repeat: no-repeat;
    animation: l6 1s infinite alternate;
}

.filterDiv {
    display: none;
    transition: opacity 1s ease;
    /* Smooth fade effect */
}

.hover-zoom {
    overflow: hidden;
    transition: transform 0.3s ease;
}

.hover-zoom:hover {
    transform: scale(1.1);
    z-index: 5;
}

.showitemnya {
    display: block;
    opacity: 1;
}

.notshowitem {
    display: none;
}

.btnshop {
    /* From https://css.glass */
    background: rgba(192, 192, 192, 0.5);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(2.1px);
    -webkit-backdrop-filter: blur(2.1px);
    clip-path: polygon(6% 0, 100% 0%, 94% 100%, 0% 100%);
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 1rem;
    width:150px;
}

.btnshop:hover {
    background: rgba(128, 128, 128, 1);
    color: white;
}

.activen {
    background: rgba(128, 128, 128, 1);
    color: white;
}

.activen:hover {
    background: rgba(128, 128, 128, 1);
    color: white;
}

.dropsel {
    background: rgba(128, 128, 128, 1);
}

.col-sm {
    margin-top: 1rem;
}

@keyframes l6 {
    0% {
        background-position: 0 50%, 50% 50%, 100% 50%
    }

    20% {
        background-position: 0 0, 50% 50%, 100% 50%
    }

    40% {
        background-position: 0 100%, 50% 0, 100% 50%
    }

    60% {
        background-position: 0 50%, 50% 100%, 100% 0
    }

    80% {
        background-position: 0 50%, 50% 50%, 100% 100%
    }

    100% {
        background-position: 0 50%, 50% 50%, 100% 50%
    }
}

.loading-overlay {
    position: absolute;
    overflow-y: hidden;
    /* Disable vertical scrolling */
    overflow-x: hidden;
    /* Disable horizontal scrolling */
    overflow: hidden;
    /* This will disable scrolling */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999999999999999999999;
    background-color: rgba(255, 255, 255, 1);
}

/* Fade-in animation */
.fade-in {
    animation: fadeIn 0.5s ease-in forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Fade-out animation */
.fade-out {
    animation: fadeOut 0.5s ease-out forwards;
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

.icon-jewel1 {
    display: inline-block;
    width: 30px;
    height: 30px;
    background-color: currentColor;
    /* Uses the text color */
    -webkit-mask-image: url('../img/jewellery.png');
    mask-image: url('../img/jewellery.png');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
}

.icon-bracelet {
    display: inline-block;
    width: 30px;
    height: 30px;
    background-color: currentColor;
    /* Uses the text color */
    -webkit-mask-image: url('../img/purnayasa_bracelet.png');
    mask-image: url('../img/purnayasa_bracelet.png');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
}

.icon-ring {
    display: inline-block;
    width: 30px;
    height: 30px;
    background-color: currentColor;
    /* Uses the text color */
    -webkit-mask-image: url('../img/purnayasa_ring.png');
    mask-image: url('../img/purnayasa_ring.png');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
}

.icon-necklace {
    display: inline-block;
    width: 30px;
    height: 30px;
    background-color: currentColor;
    /* Uses the text color */
    -webkit-mask-image: url('../img/purnayasa_necklace.png');
    mask-image: url('../img/purnayasa_necklace.png');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
}

.icon-earrings {
    display: inline-block;
    width: 30px;
    height: 30px;
    background-color: currentColor;
    /* Uses the text color */
    -webkit-mask-image: url('../img/purnayasa_earrings.png');
    mask-image: url('../img/purnayasa_earrings.png');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
}

.icon-acc-all {
    display: inline-block;
    width: 30px;
    height: 30px;
    background-color: currentColor;
    /* Uses the text color */
    -webkit-mask-image: url('../img/purnaysa_acc.png');
    mask-image: url('../img/purnaysa_acc.png');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
}

.iconboost {
    font-weight:1900;
    color:black;
}