/* styles.css — A Taste of Yummy */

body {
  font-family: 'Georgia', serif;
  background-color: #ffffff; /* white background */
  color: #000000; /* main text color changed to black */
  margin: 0;
  padding: 0;
}

header, footer {
  background-color: #45cbdd; /* azure-blue header/footer */
  color: #ffffff; /* white text for contrast */
  text-align: center;
  padding: 20px;
}

nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 15px;
}

nav a {
  text-decoration: none;
  color: #ffffff; /* white links for visibility */
  font-weight: bold;
}

.tagline {
  font-style: italic;
  color: #8c52ff; /* violet-purple tagline */
}

main {
  padding: 20px;
}

section {
  margin-bottom: 40px;
}

/* Purple Treat Choice Boxes */
input[type="text"] {
  width: 100%;
  max-width: 400px;
  padding: 10px 14px;
  margin: 8px 0 16px;
  border: 2px solid #a678b4;
  border-radius: 10px;
  background-color: #f3e8ff;
  font-size: 1rem;
  font-family: 'Quicksand', sans-serif;
  color: #4b2e83;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: border-color 0.3s ease;
}

input[type="text"]:focus {
  border-color: #7e4ccf;
  outline: none;
}

/* Purple Dropdowns */
select {
  width: 100%;
  max-width: 400px;
  padding: 10px 14px;
  margin: 8px 0 16px;
  border: 2px solid #a678b4;
  border-radius: 10px;
  background-color: #f3e8ff;
  font-size: 1rem;
  font-family: 'Quicksand', sans-serif;
  color: #4b2e83;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: border-color 0.3s ease;
}

select:focus {
  border-color: #7e4ccf;
  outline: none;
}

/* Purple Add to Box Button */
.cta-button {
  background-color: #7e4ccf;
  color: white;
  border: none;
  padding: 12px 20px;
  font-size: 1rem;
  font-weight: bold;
  font-family: 'Quicksand', sans-serif;
  border-radius: 12px;
  cursor: pointer;
  margin-top: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
  background-color: #6a3bb3;
  transform: scale(1.03);
}

/* Collapsible Preview Box */
.preview-box {
  display: none;
  max-width: 500px;
  margin: 1em auto;
  padding: 1em;
  border: 2px dashed #a678b4;
  background-color: #f9f0ff;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  color: #4b2e83;
}

blockquote {
  font-style: italic;
  color: #000000; /* black text for quotes */
  border-left: 4px solid #45cbdd; /* azure-blue accent */
  padding-left: 10px;
}

.product-image {
	width: 300px;
	height: auto;
	display: block;
	margin-bottom: 10px;
	border-radius: 8px;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.product-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
	padding: 20px;
}

.product {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	background-color: #fff;
	padding: 15px;
	border-radius: 10px;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
	max-width: 500px;
	margin: 0 auto 40px auto;
}

.product h2 {
	font-family: 'Quicksand', 'Open Sans', sans-serif;
}

@media (max-width: 700px) {
	.product-grid {
		grid-template-columns: 1fr;
	}
}

.scripture-scroll {
	font-style: italic;
	font-family: 'Georgia', serif;
	background-color: white;
	padding: 10px;
	margin-bottom: 10px;
	font-family: 'Quicksand', 'Open Sans', sans-serif;
}

.seasonal-blessing {
	font-size: 1rem;
	color: #555;
	margin-bottom: 20px;
	font-family: 'Quicksand', 'Open Sans', sans-serif;
}

.home-background {
  background-image: url('images/logo-new.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: scroll; /* safer than fixed */
  min-height: calc(100vh - 160px);
  padding: 40px;
  position: relative;
  z-index: 0; /* IMPORTANT */
}

@media (max-width: 600px) {
  .home-background {
    background-size: contain;
    padding: 20px;
  }
}

.home-background::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(255, 255, 255, 0.6);
  z-index: -1;
}

.cart-popup {
  position: fixed;
  top: 100px;
  right: 40px;
  width: 300px;
  background-color: #fff8e1;
  border: 4px dashed #f7c59f;
  padding: 20px;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.1);
  z-index: 1000;
  font-family: 'Quicksand', 'Open Sans', sans-serif;
  color: #5c4a1d;
  border-radius: 12px;
}

.cart-popup h2 {
	margin-top: 0;
	font-size: 20px;
	color: #6b4f2c;
}

