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;
}


aside{
    display: block;
    background-color: yellow;
    color: darkgreen;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

#right {
    position: fixed;
    top: 30%;
    bottom: 20%;
    right: 0;
    width: 20%;
    overflow-y: auto;
    padding: 1rem;
    z-index: 1000;
}


@media (max-width: 900px) {
    #right {
        position: static;
        width: 100%;
        height: auto;
        box-shadow: none;
    }

    .with-fixed-aside { margin-right: 0; }
}

footer{
    display: block;
    position: fixed;
    bottom: 0;
    width: 75.35%;
    background-color: yellow;
    color: darkgreen;
    text-align: center;
    padding: 10px;
    border-top-right-radius: 4px;
}

a{
    color: darkgreen;
}

header{
    display: block;
    position: fixed;
    top: 0;
    width: 75.35%;
    background-color: yellow;
    color: darkgreen;
    text-align: center;
    padding: 10px;
    border-bottom-right-radius: 4px;
    z-index: 1
}

.cart-badge{ position: absolute; right: 12px; top: 50%; transform: translateY(-50%); text-decoration: none; color: darkgreen; font-size: 20px; display: inline-flex; align-items: center; }
.cart-badge-count{ position: absolute; right: -6px; top: -6px; background: darkgreen; color: yellow; border-radius: 999px; padding: 0 6px; font-weight: 700; display: none; font-size: 12px; line-height: 20px; }
header{ position: fixed; }

img{
    display: block;
    width: 100%;
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 20%;
    gap: 1.5rem;
    align-items: start;
    padding: 1rem;
}

body{
    background-color: salmon;
    color: yellow;
}

.hero{
    margin-top: 80px;
    padding: 2.5rem 1rem;
    background: linear-gradient(180deg, rgba(100,149,237,0.08), rgba(0,0,0,0));
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 1rem;
    align-items: center;
}
.hero-inner{ padding: 1rem; }
.hero-title{ font-size: 2rem; color: darkgreen; margin-bottom: 0.25rem; }
.hero-sub{ color: darkgreen; margin-bottom: 1rem; }
.hero-decor{ height: 180px; border-radius: 12px; background: linear-gradient(135deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01)); box-shadow: inset 0 0 40px rgba(255,255,255,0.02); }

.btn{ background: yellow; color: darkgreen; padding: 0.5rem 1rem; border-radius: 8px; text-decoration: none; display: inline-block; }
.btn-ghost{ background: transparent; border: 1px solid rgba(255,255,255,0.06); color: darkgreen; }

.featured{ padding: 1rem; margin-top: 1rem; }
.section-title{ color: darkgreen; font-size: 1.25rem; margin-bottom: 0.5rem; }
.featured-grid{ display: grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); gap: 1rem; }
.card{ background: rgba(255,255,255,0.02); border-radius: 10px; overflow: hidden; display: flex; flex-direction: column; }
.card-img{ height: 120px; background-size: cover; background-position: center; }
.card-body{ padding: 0.75rem; display: grid; grid-template-columns: 1fr auto; gap: 0.5rem; align-items: center; }
.card-title{ color: darkgreen; font-weight: 600; }
.card-price{ color: darkgreen; font-weight: 700; }
.card button.add-to-cart{ grid-column: 2; padding: 0.35rem 0.6rem; border-radius: 6px; border: none; background: yellow; color: darkgreen; cursor: pointer; }

@media (max-width: 900px){
    .hero{ grid-template-columns: 1fr; }
    header{ position: static; width: 100%; }
}
.active {
  background-color: yellow;
  color: white;
  font-size: 50px;
}
img{
    display: block;
    width: auto;
    background-color: darkgreen;
    border-radius: 5px;
}
footer{
    display: block;
    background-color: yellow;
    bottom: 0;
    color: darkgreen;
    padding: 10px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}
label{
    display: block;
    margin-top: 10px;
    margin-bottom: 5px;
}
p,h1,label{
    color: darkgreen;
}
option{
    color: grey;
}
input{
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
    border: 2px solid #ccc;
    border-radius: 4px;
    background-color: white;
    font-size: 16px;
}
textarea{
    width: 100%;
    height: 150px;
    padding: 8px;
}
.topnav{
    display: block;
    float: right;
    right: 0px;
    background-color: yellow;
    color: blue;
}