
html, body {
	font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden; /* Prevent scrolling on the body */
	overscroll-behavior-y: contain; /* prevents pull-down-refresh on Mobile devices */
}

.container {
    position: relative; /* Set container position to relative */
    text-align: center;
    height: 100vh; /* Set container height to 100% of viewport height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden; /* Prevent scrolling on the container */
}

img {
    position: relative; /* Set image position to relative */
    max-width: 100%;
    height: auto;
    margin: 20px 0;
}


#startBtn {
    position: absolute; /* Set button position to absolute */
    top: 55%; /* Align button vertically to the center */
    left: 62%; /* Align button horizontally to the center */
    transform: translate(-50%, -50%); /* Center button using translation */
    z-index: 1; /* Ensure button appears on top of the image */
	border:outset;
	font-size:30px;
}

#menuBtn {
    position: absolute; /* Set menu button position to absolute */
    top: 10px; /* Adjust top position as needed */
    left: 10px; /* Adjust left position as needed */
    z-index: 1; /* Ensure button appears on top of the image */
	border:outset;
}

#mymenuBtn {
    position: absolute; /* Set menu button position to absolute */
    top: 1px; /* Adjust top position as needed */
    left: 2px; /* Adjust left position as needed */
    z-index: 2; /* Ensure button appears on top of the image */
	border:outset;
	/*height:40px;
	padding:2px;*/
}

.menu {
    display: none; 
    position: absolute;
    top: 1px; 
    left: 0px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
	list-style-type: none;
	padding:10px;
	z-index:30;
}

.menu button {
    display: block;
    width: 100%;
    padding: 10px;
    text-align: left;
	border:outset;
    background: none;
    cursor: pointer;
	color:black;
}

.menu button:hover {
    background-color: #f0f0f0;
}

ul {
  /* Remove default margin and padding from the ul element */
  margin: 0;
  padding: 0;
  padding-right: 20px;
}

h3 {
  /* Remove default margin and padding from the ul element */
  margin: 0;
  padding: 0;
  padding-bottom:10px;
  color:blue;
  font-size:18px;
  font-weight:bold;
}

li {
  /* Add margin-bottom to create space between list items */
  margin-bottom: 10px; /* Adjust the value as needed */
  padding-left:20px;
  cursor:pointer;
}


li:hover {
    background-color: #f0f0f0;
}

.show {
    display: block; /* Show the menu when toggled */
}


h1 {
    font-size: 40px;
	font-weight: bold;
    color: #ffd700; /* Golden Color */
    text-shadow: 2px 2px 2px rgba(255, 255, 255, 0.5), -2px -2px 2px rgba(0, 0, 0, 0.5);
}

p {
    color: #666;
    margin-bottom: 20px;
}

.entry-form {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.entry-form button {
    margin: 10px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
	border:outset;
}

input:hover {
    background-color: #EFEFEF; /* input hover bg color */
}

/* Apply margin between options */
label {
  margin-right: 10px; /* Adjust the value as needed */
}

.about-us{
	background-color:white;
	text-align:justify;
	margin:20px;
	margin-top:10%;
	font-size:20px;
	font-weight:bold;
	border-radius:15px;
	padding:20px;
}
.about-us h2{
	font-size:24px;
	text-align:center;
}

/*  Main menu Computer */
#mainmenudiv {
    display: flex;
    justify-content: space-around; /* Distribute buttons evenly */
    flex-wrap: wrap; /* Wrap buttons if they overflow */
	width:90%;
	margin: 0 auto;
}

.button-container {
    margin: 5px;
	margin-bottom: 0;
	margin-top: 0;
	z-index:30;
}

.button-container button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 120px;
    padding: 10px;
    font-size: 16px;
    cursor: pointer;
	border-radius:10px;
	border:outset;
}

.content {
    display: none;
    padding: 20px;
    margin-top: 5px;
    border: 1px solid #ccc;
    width: 100%;
	text-align:justify;
	border-radius:10px;
	margin-bottom:10px;
	background-color:white;
}

.caret {
    margin-left: 10px;
}

