/*
    Added box-sizing: border-box to all elements
    Original CSS Reset is below
*/

*,
*:before,
*:after {
  box-sizing: border-box;
}


/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
nav{display: flex;
  flex-direction: column;
background-color: #cce6f4;
color: #271033;
justify-self: right;
width:100%;
z-index: 20;
height: fit-content;
position:sticky;
    top: 0;
}

body, html {
  height: 100%;
  display: flexbox;
  font-family: "Caprasimo", sans-serif;
  background-color: #f1f1f1;
  color: #222;
  margin: 0;
}

.parent {
display: grid;
grid-template-columns: repeat(2, 0.5fr) 2fr 1fr;
grid-template-rows: 0.6fr 0.4fr;
grid-column-gap: 0px;
grid-row-gap: 0px;
box-shadow: #271033 15px 15px, rgba(240, 46, 170, 0.2) 15px 15px;
border: #271033;
border-style: solid;

}
  .parent a{
    text-decoration: none;
    color: #271033;

  }

.div1 { grid-area: 1 / 1 / 2 / 3; 
background-color: #cce6f4;
}
.div2 { grid-area: 1 / 3 / 2 / 4; 
background-color: #cce6f4;
}
.div3 { grid-area: 1 / 4 / 2 / 5; 
background-color: #cce6f4;}
.div4 { grid-area: 2 / 1 / 3 / 2;
background-color: #cce6f4; 
border: #271033;
border-style: solid;}
.div5 { grid-area: 2 / 2 / 3 / 3; 
background-color: #cce6f4;
border: #271033;
border-style: solid;}
.div6 { grid-area: 2 / 3 / 3 / 5; }
.div4:hover {background-color:#ef6f6c ;
cursor: pointer;
transition: 0.3s;}
.div5:hover {background-color:#ef6f6c ;
cursor: pointer;
transition: 0.3s;}

.div3 input[type=text] {
  padding: 6px;
  margin-top: 8px;
  font-size: 17px;
  border: none;
  border-radius: 10px;
}
.div3 button {
  position: absolute;
  top: 10px;
  right: 140px;
  padding-top: 5px;
  padding-bottom: 3px;
  border: none;
  background-color: #426a5a;
  color: white;
  border-radius: 0px 10px 10px 0;
  cursor: pointer;}


  
.div3 button:hover{
    box-shadow: #271033 5px 5px, rgba(240, 46, 170, 0.2) 5px 5px;
    
}
.parent a.active {
  background-color: #2196F3;
  color: white;
}

.parent1 {
display: grid;
grid-template-columns: 1fr;
grid-template-rows: repeat(11, 1fr);
grid-column-gap: 0px;
grid-row-gap: 0px;
}
.img { grid-area: 1 / 1 / 6 / 2; 
border: #271033;
border-style: solid;}
.img div{
  position: absolute;
  top: 50%;
  left: 22%;
  z-index: 1;
  background-color: #cce6f4;
  padding-left:325px;
  padding-right:350px;
  padding-bottom:20px;
  padding-top:175px;
  border: #271033;
  border-style: solid;
  border-radius: 5px;
}
.shop { grid-area: 6 / 1 / 12 / 2; 
background-color:#426a5a;
display: grid;
grid-template-columns: 1fr;
grid-template-rows: 1fr repeat(2, 5fr);
grid-column-gap: 0px;
grid-row-gap: 0px;}
.img img{
  height:100%;
  width:100%;

}
.img a{
  text-decoration: none;
  color: #271033;
}
.img button:hover{
  box-shadow: #271033 10px 10px, rgba(240, 46, 170, 0.2) 10px 10px;
  background-color: #271033;
  color: #cce6f4;
   
}

footer{
  background-color: #e9df00;
  color: white;
  height: 25%;
  padding: 12px;

}
footer h2,ul,li{
  float:right;
  text-wrap: wrap;
  list-style: none;
}
.fout {
display: grid;
grid-template-columns: 1fr 3fr 1.2fr;
grid-template-rows: repeat(2, 1fr);
grid-column-gap: 0px;
grid-row-gap: 0px;
}

.copy { grid-area: 1 / 1 / 3 / 2; }
.contact { grid-area: 1 / 3 / 3 / 4; }
.erm { grid-area: 1 / 2 / 3 / 3; }

.hidden-form {
  display: none; 
  background-color: #cce6f4;
  
  
}

.hover-container:hover .hidden-form {
  display: block; /* Show the form on hover */
  /* Or use:
  opacity: 1;
  visibility: visible;
  */
}
.hover-text {
  cursor: pointer;
  text-decoration:none;
  padding-left: 25px;
}

button{
  background-color: #cce6f4;
  text-decoration: none;
  font-family: "Caprasimo", sans-serif;
  padding: 14px 16px;
}
button:hover{
  background-color: #271033;
  color: #cce6f4;
  box-shadow: #271033 10px 10px, rgba(240, 46, 170, 0.2) 10px 10px;
}
.Items { grid-area: 2 / 1 / 4 / 2; 
height: auto;
padding-top: 10px;
padding-bottom: 10px;}

#Clothes {
  height: 100%;
}
#Misc {
  height:100%;
}
#Food {
  height:100%;
}