.cart-popup button {
	margin-top: 10px;
	padding: 8px 12px;
	background-color: #c2a76d;
	color: white;
	border: none;
	border-radius: 6px;
	cursor: pointer;
}

.cart-popup button:hover {
	background-color: #b2e6b2;
}

#cart {
	background-color: #f5fff5;
	border-left: 4px solid #a4d4a4;
	padding: 20px;
	margin: 20px;
	font-family: 'Georgia', serif;
}

.calendar-tabs h2 {
	font-size: 28px;
	color: #2e5d2e;
	margin-bottom: 10px;
}

.calendar-tabs {
  background-color: #f5fff5; /* soft mint background */
  border: 2px solid #a4d4a4; /* medium grass green border */
  padding: 30px;
  margin: 40px auto;
  max-width: 900px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  font-family: 'Georgia', serif;
  color: #2e5d2e; /* deep green text */
  text-align: center;
  background: linear-gradient(to bottom right, #f5fff5, #d8f8d8);
}

.tab-content { 
    display: none; 
}

.tab-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.tab-buttons button {
  background-color: #d8f8d8; /* light grass green */
  border: 2px solid #a4d4a4;
  padding: 12px 24px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 18px;
  color: #2e5d2e;
  font-family: 'Georgia', serif;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.tab-buttons button:hover {
  background-color: #b2e6b2; /* medium green on hover */
  transform: scale(1.05);
}

.tab-content {
  display: none;
  background-color: #ffffff;
  border-radius: 10px;
  padding: 20px;
  margin-top: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  flex-grow: 1;
  overflow-y: auto;
}

.slideshow-container {
  position: relative;
  max-width: 800px;
  margin: 20px auto;
  border: 4px solid #a3c9a8;
  border-radius: 12px;
  overflow: hidden;
}

.slide {
  display: none;
}

.slide-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.caption {
  position: absolute;
  bottom: 12px;
  left: 20px;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 10px 20px;
  font-size: 1.2em;
  border-radius: 8px;
  font-family: 'Quicksand', sans-serif;
}

.fade {
  animation: fadeEffect 1.5s ease-in-out;
}

@keyframes fadeEffect {
  from {opacity: 0;}
  to {opacity: 1;}
}

.slide:first-child {
	display: block;
}

.accordion-header {
  background-color: #a78bfa; /* soft lavender */
  border: 2px solid #7c3aed; /* deep violet */
  color: #ffffff;
  padding: 12px;
  font-size: 1.2em;
  cursor: pointer;
  text-align: left;
  width: 100%;
  border-radius: 8px;
  font-family: 'Quicksand', sans-serif;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.accordion-header:hover {
  background-color: #7c3aed; /* deeper purple on hover */
  transform: scale(1.02);
}

.accordion-header:focus {
  outline: 3px solid #c4b5fd; /* accessibility ring */
}

.accordion-panel {
  display: none;
  padding: 10px 20px;
  border-left: 4px solid #f7c59f;
  background-color: #fff;
  margin-bottom: 10px;
  border-radius: 0 0 8px 8px;
}

html, body {
  height: 100%;
}

.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

footer {
  margin-top: auto;
  border-top: 4px dashed #007fff;
  padding-top: 20px;
}

.tab-area {
  flex-grow: 1;
}

.scroll-cookie-selector h2 {
  font-size: 1.5rem;
  color: #a0522d;
  margin-bottom: 0.5rem;
  font-family: 'Georgia', serif;
}

.product {
  width: 300px;
  background-color: #fffef9;
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  text-align: center;
}

.scroll-cookie-selector {
  margin-bottom: 1rem;
}

.flavor-buttons {
  margin-bottom: 1rem;
}

.scroll-cookie-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: opacity 0.4s ease;
}

.product-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.scroll-cookie-button {
  background-color: #a78bfa; /* soft lavender */
  color: #fff;
  border: 2px solid #7c3aed; /* deep violet */
  padding: 10px 20px;
  font-family: 'Quicksand', sans-serif;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  margin: 8px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.scroll-cookie-button:hover {
  background-color: #7c3aed; /* deeper purple on hover */
  transform: scale(1.05);
}

.scroll-cookie-button:focus {
  outline: 3px solid #c4b5fd; /* accessibility ring */
}

.flavor-buttons .scroll-cookie-button {
  background-color: #a78bfa; /* soft lavender */
  color: #fff;
  border: 2px solid #7c3aed; /* deep violet */
  padding: 10px 20px;
  font-family: 'Quicksand', sans-serif;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  margin: 8px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.flavor-buttons .scroll-cookie-button:hover {
  background-color: #7c3aed;
  transform: scale(1.05);
}

.flavor-buttons .scroll-cookie-button:focus {
  outline: 3px solid #c4b5fd;
}

select[name="adaptation-choice"] {
  font-family: 'Quicksand', sans-serif;
  padding: 8px;
  border-radius: 6px;
  border: 2px solid #8c52ff;
  background-color: #f3e8ff;
  color: #4a2c1a;
  margin-top: 10px;
}

.treat-image {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  margin: 20px auto;
  display: block;
}

.review-form {
  max-width: 600px;
  margin: 40px auto;
  padding: 20px;
  background-color: #f5fff5; /* soft mint background */
  border: 2px solid #a4d4a4; /* medium grass green border */
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  font-family: 'Quicksand', sans-serif;
  color: #2e5d2e; /* deep green text */
}

.review-form h2 {
  text-align: center;
  color: #2e5d2e;
}

.review-form label {
  display: block;
  margin-top: 15px;
  font-weight: bold;
  color: #2e5d2e;
}

.review-form input,
.review-form textarea,
.review-form select {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border-radius: 6px;
  border: 2px solid #a4d4a4;
  background-color: #e6f9e6; /* pale green input background */
  color: #2e5d2e;
}

.review-form button {
  margin-top: 20px;
  background-color: #4caf50; /* vibrant green */
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.review-form button:hover {
  background-color: #388e3c; /* deeper green on hover */
}

#cupcakes {
  background-image: url('images/cupcake-background.jpeg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

#cupcakes h2 {
  color: #ff69b4; /* playful pink */
}

#cupcakes .cta-button {
  background-color: #ff69b4;
  border: 2px solid #d63384;
}

.scroll-style-blessing {
  background-color: transparent;
  font-size: 1.4rem;
  font-weight: bold;
  color: #000000; /* playful pink */
  margin-bottom: 20px;
  font-family: 'Quicksand', sans-serif;
  padding: 0;
  box-shadow: none;
  border: none;
}

.scroll-style-blessing::before {
  content: "📜 ";
  font-size: 1.4rem;
}

.product-image {
  width: 300px;
  height: auto;
  display: block;
  margin-bottom: 10px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.accordion-panel img {
  opacity: 0;
  transition: opacity 0.5s ease;
}

.accordion-panel[style*="block"] img {
  opacity: 1;
}

.seasonal-subbuttons {
  margin: 20px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.seasonal-subbuttons button {
  padding: 8px 14px;
  background: #ffe6f2;
  border: 1px solid #f7b8d7;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  transition: 0.2s ease;
}

.seasonal-subbuttons button:hover {
  background: #ffd3e8;
}

/* CART DRAWER */
.cart-drawer {
    position: fixed;
    top: 0;
    right: -400px;
    width: 350px;
    height: 100%;
    background: #fff8f0;
    box-shadow: -4px 0 10px rgba(0,0,0,0.2);
    padding: 20px;
    transition: right 0.3s ease;
    z-index: 9999;
}

.cart-drawer.open {
    right: 0;
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    display: none;
    z-index: 9998;
}

.cart-overlay.show {
    display: block;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close-cart {
    background: none;
    border: none;
    font-size: 1.4rem;
    cursor: pointer;
}

.cart-items {
    margin-top: 20px;
    max-height: 70%;
    overflow-y: auto;
}

.cart-footer {
    position: absolute;
    bottom: 20px;
    width: 90%;
}

.cart-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.cart-thumb {
    width: 60px;
    height: 60px;
    margin-right: 10px;
    border-radius: 8px;
}

.checkout-button {
    display: block;
    background: #d4a373;
    color: white;
    padding: 12px;
    text-align: center;
    border-radius: 6px;
    margin-top: 20px;
    text-decoration: none;
}

/* SLIDESHOW ARROWS */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 12px;
    margin-top: -22px;
    color: #fff;
    font-weight: bold;
    font-size: 22px;
    transition: 0.3s;
    border-radius: 0 3px 3px 0;
    z-index: 10;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.3);
}

/* SLIDESHOW DOTS */
.dots-container {
    text-align: center;
    margin-top: 10px;
}

.dot {
    cursor: pointer;
    height: 14px;
    width: 14px;
    margin: 0 4px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.active-dot {
    background-color: #717171;
}

/* -----------------------------------------
   CONTACT + PRAYER PAGE POLISH
   Palette: Pink + Mint + Lavender
------------------------------------------*/

.contact-container,
.prayer-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 30px;
    background-color: #fffefc; /* soft cream */
    border-radius: 14px;
    border: 3px solid #ffe6f2; /* soft pink */
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.contact-container h1,
.prayer-container h1 {
    font-family: Georgia, serif;
    color: #5c3d2e;
    margin-bottom: 15px;
}

.contact-container p,
.prayer-container p {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #5c3d2e;
    margin-bottom: 20px;
}

/* Form Styling */
.contact-form input,
.contact-form textarea,
.prayer-form input,
.prayer-form textarea {
    width: 100%;
    padding: 12px;
    margin-top: 6px;
    margin-bottom: 20px;
    border-radius: 10px;
    border: 2px solid #ffd3e8; /* warm pink */
    background-color: #f3e8ff; /* lavender */
    font-family: 'Quicksand', sans-serif;
    color: #4b2e83;
}

.contact-form label,
.prayer-form label {
    font-weight: bold;
    color: #7c3aed; /* lavender */
}

/* Scripture Box */
.prayer-scripture {
    margin-top: 30px;
    padding: 20px;
    background-color: #ffe6f2;
    border-left: 6px solid #ffd3e8;
    border-radius: 10px;
    font-family: Georgia, serif;
    font-style: italic;
    color: #5c3d2e;
    text-align: center;
}

/* MOBILE POLISH */
@media (max-width: 600px) {
    header h1 {
        font-size: 1.6rem;
    }

    nav ul {
        flex-direction: column;
        gap: 10px;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .plan-card {
        width: 90%;
    }

    .about-container,
    .contact-container,
    .prayer-container,
    .subscription-container {
        padding: 20px;
    }
}

/* Seasonal Rotating Blessing Widget */
.seasonal-rotating-widget {
    background-color: #ffe6f2;
    border-left: 6px solid #ffd3e8;
    padding: 25px;
    border-radius: 12px;
    margin: 40px auto;
    max-width: 900px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: center;
    font-family: Georgia, serif;
    color: #5c3d2e;
}

.seasonal-rotating-widget h2 {
    margin-bottom: 15px;
    color: #5c3d2e;
}

.seasonal-rotating-widget p {
    font-size: 1.2rem;
    font-style: italic;
    transition: opacity 0.6s ease;
}

/* Rotating Scripture/Blessing Widget */
.rotating-blessing-widget {
    background-color: #ffe6f2;
    border-left: 6px solid #ffd3e8;
    padding: 25px;
    border-radius: 12px;
    margin: 40px auto;
    max-width: 900px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: center;
    font-family: Georgia, serif;
    color: #5c3d2e;
}

.rotating-blessing-widget h2 {
    margin-bottom: 15px;
    color: #5c3d2e;
}

.rotating-blessing-widget p {
    font-size: 1.2rem;
    font-style: italic;
    transition: opacity 0.6s ease;
}

.seasonal-subbuttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin: 20px auto;
}

.seasonal-subbuttons button {
    padding: 10px 18px;
    border-radius: 8px;
    background-color: #ffe6f2;
    border: 2px solid #ffd3e8;
    color: #5c3d2e;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

.seasonal-subbuttons button:hover {
    background-color: #ffd3e8;
}

.spring-banner {
    background: linear-gradient(135deg, #ffe6f2, #e8fff4, #f3e8ff);
    padding: 18px 20px;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 600;
    color: #5c3d2e;
    border-radius: 12px;
    margin: 20px auto 30px;
    max-width: 900px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    font-family: Georgia, serif;
}

.spring-banner-scripture {
    margin-top: 10px;
    font-size: 1rem;
    font-style: italic;
    color: #7a5c4a;
    opacity: 0.9;
}

.mothersday-banner {
    background: linear-gradient(135deg, #ffe6f2, #fff0f7, #fde8ff);
    padding: 18px 20px;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 600;
    color: #5c3d2e;
    border-radius: 12px;
    margin: 20px auto 30px;
    max-width: 900px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    font-family: Georgia, serif;
}

.mothersday-banner-scripture {
    margin-top: 10px;
    font-size: 1rem;
    font-style: italic;
    color: #7a5c4a;
    opacity: 0.9;
}

.giftshop-banner {
    background: linear-gradient(135deg, #fff7e6, #fef3ff, #e8fff4);
    padding: 18px 20px;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 600;
    color: #5c3d2e;
    border-radius: 12px;
    margin: 20px auto 30px;
    max-width: 900px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    font-family: Georgia, serif;
}

.giftshop-banner-scripture {
    margin-top: 10px;
    font-size: 1rem;
    font-style: italic;
    color: #7a5c4a;
    opacity: 0.9;
}

.cookies-banner {
    background: linear-gradient(135deg, #fff2e6, #ffe6f2, #fff8e8);
    padding: 18px 20px;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 600;
    color: #5c3d2e;
    border-radius: 12px;
    margin: 20px auto 30px;
    max-width: 900px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    font-family: Georgia, serif;
}

.cookies-banner-scripture {
    margin-top: 10px;
    font-size: 1rem;
    font-style: italic;
    color: #7a5c4a;
    opacity: 0.9;
}

.bars-banner {
    background: linear-gradient(135deg, #ffeede, #fff4e6, #fde8ff);
    padding: 18px 20px;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 600;
    color: #5c3d2e;
    border-radius: 12px;
    margin: 20px auto 30px;
    max-width: 900px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    font-family: Georgia, serif;
}

.bars-banner-scripture {
    margin-top: 10px;
    font-size: 1rem;
    font-style: italic;
    color: #7a5c4a;
    opacity: 0.9;
}

.blends-banner {
    background: linear-gradient(135deg, #e8fff4, #f3e8ff, #fff7e6);
    padding: 18px 20px;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 600;
    color: #5c3d2e;
    border-radius: 12px;
    margin: 20px auto 30px;
    max-width: 900px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    font-family: Georgia, serif;
}

.blends-banner-scripture {
    margin-top: 10px;
    font-size: 1rem;
    font-style: italic;
    color: #7a5c4a;
    opacity: 0.9;
}

.mini-loaf-banner {
    background: linear-gradient(135deg, #fff8e8, #ffe6f2, #e8fff4);
    padding: 18px 20px;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 600;
    color: #5c3d2e;
    border-radius: 12px;
    margin: 20px auto 30px;
    max-width: 900px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    font-family: Georgia, serif;
}

.mini-loaf-banner-scripture {
    margin-top: 10px;
    font-size: 1rem;
    font-style: italic;
    color: #7a5c4a;
    opacity: 0.9;
}

.bread-banner {
    background: linear-gradient(135deg, #fff8e8, #ffe6f2, #e8fff4);
    padding: 18px 20px;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 600;
    color: #5c3d2e;
    border-radius: 12px;
    margin: 20px auto 30px;
    max-width: 900px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    font-family: Georgia, serif;
}

.bread-banner-scripture {
    margin-top: 10px;
    font-size: 1rem;
    font-style: italic;
    color: #7a5c4a;
    opacity: 0.9;
}

.cupcakes-banner {
    background: linear-gradient(135deg, #ffe6f2, #fff0f7, #fde8ff);
    padding: 18px 20px;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 600;
    color: #5c3d2e;
    border-radius: 12px;
    margin: 20px auto 30px;
    max-width: 900px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    font-family: Georgia, serif;
}

.cupcakes-banner-scripture {
    margin-top: 10px;
    font-size: 1rem;
    font-style: italic;
    color: #7a5c4a;
    opacity: 0.9;
}

.jars-banner {
    background: linear-gradient(135deg, #fff7e6, #e8fff4, #f3e8ff);
    padding: 18px 20px;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 600;
    color: #5c3d2e;
    border-radius: 12px;
    margin: 20px auto 30px;
    max-width: 900px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    font-family: Georgia, serif;
}

.jars-banner-scripture {
    margin-top: 10px;
    font-size: 1rem;
    font-style: italic;
    color: #7a5c4a;
    opacity: 0.9;
}

.summer-banner {
    background: linear-gradient(135deg, #fff7d6, #e8fff4, #fff0e6);
    padding: 18px 20px;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 600;
    color: #5c3d2e;
    border-radius: 12px;
    margin: 20px auto 30px;
    max-width: 900px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    font-family: Georgia, serif;
}
.summer-banner-scripture {
    margin-top: 10px;
    font-size: 1rem;
    font-style: italic;
    color: #7a5c4a;
    opacity: 0.9;
}

.autumn-banner {
    background: linear-gradient(135deg, #ffe8d6, #fff4e6, #fde8ff);
    padding: 18px 20px;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 600;
    color: #5c3d2e;
    border-radius: 12px;
    margin: 20px auto 30px;
    max-width: 900px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    font-family: Georgia, serif;
}
.autumn-banner-scripture {
    margin-top: 10px;
    font-size: 1rem;
    font-style: italic;
    color: #7a5c4a;
    opacity: 0.9;
}

.winter-banner {
    background: linear-gradient(135deg, #e8f4ff, #f3e8ff, #fff7e6);
    padding: 18px 20px;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 600;
    color: #5c3d2e;
    border-radius: 12px;
    margin: 20px auto 30px;
    max-width: 900px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    font-family: Georgia, serif;
}
.winter-banner-scripture {
    margin-top: 10px;
    font-size: 1rem;
    font-style: italic;
    color: #7a5c4a;
    opacity: 0.9;
}

.valentines-banner {
    background: linear-gradient(135deg, #ffe6f2, #ffd6e8, #fff0f7);
    padding: 18px 20px;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 600;
    color: #5c3d2e;
    border-radius: 12px;
    margin: 20px auto 30px;
    max-width: 900px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    font-family: Georgia, serif;
}
.valentines-banner-scripture {
    margin-top: 10px;
    font-size: 1rem;
    font-style: italic;
    color: #7a5c4a;
    opacity: 0.9;
}

.easter-banner {
    background: linear-gradient(135deg, #e8fff4, #fff7e6, #f3e8ff);
    padding: 18px 20px;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 600;
    color: #5c3d2e;
    border-radius: 12px;
    margin: 20px auto 30px;
    max-width: 900px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    font-family: Georgia, serif;
}
.easter-banner-scripture {
    margin-top: 10px;
    font-size: 1rem;
    font-style: italic;
    color: #7a5c4a;
    opacity: 0.9;
}

.fathersday-banner {
    background: linear-gradient(135deg, #e8f4ff, #fff7e6, #e8fff4);
    padding: 18px 20px;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 600;
    color: #5c3d2e;
    border-radius: 12px;
    margin: 20px auto 30px;
    max-width: 900px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    font-family: Georgia, serif;
}
.fathersday-banner-scripture {
    margin-top: 10px;
    font-size: 1rem;
    font-style: italic;
    color: #7a5c4a;
    opacity: 0.9;
}

.grandparents-banner {
    background: linear-gradient(135deg, #fff0f7, #ffe6f2, #fff8e8);
    padding: 18px 20px;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 600;
    color: #5c3d2e;
    border-radius: 12px;
    margin: 20px auto 30px;
    max-width: 900px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    font-family: Georgia, serif;
}
.grandparents-banner-scripture {
    margin-top: 10px;
    font-size: 1rem;
    font-style: italic;
    color: #7a5c4a;
    opacity: 0.9;
}

.veterans-banner {
    background: linear-gradient(135deg, #e8f4ff, #fff7e6, #ffe6f2);
    padding: 18px 20px;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 600;
    color: #5c3d2e;
    border-radius: 12px;
    margin: 20px auto 30px;
    max-width: 900px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    font-family: Georgia, serif;
}
.veterans-banner-scripture {
    margin-top: 10px;
    font-size: 1rem;
    font-style: italic;
    color: #7a5c4a;
    opacity: 0.9;
}

.christmas-banner {
    background: linear-gradient(135deg, #f3e8ff, #e8f4ff, #fff7e6);
    padding: 18px 20px;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 600;
    color: #5c3d2e;
    border-radius: 12px;
    margin: 20px auto 30px;
    max-width: 900px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    font-family: Georgia, serif;
}
.christmas-banner-scripture {
    margin-top: 10px;
    font-size: 1rem;
    font-style: italic;
    color: #7a5c4a;
    opacity: 0.9;
}

.hero {
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(135, 206, 250, 0.15); /* adjust 0.35 for more/less darkness */
    z-index: 1;
}

.hero * {
    position: relative;
    z-index: 2;
}

.product-contents {
  list-style-type: none; /* Removes the bullets */
  padding-left: 0;       /* Removes default browser indentation */
  margin-left: 0;        /* Ensures no extra outer spacing */
  text-align: left;      /* Forces left alignment */
}

/* Hide delivery fee row until ZIP is entered */
#delivery-fee-row {
    display: none;
}