body {
  height: 100%;
  width: 100%;

  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffed3537',
   endColorstr='#fffb3e40', GradientType=0);

   background-image: -webkit-linear-gradient(#a853f8, #3ec5fb 50%, #52b6a0);
  background-image: -o-linear-gradient(#a853f8, #3ec5fb 50%, #52b6a0);
  background-image: linear-gradient(#a853f8, #3ec5fb 50%, #52b6a0);
  background-repeat: no-repeat;

  font-family: 'Trebuchet MS', sans-serif;
  
}

.bd-placeholder-img {
font-size: 1.125rem;
text-anchor: middle;
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
}

@media (min-width: 768px) {
.bd-placeholder-img-lg {
  font-size: 3.5rem;
}
}

.fade-in {
opacity: 0;
  transform: translateY(50px); /* Start 50px below its original position */
  transition: opacity 1s ease-out, transform 1s ease-out; /* Adjust timing for the desired effect */
  will-change: opacity, transform; /* Optimize rendering for smoother animation */
}


hr {
margin-top: 2rem;
margin-bottom: 2rem;
border: 0;
border-top: 1px solid rgba(201, 201, 201, 0.1);

}


.navbar-nav > li > .dropdown-menu a:focus { background-color: #54b4d3 }

.navbar-nav {
    float:none;
    margin:0 auto;
    text-align: center;

}

.navbar-nav > li {
    display: inline-block;
    float:none;
    font-size:120% !important;
}

.navhr {
margin-top: 1rem;
margin-bottom: 1rem;
border: 0;
border-top: 1px solid rgba(250, 250, 250, 0.1);
}

.column {
    position: fixed;
    top: 0;
    z-index: 10;
}

.backgr {
  position: relative;
    z-index: 5;
}

.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0; /* remove the gap so it doesn't close */
}

.secondary {
    position: relative;
    z-index: 1;
}

vertical-center {
  min-height: 100%;  /* Fallback for browsers do NOT support vh unit */
  min-height: 100vh; /* These two lines are counted as one :-)       */

  display: flex;
  align-items: center;
}

.alma {                
    box-shadow: 0 5px 20px 50px rgba(33,37,41,1);
    
   
    
  }

  .szinesdiv {
      height: 100%;
      width: 100%;
      background-image: -webkit-linear-gradient(#a853f8, #3ec5fb 50%, #52b6a0);
      background-image: -o-linear-gradient(#a853f8, #3ec5fb 50%, #52b6a0);
      background-image: linear-gradient(#a853f8, #3ec5fb 50%, #52b6a0);
      background-repeat: no-repeat;
      filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffed3537',
       endColorstr='#fffb3e40', GradientType=0);
}


.product-title {
  font-size: 36px;
  font-weight: bold;
}

.product-short-detail {
  font-size: 20px;
  margin: 15px 0;
}

.product-long-detail {
  font-size: 16px;
  margin: 20px 0;
}

.product-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.color-tile {
  width: 40px;
  height: 40px;
  margin: 5px;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s;
}

.color-tile:hover {
  transform: scale(1.1);
}

.color-tile.selected {
  border: 2px solid #fff;
}

.vilagoskek:hover {
  color: #31d2f2;
}


h4>a:hover { 
  color: #31d2f2 !important;
} 


hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #f8f9fa;
  margin: 1em 0;
  padding: 0;
}


.cart-number {
  background-color: #fa3e3e;
  border-radius: 2px;
  color: white;
 
  padding: 1px 3px;
  font-size: 10px;
  
  position: absolute; /* Position the badge within the relatively positioned button */
  top: 0;
  right: 0
}

.cart-bounce {
  animation: bounce 0.5s;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}


/* .selector {

  background-color: #252525;
  color: #fff;
  border: none;
  border: 1px solid #595E57;
  padding: 5px;
  width: 150px;
  overflow:hidden;
}
.selector option{
padding:5px;
}
.selector option:hover{
  background-color: #1BA1E2 !important;
} */



 /* Default style for select */
 .custom-select {
  background-color: #343a40; /* Dark background for select */
  color: #f8f9fa; /* Light text */
  border: 1px solid #f8f9fa;
  transition: background-color 0.3s ease, color 0.3s ease; /* Smooth transitions */
}

/* Focus effect (when select is clicked) */
.custom-select:focus {
  outline: none;
  background-color: #31d2f2 !important; /* Bootstrap info color on focus */
  color: #343a40 !important; /* Dark text */
}

/* Option styles */
.custom-select option {
  background-color: #343a40; /* Dark background for options */
  color: #f8f9fa; /* Light text */
}

/* Cannot reliably style hover on option elements due to browser limitations */
/* Adding this for clarity */
.custom-select option:hover {
  background-color: #31d2f2; /* Attempt to change on hover, but this may not work across browsers */
  color: #343a40;
}

/* Animation effect */
.custom-select.opening {
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
      opacity: 0;
      transform: translateY(-10px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}
