body {
    font-family: 'EB Garamond', serif;
    background-color: black;
    color: white;
}

a {
    color: white;
    text-decoration: underline;
    cursor: pointer;
}

.page-wrapper {
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 97vh;
    max-width: 1024px;
    margin: 0 auto;
}

.header {
    margin: 20px;
}

.page-title {
    float: left;
    margin-right: 30px;
}

.nav-links {
    float: left;
}

.nav-link {
    float: left;
    margin: 30px 20px 0;
    cursor: pointer;
    text-decoration: underline;
}

.nav-active {
    font-weight: bold;
    color: #f90093;
}

.cart {
    float: right;
    margin: 30px 0 0;
    position: relative;
}

.cart-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.cart-dropdown {
    position: absolute;
    top: 40px;
    right: 5px;
    width: 270px;
    background-color: white;
    color: black;
    border: 1px solid #ccc;
    padding: 20px;
    z-index: 1000;
}

.cart-close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}

.cart-item-quantity {
    float: right;
    text-align: right;
    margin: 0 10px;
}

.cart-mod {
    color: #000;
    cursor: pointer;
    text-decoration: none;
    margin: 0 5px;
}

.cart-checkout-button {
    margin: 10px 0 0 0;
    cursor: pointer;
}

.main {
    flex: 1;
    margin: 20px;
}

.content-item {
    display: none;
}

.content-active {
    display: block !important;
}

.store-sample-photo {
    width: 200px;
    max-width: 100%;
    height: auto;
    margin: auto;
    display: block;

}

.vibes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.vibe-card {
    border: 1px solid white;
    padding: 25px;
    text-align: center;
}

.about-paragraph {
    font-size: 1.1rem;
}

.checkout-columns {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.checkout-details {
    flex: 1;
    padding: 10px;
}

.checkout-cart {
    flex: 1;
    list-style-type: none;
    padding: 0;
}

.checkout-cart-item-quantity {
    float: right;
    text-align: right;
    margin-left: 10px;
}

.checkout-form input[type=text], .checkout-form input[type=email], .checkout-form input[type=tel], .checkout-form textarea {
    width: 100%;
    padding: 8px;
    margin: 5px 0 15px 0;
    box-sizing: border-box;
    background-color: black;
    color: white;
    border: 1px solid white;
}

.contact-form input[type=text], .contact-form input[type=email], .contact-form input[type=tel], .contact-form textarea {
    width: 100%;
    padding: 8px;
    margin: 5px 0 15px 0;
    box-sizing: border-box;
    background-color: black;
    color: white;
    border: 1px solid white;
}

.checkout-button {
    margin: 20px 0;
    cursor: pointer;
}

.order-summary {
    display: flex;
    flex-direction: row;
}

.order-summary-shipping, .order-summary-cart {
    flex: 1;
    padding: 10px;
}

.in-person-checkout {
    margin-top: 45px;
}

.confirmation-message {
    margin: 0 0 20px;
}

.address-block {
    margin-left: 20px;
}

.footer {
    margin-top: auto;
    text-align: center;
}

.footer-span {
    margin: 0 20px;
}