body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #333333; /* Fallback color */
color: #333;
background-image: url('IMG_9171.jpeg');
background-size: 95% auto;
background-position: center top;
background-repeat: repeat-y;
min-height: 100vh;
}

header {
background-color: #f28c38;
color: white;
text-align: center;
padding: 30px;
position: relative;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}

h1 {
margin: 0;
font-size: 2.5em;
}

header p {
margin: 5px 0;
font-size: 1em;
}

.header-image, .header-image-left {
width: 250px;
height: auto;
max-width: 30%;
min-width: 100px;
}

.header-image {
position: absolute;
top: 10px;
right: 20px;
}

.header-image-left {
position: absolute;
top: 10px;
left: 20px;
}

nav {
background-color: #CA6410;
padding: 10px;
}

.menu-toggle {
display: none;
color: white;
font-size: 1.2em;
padding: 10px;
cursor: pointer;
text-align: center;
}

.nav-menu {
list-style: none;
margin: 0;
padding: 0;
text-align: center;
}

.nav-menu li {
display: inline-block;
margin: 0 20px;
}

.nav-menu li a {
color: white;
text-decoration: none;
font-weight: bold;
}

.nav-menu li a:hover {
color: #f4d35e;
}

main {
max-width: 900px;
margin: 20px auto;
padding: 20px;
min-height: unset;
}

section {
background: rgba(255, 255, 255, .85);
padding: 20px;
margin-bottom: 20px;
border-radius: 8px;
border: 3px solid #ffffff;
color: #000;
}

button {
background-color: #f4d35e;
color: #1a3c34;
border: none;
padding: 10px 20px;
cursor: pointer;
border-radius: 5px;
font-weight: bold;
}

button:hover {
background-color: #ee964b;
}

.whatsapp-btn {
background-color: #25D366;
color: white;
padding: 10px 20px;
text-decoration: none;
border-radius: 5px;
display: inline-block;
}

.whatsapp-btn:hover {
background-color: #20b956;
}

footer {
text-align: center;
padding: 8px;
background-color: #f28c38;
color: white;
position: static;
width: 100%;
}

.product-list {
list-style: none;
padding: 0;
}

.product-list li {
margin: 10px 0;
font-size: 1.1em;
}

.product-list strong {
color: #1a3c34;
}

/* Invisible Dummy Section Styling */
.invisible-dummy-section {
background: transparent;
padding: 20px;
margin-bottom: 20px;
border: none;
color: transparent;
min-height: 100vh;
}

/* Ensure body and html allow scrolling */
html, body {
height: auto;
}

/* Media Queries for Mobile Optimization */
@media (max-width: 768px) {
h1 {
font-size: 1.8em;
}

header p {
font-size: 0.9em;
}

.header-image, .header-image-left {
position: left;
width: 180px;
margin: 40px auto 0;
}

header {
padding: 20px 10px;
flex-direction: column;
justify-content: center;
align-items: center;
}

.menu-toggle {
display: block;
}

.nav-menu {
display: none;
text-align: left;
}

.nav-menu.active {
display: block;
}

.nav-menu li {
display: block;
margin: 10px 0;
padding: 10px;
}

main {
padding: 10px;
margin: 10px auto;
}

section {
padding: 15px;
margin-bottom: 15px;
}

button, .whatsapp-btn {
width: 100%;
box-sizing: border-box;
}
}

@media (max-width: 480px) {
h1 {
font-size: 1.4em;
}

header p {
font-size: 0.8em;
}

.header-image, .header-image-left {
width: 200px;
margin: 50px auto 0;
}

header {
padding: 15px 5px;
flex-direction: column;
justify-content: center;
align-items: center;
}

section {
padding: 10px;
}
}

/* Shipping Highlight Box */
.shipping-highlight {
background: #f4f4f4;
padding: 15px;
border-left: 5px solid #25D366;
font-weight: bold;
margin: 20px 0;
border-radius: 6px;
}

/* New Thank You Section */
.thank-you-section {
margin-top: 2000px; /* Pushes this section down 500px */
text-align: center;
font-style: italic;
color: #1a3c34;
}