body {
    background-color: #96a780; /* Sage green */
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

nav ul {
    list-style-type: none;
    padding: 0;
    background-color: #333;
    overflow: hidden;
    margin: 0;
}

nav ul li {
    float: left;
}

nav ul li a {
    display: block;
    color: #f9f6d3;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
	font-size: 26px
}

nav ul li a:hover {
    background-color: #111;
}
.date-marker, .date-display {
    font-size: 25px;
    font-weight: bold;
    margin: 20px 0;
    text-align: center;
	color: #ece5d6;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.date-display {
	margin-top: -45px;
}
.affiliate-box {
    display: flex;
    justify-content: flex-end; 
    width: 80%; 
}
.affiliate-disclosure {
    text-align: left;
	margin-top: -10px;
	margin-bottom: 5px;
	font-size: 16px;
}
.about-content p {
    color: #040001; 
    font-size: 20px; 
    line-height: 1.6;
    margin-bottom: 20px; 
    max-width: 1000px;
}
.paragraphs-background {
    background-color: #ece5d6; 
    padding: 10px;
	padding-left: 30px; 
    padding-right: 30px;
    margin: 20px auto; 
    border-radius: 5px; 
    max-width: 1000px; 
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 6px 20px rgba(0, 0, 0, 0.1); 
}	
.banner {
    display: flex;
    justify-content: center; 
    align-items: center; 
    height: 260px;
}
.center-image {
    max-width: 100%; 
    max-height: 100%; 
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2), 0 12px 24px rgba(0, 0, 0, 0.2); 
}
.deals-container {
	max-width: 65%;
	margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #6d765b; 
    padding: 5px; 
}
.latest-deals {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.deal-timestamp {
	font-size: 14px;
	color: #999;
	text-align: right;
}
.checkout-coupon-style {
	border: 2px solid #444938;
	padding: 2px;
	background-color: #fffacd;
	margin-top: 5px;
	font-weight: bold;
	font-size: 20px;
	color: #444938;
	border-radius: 5px;
	display: inline-block;
}

.checkout-coupon-container {
	margin-top: 5px;
	display: flex;
	align-items: center;
}


.side-image {
    margin: 33px; 
	height: 100px
}
.deals-container h2 {
    font-size: 40px;
    color: #ece5d6;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.deal {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #e3e6dd;
    width: 80%;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2), 0 12px 24px rgba(0, 0, 0, 0.2);
}
.deal-thumbnail {
    max-width: 200px;
    max-height: 190px;
    object-fit: contain;
    border: 2px solid black;
}
.deal-info {
    flex: 1; 
}
.deal-title {
    font-size: 22px; 
    color: #007bff;
    text-decoration: none;
    margin-bottom: 5px;
}
.deal-price {
    font-size: 26px;
    color: #333;
    margin-bottom: 5px;
	margin-top: 8px;
	font-weight: bold;
}
.deal-coupon:empty {
    display: none;
}
.deal-coupon {
    font-size: 22px;
    color: #444938; 
	margin-top: 7px;
	font-weight: bold;
}
.deal-keepa {
    text-align: right;
	margin-top: -12px;
}
.bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background-color: #96a780;
    z-index: 100; 
}

/**************** Mobile-Specific Adjustments **************/

@media (max-width: 768px) {
    body {
        font-family: Arial, sans-serif;
    }

    nav ul li {
        float: none;
        display: inline-block;
        text-align: center;
    }

    nav ul li a {
        padding: 3px 5px;
        font-size: 15px; 
    }

    .banner {
        height: auto; 
        max-height: 200px; 
        margin-bottom: 1px; 
    }

    .center-image {
        max-width: 250px; 
        max-height: 170px; 
        height: auto; 
        margin: 2px auto; 
    }

    .latest-deals {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        margin-top: 0; 
    }

    .latest-deals h2 {
        flex-grow: 1; 
        text-align: center; 
        margin: 0 10px; 
    }

    .side-image {
        max-width: 150px;
        max-height: 70px; 
        height: auto; 
        margin: 10px auto; 
    }

    .date-display {
        margin-top: -8px; 
    }

    .affiliate-box {}

    .deal-thumbnail {
        max-width: 110px;
        max-height: 100px; 
        height: auto; 
        margin: 7px auto; 
    }

    .deal-title {
        font-size: 18px;
        text-align: center;
        white-space: normal;
        overflow: hidden;
        width: 100%;
    }

    .deal-price {
        font-size: 20px;
    }

    .deal-coupon {
        font-size: 18px;
    }

    .banner, .deal, .deal-info, .date-marker {
        flex-direction: column;
        align-items: center;
    }

    .center-image, .deal-thumbnail {
        max-width: 90%;
        height: auto;
        margin: 10px auto; 
    }

    .deal {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .deal-info {
        max-width: 100%;
        text-align: center;
        white-space: normal;
        overflow: hidden;
    }

    .deal-timestamp {
        font-size: 12px;
        color: #999;
        text-align: center;
    }

    .checkout-coupon-style {
        margin-top: 3px;
        font-weight: bold;
        font-size: 18px;
    }

    .checkout-coupon-container {
        margin-top: 4px;
    }
}