/* Main Menu Mobile */
mobile-button-container {
	margin: 10px 0;
	z-index:30;
}
.mobile-button-container button {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 120px;
	padding: 10px;
	font-size: 16px;
	cursor: pointer;
}
.mobile-content {
	display: none;
	padding: 10px;
	margin-top: 5px;
	border: 1px solid #ccc;
	text-align:justify;
	border-radius:10px;
	margin-bottom:10px;
	background-color:white;
}
.mobile-caret {
	margin-left: 10px;
}
/* Sub Menu Buttons */
submenu-container {
	display: flex;
	justify-content: space-around; /* Distribute buttons evenly */
    flex-wrap: wrap; /* Wrap buttons if they overflow */
	width:90%;
	margin: 0 auto;
	overflow-x: auto; /* Enable horizontal scrolling */
    /*white-space: nowrap; /* Prevent items from wrapping to the next line */
}
#submenuContainer {
    display: flex;
    justify-content: space-around; /* Distribute buttons evenly */
    flex-wrap: wrap; /* Wrap buttons if they overflow */
	width:98%;
	margin: 0 auto;
	/*overflow-x: auto; /* Enable horizontal scrolling */
	white-space: nowrap; /* Prevent items from wrapping to the next line */
}

.submenu:hover {
	background-color:#007BFF;
}

.submenu-items {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background-color: white;
	font-size:18px;
	border: 1px solid black;
	border-radius: 10px;
	min-width: 150px;
	z-index: 1;
	border:outset;
	font-weight:bold;
}
.submenu-items a {
	display: block;
	padding: 10px;
	color: black; /*#007BFF;*/
	text-decoration: none;
	/*background-color: #007BFF;*/
}
.submenu-items a:hover {
	background-color: #007BFF;
	color: white;
}
.caret-down {
	margin-left: 5px;
}

/* submenu mobile */
.submenu-mobile {
	position: relative;
	margin: 0 10px;
	padding: 10px;
	background-color: white; 
	color: white;
	cursor: pointer;
	border-radius: 10px;
	width:80px;
	/*border:outset;*/
	font-size:18px;
	display:none;
}

.itemreview-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 75vh; /* Adjusted to fit within the viewport */
}

.itemreview-img {
    background: #f4f4f4;
    padding: 1rem;
    border-radius: 10px;
    width: 20%; /* Adjusted width */
	height:90%;
	max-height: 500px;
    text-align: center;
    margin: 0 1rem;
	font-size:20px;
}

.option {
    background: #f4f4f4;
    padding: 2rem;
    border-radius: 10px;
    width: 70%; 
    height: 90%;
	max-height: 500px;
    overflow-y: auto; /* Enables vertical scrolling */
    text-align: justify;
    margin: 0 1rem;
    font-size: 20px;
}

.option h3 {
    margin-bottom: 0.5rem;
	font-size:24px;
}

.option p {
    margin-bottom: 1rem;
	font-size:20px;
}

.get-item{
	font-size:60px;
	cursor:pointer;
	color:darkred;
	border:outset;
	border-radius:10px;
	margin-right:10px;
}
/*    /////////////////// */

body, html {
    height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
	background-color: #f0f0f0;
	overscroll-behavior-y: contain; /* prevents pull-down-refresh on Mobile devices */
}

#subcontainer {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
	/* added */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    display: flex;
    justify-content: center;
    align-items: center;
	overflow: auto;
	max-width: 100%;
    overflow-x: hidden; 
}

.top-section {
    height: 40%;
    width: 100%;
    /* Add your styles for the top section here */
	background-color: #f0f0f0;
	border-radius:5px;
	border:outset;
}

.bottom-section {
    height: 45%;
    width: 100%;
    display: flex;
	overflow-y:hidden;
}


.bottom-section > div {
    /*display: flex;*//*removed as it was hidding part of the description      */
    align-items: center;
    justify-content: center;
}


.footer-section {
    height: 10%;
    width: 100%;
    display: flex;
}

.caret-left, .caret-right {
    width: 5%;
	font-size: 3em;  /* triple the size of the caret */
    color: darkred;  /* Change the color to dark red */
	cursor:pointer;
	display: flex;
}

.item-image {
    width: 20%;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
	cursor:pointer;
}

.item-image img {
    height: 96%;
    width: auto;
}


.item-description {
    width: 50%;
    background: #f4f4f4;
    padding: 1rem;
    border-radius: 0px;
    height: 90%;
	max-height: 500px;
    overflow-y: auto; /* Enables vertical scrolling */
    text-align: justify;
    /*margin: 0 1rem;*/
    font-size: 20px;
	padding-bottom:10px;
}

.item-description h3,
.item-description p,
.item-description a {
    margin: 0 10px; /* Add margin to space out the elements */
}

.item-description h4{
	font-weight:bold;
	display:inline;
}

.item-prices {
    width: 20%;
    background-color: #e0e0e0;
    /* Add your styles for the item prices here */
	border:outset;
	/*display: flex;*/
	padding:10px;
	overflow-y:auto;
}

.item-prices h4{
	font-weight:bold;
	display:inline;
	/*text-decoration: underline;*/
}

