
/* Scroll Bar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
  background: #888;
}
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* General */
*{
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
}
body{
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    /* background-color: #fff; */
    background-image: url("img/bg_menu.webp");
}

/* Navbar */
.navbar{
    background-image: linear-gradient(to right, #001b36, #003756);
    transition: top 0.3s ease-in-out;
}
.navbar-nav{
    width: 100%;
}
.nav-link:hover{
    color: #c3c3c3;
}
.nav-link{
    color: white;
    border-radius: 10px;
    font-weight: bold;
}
.nav-link:visited{
    color: white;
}
.nav-item{
    margin: auto;
}
#head-logo{
    display: none;
}

.phone, .email{
    cursor: pointer;
    margin: 10px;
}
.view-buy{
    background-color: #2C7865;
    color: white;
    cursor: pointer;
    margin-left: auto;
    padding: 10px;
    margin-right: 10%;
}

/* Products */
.products {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.product {
    background-color: #ffffff;
    /* border: 1px solid #ddd; */
    border-radius: 5px;
    /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
    /* padding: 20px; */
    margin: 10px;
    width: calc(33.333% - 40px);
    text-align: center;
    transition: transform 0.5s;
    max-height: 500px;
    max-width: 350px;
    min-width: 300px;
    position: relative;
}

.product:hover {
    .buy-button{
        display: inline-block;
        z-index: 99999;
    }
    transform: scale(1.05);
}

.product img {
    max-width: 100%;
    border-radius: 5px;
    margin-bottom: 15px;
}
/* .product img:hover {
    transform: scale(1.05);
    .buy-button{
        display: inline-block;
        z-index: 99999;
    }
} */

.product h3 {
    font-size: 1.2em;
    color: #000000;
    margin: auto;
}

.product p {
    margin: 10px 0;
    font-size: 1.1em;
}

.buy-button {
    z-index: 99999;
    background-color: #2e54ff;
    color: white;
    cursor: pointer;
    display: none;
    padding: 7px 20px;
    text-align: center;
    text-decoration: none;
    /* transition: ease-in-out 5s; */
    border: 0;
    font-size: 16px;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    margin-top: -53px;
    border-radius: 5px;
}

.buy-button:hover {
    background-color: rgb(11, 15, 255);
}

.item:hover{
    transition: all 0.5s fadein;
}


/* Carousel */
/* .cell{
    width: 100vw;
    height: 65vh;
    overflow: hidden;
}
.cell img{
    height: 100%;
    object-fit: contain ;
}
.main-carousel{
    height: 65vh;
    position: relative;
}
.flickity-prev-next-button{
    opacity: 20%;
    transition: all 0.2s ease-in-out;
    border-radius: 5px;
    color: #007637;
}
.flickity-prev-next-button:hover{
    opacity: 100%;
    background-color: #007637;
    color: #fff;
} */

/* Return to top btn */
#upBtn {
  display: none;
  position: fixed;
  bottom: 20px; 
  left: 30px; 
  z-index: 99; 
  border: 1px solid white; 
  outline: none; 
  background-color: #003756;
  color: white;
  cursor: pointer; 
  padding: 15px; 
  border-radius: 10px;
  font-size: 18px;
}

#upBtn:hover {
    border: none; 
    color: #003756;
    background-color: #ffffff;
}

/* Footer */
footer{
    background-image: linear-gradient(to right, #001b36, #003756);
    margin-top: auto;
    padding: 20px;
    padding-left: 20%;
    padding-right: 20%;
}
.info{
    width: 50%;
}
.footer-line{
    height: 1px;
    width: 100%;
    background-color: #888;
}

/* Cart-Page */
.right{
    width: 45%;
    padding: 10px;
}

.left{
    width: 50%;
    padding: 10px;
}

#qr{
    width: 50%;
    height: fit-content;
    max-width: 300px;
}
.bank-info{
    font-size: 22px;
}
.bank-ck{
    border: 1px gray solid;
    border-radius: 10px;
    transition: top 0.5s ease-in-out;
}

/* Phone Screen Responsive */
@media only screen and (max-width: 990px){
    .nav-link{
        margin-top: 10px;
        margin: 5px;
        color: #003756;
        background-color: #ffffff;
        box-shadow: none;
    }
    .nav-link:visited{
        color: #003756;
    }
    
    .footer{
        text-align: center;
        display: unset;
        margin-top: auto;
        padding-left: 0%;
        padding-right: 0%;
        padding: 20px;
    }

    .info, .right, .left{
        width: 100%;
    }
    
    .buy-button{
        display: inline-block;
    }
    .main-carousel, .cell{
        height: 20vh;
    }
    #mid-logo{
        display: none;
    }
    #head-logo{
        display: block;
    }
}

/* Effects / Text decorations */
.underline-text {
    position: relative;
    display: inline-block;
}

.underline-text::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -5px; /* Adjust the distance from the text */
    transform: translateX(-50%);
    width: 80%; /* Adjust the width as needed */
    height: 3px; /* Thickness of the underline */
    background-color: #1bddff; /* Green underline */
    border-radius: 5px;
}
.text-hold:hover{
    color: #fbffcf;
    width: fit-content;
}
.bold{
    font-weight: bold;
}
.jvo-text{
    text-shadow:
    0 0 7px #fff,
    0 0 10px #fff,
    0 0 21px #fff,
    0 0 42px #00ffd9,
    0 0 82px #eeff00,
    0 0 92px #eeff00;
}