@charset "utf-8";
/* CSS Document */

* {
   box-sizing: border-box;
}
.product-form {
	display: flex; 
	flex-direction: column;

	justify-content:space-around;
	margin: 50px 0;
}

.product-form .image {
   display: flex;
   justify-content:center;
}

.product-form img {
   display: block;
   width:calc( 50% - 40px);
   padding: 20px;
}

/*.product-form img:hover {
   opacity: 0.8;
}*/

.product-card {
	/*width:calc( 60% - 20px );*/
	display: flex;
	justify-content: space-between;
	flex-direction: row;
	align-items: center;
	align-content: space-around;
   margin-bottom: 20px;
   padding: 12px;
   font-family: "Open Sans";
   border: 1px solid #666;
   border-radius: 12px;
}



.product-container {
	display: flex; 
	flex-wrap: wrap;
}

.product-item {
	display: flex;
	justify-content: space-between;
	flex-direction: column;
   width: 200px;
   text-align: center;
   margin: 0 auto;
   margin-bottom: 20px;
   border: 1px solid #666;
   border-radius: 12px;
   padding: 12px;
   /*background: white;*/
   background: #fafafa;
   font-family: "Open Sans";
   
}

.product-item img {
   display: block;
   width: 100%;
}

.product-list {
   /*background: #fafafa;*/
   padding: 15px 0;
}
.product-list h3 {
   font-size: 24px;
   font-weight: 700;
   color: #1F86DE;
   margin: 0 0 10px 0;
}
.product-list .price {
   font-size: 22px;
   color: #DA0008;
   display: block;
   margin-bottom: 12px;
   padding-bottom: 5px;
   font-weight:700;
}
.product-list .button {
   text-decoration: none;
   display: inline-block;
   padding: 0 12px;
   
}


.product-order-name {
   display: flex;
   align-items: baseline;
   justify-content: space-between;
   padding: 0;
   color: rgb(85,82,150);
}
.product-order-name h3 {
	font-family: "Open Sans";
   font-size: 24px;
   font-weight: 900;
   /*color: #1F86DE;*/
   margin: 0;
}

.product-order-name p {
	font-family: "Open Sans";
   font-size: 20px;
   font-weight: 400;
   margin: 0;
   padding: 0 10px;
}

.product-order-price {
	display: flex;
   align-items: baseline;
   justify-content: space-between;
   padding: 0;
}

.product-order-price .price {
   font-size: 20px;
   color: rgb(206,55,52);
   /*color: #DA0008;*/
   /*display: block;*/
   /*margin-bottom: 12px;
   padding-bottom: 5px;*/
   font-weight:700;
}
.product-order-price .button {
   text-decoration: none;
   /*display: inline-block;*/
   margin: 0 0 0 40px;
	height: 50px;
	cursor: pointer;
	display: flex;
    align-items: center;
    justify-content: center;
	font-size: 20px;
	font-weight:900;
	border: none;
	border-radius: 12px;
	padding: 0 20px;
	background-color: rgb(255,115,23);
}

.product-order-price .button a{
	text-decoration: none;	
	color: rgb(255,255,255);
}

.product-order-price .button img{
	display: block;
	width: 100%;
}

.product-order-price .button:hover {
	box-shadow: 0 0 2px 1px rgba(0, 140, 186, 0.5);
}


@media only screen and (min-width: 0px) and (max-width: 768px) {
	.product-card {
		flex-wrap:wrap;
	}
	
	.product-form {
			flex-wrap:wrap;
	}
	
	.product-order-price {
		flex-wrap:wrap;
		justify-content: center;
		margin-top: 20px;
		margin-left: auto;
	}
	
	.product-form img {
		width: 100%;
	}
}

/*CSS for Drop-Down menu product listing*/
body {
      font-family: Arial, sans-serif;
    }

	.floatdd {
		float: right;
		background-color:#FFDBB7;
		border: none;
		padding: 10px 10px 50px;
      border-radius: 4px;
	}
	
    .dropdown {
      position: relative;
      display: inline-block;
	  padding: 2px;
	  border: 1px;
    }

   .dropdown-content {
      display: none;
      position: absolute;
      background-color: #f9f9f9;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
      z-index: 1;
	  right: 0; /* Change left to right */
    }
	
	.dropdown-content .menu-item:hover {
      background-color: #ddd;
    }

    .dropdown:hover .dropdown-content {
      display: block;
	  right: 0; /* Adjust right property to position the dropdown content */
    }

    .menu-item {
      width: 200px; /* Set a fixed width or adjust as needed */
	  padding: 10px;
      cursor: pointer;
      white-space: normal;
      overflow: hidden;
      text-overflow: ellipsis;
      display: flex;
      justify-content: space-between; /* Align items at the start and end of the flex container */
    }

    .menu-item:hover {
      background-color: #ddd;
    }

    .buy-button {
      margin-top: 10px;
      padding: 8px 40px;
      background-color: #4CAF50;
      color: white;
      border: none;
      border-radius: 4px;
      cursor: pointer;
      pointer-events: none;
    }

    .buy-button.active {
      pointer-events: auto;
    }
	
	.popup {
      display: none;
      position: fixed;
      background-color: #f1f1f1;
      padding: 10px;
      border: 1px solid #ccc;
      border-radius: 4px;
      z-index: 1;
    }