.subcontainer {
    display: none; /* Initially hide the subcontainer */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    display: flex;
    justify-content: center;
    align-items: center;
	overflow: auto;
	max-width: 100%;
    overflow-x: hidden; 
}
.subcontainer h2{
	font-size:18px;
	text-align:center;
	padding: 5px;
	color:blue;
	font-weight:bold;
}

.associate-identity{
	text-align:center;
	font-size:12px;
	font-weight:bold;
}

.search-row {
  display: none; /*flex;*/
  align-items: center;
  background-color: #f5f5f5;
  padding: 5px;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  width:70%;
  margin: auto; /* to center the div*/
}

.search-cnt {
	margin:auto;
	width:70%;
	padding-top:5px;
}

.search-row input[type="text"] {
  flex: 1;
  border: none;
  outline: none;
  padding: 8px;
  border-radius: 5px;
}

.search-row button {
  background-color: #007bff;
  color: #fff;
  border: none;
  outline: none;
  padding: 8px 12px;
  border-radius: 5px;
  margin-left: 10px;
  cursor: pointer;
}

.search-row button:hover {
  background-color: #0056b3;
}

button {
    padding: 5px 5px;
    font-size: 20px;
	margin-left:5px;
	margin-top:5px;
    /*background-color: #007bff; /* Deep Blue Color */
	background-color: #006400; /* Deep Green Color */
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3; /* Darker shade of Deep Blue Color */
}
.submenu {
	position: relative;
	margin: 0 10px;
	margin-top:10px;
	padding: 10px;
	background-color: black; /*#007BFF;*/
	color: white;
	cursor: pointer;
	border-radius: 10px;
	width:120px;
	border:outset;
	font-size:18px;
	/*flex: 0 0 auto; /* Prevent flex items from shrinking */
}

.submenu:hover .submenu-items {
	display: block;
}

.submenu:hover {
	background-color:#007BFF;
}

.submenu-items {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background-color: white;
	font-size:18px;
	border: 1px solid black;
	border-radius: 10px;
	min-width: 150px;
	z-index: 1;
	border:outset;
	font-weight:bold;
}
.submenu-items a {
	display: block;
	padding: 10px;
	color: black; /*#007BFF;*/
	text-decoration: none;
	/*background-color: #007BFF;*/
}
.submenu-items a:hover {
	background-color: #007BFF;
	color: white;
}

.usermsg{
	padding:5px;
	text-align:center;
	background-color: #d0d0d0;
	width:100%;
	color:black;
	font-weight:bold;
	height:100%;
	overflow-y: auto;
	display:inline-block;
	padding:10px;
	font-size:14px;
}
/* Mobile Device  */
.product-container {
	/*Position:fixed;*/
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.product-item-mobile {
    width: calc(100.00% - 20px); /* 96.00% ensures 1 item fit evenly in a row, minus 20px for margin */
    margin-bottom: 20px;
    text-align: center;
}

.product-image-mobile {
    height: 200px;
    width: 100%;
    object-fit: scale-down;
    margin-bottom: 20px; /* Increase the bottom margin to add more space */
    margin-left: 10px; /* Example: Add left margin */
    margin-right: 10px; /* Example: Add right margin */
	transition: transform 0.3s ease; /* Add smooth transition effect */
}

.product-item-mobile {
	font-size: 16px;
	text-align:justify;
	margin-bottom: 40px; /* Increase the bottom margin to make space for the icon */
    padding-bottom: 80px; /* Add padding to create space between the product name and the icon */
    position: relative; /* Add relative positioning to the product item */
	margin-left: 5px;
	padding-right:10px;
	padding-left:10px;
}

.product-image-mobile:hover {
    /*transform: scale(2);*/ /* Double the size of the image on hover */
}

.product-item-mobile:hover {
    font-size: 14px; /* half the size of the item text on hover */
	cursor:pointer;
	font-weight: bold;
}
.checkout-button-mobile{
	width: 96%;
	background-color: darkred;
	color: white;
	cursor: pointer;
	border: none;
	outline: none;
	padding: 8px 12px;
	border-radius: 5px;
	position: absolute; /* Position the checkout icon relative to its parent */
    bottom: 5px; /* Adjust the bottom position as needed */
	
	margin: 0;
	/*-ms-transform: translateY(-50%);*/
	transform: translateY(-50%);
	margin-right:10px;
}

.product-name, .product-review, .product-price{
	margin-left:5px;
	margin-right:10px;
	text-align:justify;
}

.product-name-search h3{
	margin-right:10px;
	padding-right:10px;
}

.product-review h4{
	font-weight:bold;
	display:inline;
}

.product-price h4{
	font-weight:bold;
	display:inline;
}