/* General Resets */
body, html {
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: rgb(166, 208, 197);
    min-height: 100%;
}

ul, li {
    list-style: none;
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Wrapper */
#wrapper {
    max-width: 1000px;
    margin: auto;
    padding: 20px;
    box-sizing: border-box;
    /* border: 3px solid black; */
}

/* Header and Logo Container */
header {
    background-color: rgb(95, 226, 176);
    padding: 15px 0;
    text-align: center;
}

.logo-container {
    background-color: rgb(166, 223, 212);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: auto;
    width: 185px;
}

.logo span {
    color: #228B22;
    font-family: 'Pacifico', cursive;
    font-size: 3em;
    margin-left: 10px;
    white-space: nowrap;
}

/* Navigation */

nav{
    padding: 15px;
    background-color: rgb(68, 139, 125);
}

nav ul {
    padding: 0;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
}

nav ul li {
    width: 20%;
    text-align: center;
}

nav ul li a {
    color: white;
    display: block; 
}

nav ul li a .fa-shopping-cart {
    font-size: 1.5em;
    vertical-align: middle;
}

nav ul li a:hover,
nav ul li a.active {
    color: rgb(234, 199, 0);
}

/* Main Content */
main {
    float: left;
    width: calc(61.70% - 10px); 
    padding: 20px;
    /* background-color: light; */
    
}

*, *:before, *:after {
    box-sizing: border-box;
} 

aside {
    float: right;
    width: calc(36.17% - 10px); 
    padding: 20px;
    background-color: white;
    margin-left: 20px;
    margin-bottom: 20px;
    margin-top: 20px;
}

/* Product Layout */
.product, .featured-content {
    background-color: #fff;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.third {
    width: 300px;
    float: left;
    margin-right: 20px;
}

.quarter, .fourth {
    width: 220px;
    float: left;
    margin-right: 20px;
}

/* Footer */
footer {
    clear: both;
    background-color: rgb(42, 112, 98);
    color: #fff;
    text-align: center;
    padding: 10px 0;
    margin-top: 20px;
}

footer ul {
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: center;
}

footer ul li {
    margin: 0 10px;
}

footer a {
    color: #fff;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
    }

    nav ul li {
        width: 100%;
    }

    .logo, nav ul {
        text-align: center;
    }

    main, aside {
        width: 100%;
        float: none;
    }

    .third, .quarter, .fourth {
        width: 100%;
        margin-right: 0;
    }
}

/*shopping cart styling*/
table {
    width: 100%;
    border-collapse: collapse; 
    table-layout: fixed;
    margin-top: 20px;
    margin-bottom: 10px;
}

th, td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #ccc;
}

th {
    background-color: #f2f2f2; 
    color: #333;
}

tr:hover {
    background-color: #f5f5f5;
}

tfoot td {
    font-weight: bold;
    background-color: #f9f9f9;
}
button{
    padding: 10px;
    font-weight: bold;
    border-color: green;
    border-radius: 5px;
    font-size: 100%;
}

button:hover {
    color:maroon;
}

blockquote {
    background-color: #A6D0C5;
    padding: 20px;
    font-style: italic;
    color: #333333;
    border-left: 10px solid #333333;
    margin: 20px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    width: auto;
  }
  