body {
    font-family: 'Comic Neue', cursive;
    background-color: #f9f9f9;
    color: #333;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-image: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" width="300" height="300" viewBox="0 0 300 300"><defs></defs><rect width="300" height="300" fill="%23fafafa"/><g opacity="0.12"><g transform="translate(40,60) rotate(15)"><path fill="%2390EE90" d="M 10 5 Q 5 10 10 15 Q 15 10 20 15 Q 25 10 20 5 Q 15 0 10 5 Z"/><circle cx="15" cy="8" r="2" fill="%23228B22" opacity="0.8"/></g><g transform="translate(120,80) rotate(-30)"><rect width="12" height="8" rx="2" fill="%23e6ffe6" opacity="0.7"/><path d="M 6 2 L 10 6 L 6 10 L 2 6 Z" fill="%23FFD700"/></g><g transform="translate(200,40) rotate(45)"><circle r="4" fill="%23228B22" opacity="0.9"/><path fill="%2398FB98" d="M -8 -2 Q -4 -6 0 -2 Q 4 -6 8 -2 Q 4 2 0 2 Q -4 2 -8 -2 Z" opacity="0.6"/></g><g transform="translate(60,150) rotate(-45)"><path fill="%2390EE90" d="M 0 0 L 8 0 L 8 4 L 0 4 Z"/><circle cx="4" cy="2" r="1" fill="%23228B22"/></g><g transform="translate(180,180) rotate(60)"><path d="M 0 6 L 3 0 L 6 6 Z" fill="%23FFD700"/><rect width="6" height="2" fill="%23e6ffe6" opacity="0.8"/></g><g transform="translate(250,120) rotate(-75)"><circle r="3" fill="%23228B22" opacity="0.7"/></g><g transform="translate(80,220) rotate(30)"><path fill="%2398FB98" d="M 0 4 Q 2 0 4 4 Q 6 0 8 4 Q 4 8 4 4 Q 0 8 0 4 Z" opacity="0.9"/></g><g transform="translate(220,200) rotate(-15)"><rect width="10" height="6" rx="1" fill="%23e6ffe6"/></g><g transform="translate(140,250) rotate(75)"><circle r="2" fill="%23228B22" opacity="0.8"/><path d="M -4 0 L 0 -4 L 4 0 L 0 4 Z" fill="%23FFD700"/></g><g transform="translate(280,180) rotate(-60)"><path fill="%2390EE90" d="M 0 0 Q 4 2 0 4 Q -4 2 0 0 Z"/></g></g><g opacity="0.08"><g transform="translate(20,120) rotate(90)"><circle r="2" fill="%23228B22"/><rect width="6" height="3" fill="%23e6ffe6" opacity="0.6"/></g><g transform="translate(160,30) rotate(-120)"><path fill="%2398FB98" d="M 0 6 L 2 0 L 4 6 Q 2 8 0 6 Z"/></g><g transform="translate(270,250) rotate(45)"><path d="M 0 0 L 5 0 L 5 3 L 0 3 Z" fill="%23FFD700"/></g><g transform="translate(100,280) rotate(-90)"><circle r="3" fill="%23228B22" opacity="0.7"/></g><g transform="translate(240,60) rotate(120)"><rect width="8" height="4" rx="1" fill="%23e6ffe6"/></g></g></svg>'); 
    background-repeat: repeat;
}
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}
section {
    background: white;
    margin: 20px 0;
    padding: 20px;
    border: 8px solid #4CAF50; /* Thick green border for comic feel */
    border-radius: 10px;
    box-shadow: 
        5px 5px 15px rgba(0,0,0,0.15),
        10px 10px 25px rgba(0,0,0,0.08),
        inset -2px -2px 5px rgba(0,0,0,0.03);
    position: relative;
    text-align: center;
}
section::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, #90EE90, #98FB98); /* Cute gradient outer border */
    z-index: -1;
    border-radius: 10px; /* Match inner radius to avoid pointed inner corners */
}
.logo {
    text-align: center;
    margin-bottom: 0px;
}
.logo img {
    max-width: 350px;
    height: auto;
    border-radius: 10px;
}
h1, h2 {
    font-family: 'Indie Flower', cursive;
    color: #228B22;
    text-align: center;
    font-size: 2.5em;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    margin-top: 0;
}
.tilted {
    transform: rotate(-3deg);
    display: inline-block;
    margin: 10px;
}
.tilted:nth-child(even) {
    transform: rotate(2deg);
}
img {
    max-width: 200px;
    height: auto;
    border-radius: 10px;
}
.personal-note {
    font-style: italic;
    font-size: 1.2em;
    text-align: center;
    background: #FFFACD;
    padding: 15px;
    border-left: 5px solid #FFD700;
    margin: 15px 0;
    transform: rotate(-1deg); /* Subtle tilt only for the yellow personal note boxes */
    box-shadow: 
        3px 3px 8px rgba(0,0,0,0.2),
        6px 6px 15px rgba(0,0,0,0.1);
}
ul {
    list-style-type: none;
    padding: 0;
    text-align: left;
    max-width: 400px;
    margin: 0 auto;
}
li {
    background: #E0FFFF;
    margin: 10px 0;
    padding: 10px;
    border: 3px dashed #20B2AA;
    border-radius: 5px;
}
.products-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}
.product-item {
    flex: 1 1 200px;
    text-align: center;
    margin: 10px;
    box-shadow: 
        2px 2px 6px rgba(0,0,0,0.1),
        4px 4px 12px rgba(0,0,0,0.06);
    background: rgba(255,255,255,0.8);
    padding: 10px;
    border-radius: 8px;
}
.product-item img {
    max-width: 150px;
}
.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 30px 0;
}
.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background: #4CAF50;
    color: white;
    text-decoration: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    transition: background 0.3s ease, transform 0.2s ease;
}
.social-links a img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
}
.social-links a:hover {
    background: #45a049;
    transform: scale(1.05);
}
.map-container {
    margin: 25px 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.map-container iframe {
    border-radius: 10px;
}
.map-container img {
    width: 100%;
    max-width: 800px;
    height: auto;
}
.reel-embed {
    text-align: center;
    margin: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.reel-embed .instagram-media {
    margin: 0 auto !important;
}
.reel-embed iframe {
    max-width: 100%;
    width: 600px;
    height: 600px;
    border: none;
}
footer {
    text-align: center;
    margin-top: 30px;
    font-size: 0.9em;
    color: #666;
}
.attribution {
    font-size: 0.8em;
    margin-top: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 10px;
        max-width: 100%;
    }
    section {
        margin: 10px 0;
        padding: 15px;
        border-width: 4px; /* Thinner borders on mobile */
    }
    section::before {
        top: -5px;
        left: -5px;
        right: -5px;
        bottom: -5px;
        border-radius: 5px; /* Adjust for mobile */
    }
    h1 {
        font-size: 2em;
    }
    h2 {
        font-size: 1.8em;
    }
    .personal-note {
        font-size: 1em;
        padding: 10px;
        transform: none; /* Remove tilt on mobile */
    }
    .products-grid {
        flex-direction: column;
        align-items: center;
    }
    .product-item {
        flex: none;
        width: 100%;
        max-width: 300px;
    }
    img {
        max-width: 150px;
    }
    .logo img {
        max-width: 250px;
    }
    .reel-embed iframe {
        width: 100%;
        height: 500px;
    }
    .tilted {
        transform: none; /* Remove image tilt on mobile */
        display: block;
        margin: 10px auto;
    }
    .social-links {
        gap: 20px;
    }
    .social-links a {
        width: 50px;
        height: 50px;
    }
    .social-links a img {
        width: 30px;
        height: 30px;
    }
    .map-container iframe {
        height: 250px;
    }
    .map-container img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8em;
    }
    h2 {
        font-size: 1.5em;
    }
    section {
        padding: 10px;
    }
    .products-grid {
        gap: 10px;
    }
}