<style>
* {
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Lucida Sans", sans-serif;
}
.p2 {
  font-family: Arial, Helvetica, sans-serif;
   color: white;
}
.grid-container {
  display: grid;
  grid-template-areas:
    'header header header header header header'
    'menu main main main main right'
    'footer footer footer footer footer footer';
  gap: 0px;
  background-color: white;
  padding: 0px;
}

.grid-container > div {
  padding: 0px;
  font-size: 16px;
}

.item1 {
display: flex;
    align-items: center;
  grid-area: header;
  padding: 10;
  top: 0;
  overflow: hidden;
  background-color: #333;
height: 65px;
}

}

.item1-rght {
    margin-left: auto; /* Push to the right */
}

.item1-center{
    flex-grow: 1; /* Allow it to grow and take available space */
    text-align: center; /* Center the button within the container */
padding-left:-50;
}

.item1-left {
    margin-right: auto;
}
.item1-left a {
  display: inline-block;
  color: #f2f2f2;
  text-align: center;
 font-size: 20px;
padding: 7px;
}

.item1-left a:hover {
  background-color: RoyalBlue;
  color: white;
}

.item1-left a.active {
  background-color: #04AA6D;
  color: white;
}


.cartbtn {
  background-color: #333; /* Blue background */
  border: none; /* Remove borders */
  color: white; /* White text */
  font-size: 5px; /* Set a font size */
  cursor: pointer; /* Mouse pointer on hover */
  padding-right: 20px;
  padding-top: 10px;
  float: right;

}

/* Darker background on mouse-over */
.cartbtn:hover {
  background-color: RoyalBlue;
}
.cartbtnimg{
	width:44px;
}
.wrapper{
position: relative;
}

.wrapper span{
position: absolute;
color: white;
top: 5px;
right: 40px; 
text-align: center;
background:red;
border-radius:50%;
height: 19px;
width: 19px;
font-size: 16px;

}
.logoBtn {
width:165px;
}
.content-section {
    margin: 1em;
}

.shop-item {
    margin: 30px;
}

.shop-item-title {
    display: block;
    width: 100%;
    text-align: center;
    font-weight: bold;
    font-size: 1.5em;
    color: #333;
    margin-bottom: 15px;
}

.shop-item-image {
    height: 250px;
}

.shop-item-details {
    display: flex;
    align-items: center;
    padding: 5px;
}

.shop-item-price {
    flex-grow: 1;
    color: #333;
}

.shop-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}
.item5 {
  grid-area: footer;
  background-color: #333;
  color: #ffffff;
  text-align: center;
}
.btn {
    text-align: center;
    vertical-align: middle;
    padding: .67em .67em;
    cursor: pointer;
}


.btn-primary {
	
    color: white;
    background-color: #0080ff;
    border: none;
    border-radius: .3em;
    font-weight: bold;
}

.btn-primary:hover {
    background-color: #2D9CDB;
}


@media only screen and (max-width: 600px) {
  .item1 {grid-area: 1 / span 6;}
  .item2 {grid-area: 2 / span 6;}
  .item3 {grid-area: 3 / span 6;}
  .item4 {grid-area: 4 / span 6;}
  .item5 {grid-area: 5 / span 6;}
}

@media only screen and (min-width: 600px) {
  .item1 {grid-area: 1 / span 6;}
  .item2 {grid-area: 2 / span 1;}
  .item3 {grid-area: 2 / span 4;}
  .item4 {grid-area: 3 / span 6;}
  .item5 {grid-area: 4 / span 6;}
}

@media only screen and (min-width: 768px) {
  .item1 {grid-area: 1 / span 6;}
  .item2 {grid-area: 2 / span 1;}
  .item3 {grid-area: 2 / span 4;}
  .item4 {grid-area: 2 / span 1;}
  .item5 {grid-area: 3 / span 6;}
}

</style>
