:root {
    --electric-orange: #FF6B2B;
    --deep-teal: #006B5F;
    --vibrant-navy: #003366;
    --peach-bg: #FFE8C3;
    --link-blue: #0969da;
}
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
    margin: 0; padding: 0;
    background-color: var(--peach-bg);
    color: #1f2328;
    line-height: 1.5;
}
header {
    background-color: var(--electric-orange);
    color: var(--vibrant-navy);
    text-align: center;
    padding: 48px 24px;
}
header h1 {
    margin: 0;
    font-size: 2.8rem;
    font-weight: 600;
    font-family: 'Caveat', cursive;
    color: var(--vibrant-navy);
}
.tagline {
    font-size: 1.1rem;
    margin-top: 12px;
    font-weight: 500;
    max-width: 800px;
    margin: 0 auto;
}
nav {
    background-color: var(--deep-teal);
    padding: 12px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    position: sticky; top: 0; z-index: 1000;
}
nav a { color: white; text-decoration: none; font-weight: 500; }
/* --- LAYOUT CONTROLS --- */
.main-container {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    padding: 32px 16px;
    max-width: 1600px;
    margin: 0 auto;
    justify-content: center;
}
.card {
    background: #ffffff;
    border: 1px solid #d0d7de;
    border-radius: 12px;
    padding: 24px;
    flex: 1 1 400px;
    max-width: 500px;
    min-width: 0;
    display: flex;
    flex-direction: column;
    box-shadow: 0 1px 3px rgba(31,35,40,0.12);
}
h2 { color: var(--electric-orange); font-size: 1.6rem; margin-top: 0; border-bottom: 1px solid #d0d7de; padding-bottom: 8px; }
/* --- PRODUCT IMAGE & HIGHLIGHT STYLES --- */
.hero-box {
    background: #f6f8fa;
    padding: 16px;
    border-radius: 8px;
    border-left: 4px solid var(--electric-orange);
    display: flex;
    align-items: center;
    gap: 16px;
}
.product-img {
    width: 110px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border: 1px solid #ddd;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    background: white;
}
.product-img:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
.cartoon-area {
    background: #f6f8fa;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    margin: 20px 0;
    border: 2px dashed var(--deep-teal);
}
.cartoon-area img { max-width: 100%; height: auto; border-radius: 12px; }
.button {
    display: inline-block;
    background-color: #f6f8fa;
    border: 1px solid #d0d7de;
    color: var(--link-blue);
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    margin-top: auto;
    align-self: flex-start;
}
footer { background: #004D40; color: white; text-align: center; padding: 24px; margin-top: 40px; }
/* Mobile Adjustments */
@media (max-width: 480px) {
    header h1 { font-size: 2.2rem; }
    .card { padding: 16px; }
    .hero-box { flex-direction: column; text-align: center; } /* Image moves below text on phones */
}
/* Handwritten Quote Styles */
header .tagline > div[style*="font-style: italic"] {
    font-family: 'Caveat', cursive;
    font-weight: 600;
    font-size: 1rem;
    margin-top: 24px;
    opacity: 0.9;
}
header .tagline > div[style*="font-size: 0.9rem"] {
    font-family: 'Caveat', cursive;
    font-size: 0.95rem;
}
footer p:first-of-type {
    font-family: 'Caveat', cursive;
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: 20px;
    opacity: 0.95;
}
