
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, 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;
}


/*note this is when css reset ends*/



ul {
  list-style-type: none;
  margin: 10px;
  padding: 0;
  overflow: hidden;
  background-color: #486444;
  text-align: right;
  border-radius: 10%;
}

ul li {
  float: right;
}



ul li a {
  display: block;
  color: rgb(23, 15, 48);
  padding: 16px 16px;
}

ul li a:hover {
  background-color: #000000;
  color: rgb(191, 139, 255);

}


body {
  font-family: Doto;
  background-color: #b0beb8;
  font-weight: 870;
  padding: 12px 14px;
  
}

H1, p {
  font-size: 18px;
  line-height: 1;
  color: #333333;
  text-align: center;

}

.home {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 14px 16px;
  font-size: 20px;
  color: #000000;
  float: left;
}

.logo img {
  height: 50px;
  margin: auto;
  text-align: center;
  padding: 14px 16px;
  font-size: 20px;
  color: #000000;
  float: left;
}

#home {
  position: sticky;
  top: 0; 
  padding: 5px;
} 

th {
  background-color: #486444;
  color: white;
  text-align: center;

}

.story {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  font-size: 16px;
  line-height: 1.5;
  color: #555555;
  padding: 10px 12px;
  border: #000000;
  border-radius: 8px;
  margin: 20px auto;
  background-color: #48644420;
}

.mission {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  font-size: 16px;
  line-height: 1.5;
  color: #555555;
  padding: 10px 12px;
  border: #000000;
  border-radius: 8px;
  margin: 20px auto;
  background-color: #48644420;
}

iframe {
  display: block;
  margin: 20px auto;
  border: 20px solid #486444;
  border-radius: 8px;
}

/* Style the button that is used to open and close the collapsible content */
.collapsible {
  background-color: #729260;
  color: #ffffff;
  display: flex;
  justify-content: left; /* Centers horizontally */
  align-items: center; /* Centers vertically */
  margin: 0 auto;
  padding: 5px 18px;
  width: 100%;
  text-align: center;
  font-size: 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  margin-bottom: 10px;
  margin-top: 10px;
  font-family: Arial, Helvetica, sans-serif;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease; 
}

/* Style the collapsible content. Note: hidden by default */
.content {
  padding: 0 18px;
  display: none;
  overflow: hidden;
}

.collapsible:hover {
  background-color: #ffffff;
}

nav {
    display: grid;
  grid-template-columns: auto auto auto;
  background-color: #486444;
  padding: 10px;
  border-radius: 100%;

}

.cart-actions { display:flex; 
  justify-content:center; 
  align-items:center; gap:1rem;
   margin:1.5rem 0; 
  }
.cart-actions button { 
  background:#3e5543;
  color:#fff;
  border:0; 
  padding:0.6rem 1rem; 
  border-radius:6px; 
  cursor:pointer; 
  font-weight:600; 
  box-shadow:0 2px 5px rgba(0,0,0,0.2);
}
.cart-actions button:hover { 
  background:#63986f; 
}
.cart-actions button:active { 
  transform:translateY(1px); 
}

.products-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 1rem; margin: 2rem 0; }
.product { border: 1px solid #ddd; padding: 1rem; border-radius: 8px; text-align: center; background:#fff; }
.product img { max-width:100%; height:150px; object-fit:cover; border-radius:6px; }
.product h3 { margin:0.5rem 0 0.25rem; font-size:1.05rem; }
.price { color:#b12704; font-weight:700; margin-bottom:0.5rem; }
.add-btn { background:#222;color:#fff;border:0;padding:0.5rem 0.75rem;border-radius:6px;cursor:pointer; }
.cart-badge { background:#b12704;color:#fff;border-radius:999px;padding:0.15rem 0.5rem;margin-left:6px;font-size:0.9rem; }