.tab {
  overflow: hidden;
  border: solid #271033;
  background-color: #cce6f4;
  grid-area: 1 / 1 / 2 / 2;
  
}
.tab button {
  float: left;
  cursor: pointer;
  margin-top: 35px;
  margin-right: 15px;
  margin-left: 5px;
  padding: 14px 16px;
  color: #271033;
  transition: 0.3s;
  font-family:"Caprasimo", sans-serif;
}
.tab button:hover{box-shadow: #271033 5px 5px, rgba(240, 46, 170, 0.2) 5px 5px;
  background-color: #271033;
color: #cce6f4;}

.tab button.active {
  background-color: #271033;
  color: #cce6f4;
}

.tabcontent {
  display: none;
  padding: 6px 20px;
  border: 1px solid #ccc;
  border-top: none;}

.shorp {
display: grid;
grid-template-columns: repeat(2, 1fr) 0.5fr repeat(2, 1fr) 0.5fr repeat(2, 1fr);
grid-template-rows: repeat(2, 1fr) 0.5fr repeat(2, 1fr);
grid-column-gap: 0px;
grid-row-gap: 0px;
height: auto;
}

.Item1 { grid-area: 1 / 1 / 3 / 3;
  height: fit-content;
  width: fit-content; 
}
.Item2 { grid-area: 1 / 4 / 3 / 6; 
  height: fit-content;
  width: fit-content;
}
.Item3 { grid-area: 1 / 7 / 3 / 9;
  height: fit-content;
  width: fit-content; 
}
.Item4 { grid-area: 4 / 1 / 6 / 3; 
  height: fit-content;
  width: fit-content;
}
.Item5 { grid-area: 4 / 4 / 6 / 6; 
  height: fit-content;
  width: fit-content;
}
.Item6 { grid-area: 4 / 7 / 6 / 9; 
  height: fit-content;
  width: fit-content;
}



.content {
display: grid;
grid-template-columns: repeat(2, 1fr);
grid-template-rows: 1fr;
grid-column-gap: 0px;
grid-row-gap: 0px;
background-color: #ef6f6c;
height: fit-content;
width:1fr;
border: #271033;
border-style: solid;
box-shadow: #271033 10px 10px, rgba(240, 46, 170, 0.2) 10px 10px;
margin: 0 20px;
}

.content button{
  display: none;
  
}
.content:hover button{
  display:inline;
  filter: brightness(200%);
  position:absolute;
  right: 38%;
  top:38%;
}

.content:hover{filter: brightness(70%);}

.conimg { grid-area: 1 / 1 / 2 / 2; 
img{object-fit: cover;
height:230px;
width:95%;
    margin:5%;
  border-radius: 0px 10px 10px 0;}
height: fit-content;
width: fit-content;}
.condesc { grid-area: 1 / 2 / 2 / 3; 
padding: 0 15px 0 10px;
text-wrap:wrap;}
.price{
  font-weight: bold;
  color: #271033;}
.material-symbols-outlined {
  font-variation-settings:
  'FILL' 0,
  'wght' 400,
  'GRAD' 0,
  'opsz' 24
}

.caprasimo-regular {
  font-family: "Caprasimo", serif;
  font-weight: 400;
  font-style: normal;
}

.apple{
  position: absolute;
  bottom:-85px;
  left:35%;
}

.cart-item{
  background-color: #cce6f4;
}