/* SodaShip Storefront Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Comic Sans MS", "Trebuchet MS", cursive, sans-serif;
    line-height: 1.6;
    color: #3d3150;
    background: linear-gradient(135deg, #ffb3ba, #ffdfba, #ffffba, #baffc9, #bae1ff, #e0bbff);
    min-height: 100vh;
}

header {
    background: #ff7aa8;
    color: #fffdf5;
    padding: 1rem;
    border-bottom: 6px dotted #e0bbff;
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

header h1 {
    font-size: 1.8rem;
    text-shadow: 2px 2px #7b2cbf;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.brand img {
    width: 92px;
    height: auto;
}

.home-page .brand img {
    width: 180px;
}

header ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

header a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
}

header a:hover {
    text-decoration: underline;
}

main {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.hero {
    text-align: center;
    padding: 3rem 1rem;
    background: #ffe4e1;
    border: 4px dashed #a2d2ff;
    border-radius: 18px;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #7b2cbf;
}

h2 {
    color: #7b2cbf;
    margin-bottom: 0.5rem;
}

.button {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    background: #ffb703;
    color: #3d3150;
    border: 3px solid #3d3150;
    border-radius: 12px;
    font-weight: bold;
    text-decoration: none;
}

.note {
    margin-bottom: 1rem;
}

.product-list {
    display: grid;
    gap: 1rem;
}

.product-list section {
    background: #ffffff;
    border: 3px dashed #bae1ff;
    border-radius: 14px;
    padding: 1rem;
}

footer {
    background: #ff7aa8;
    color: #fffdf5;
    text-align: center;
    padding: 1rem;
    margin-top: 2rem;
}

@media (max-width: 600px) {
    header nav {
        flex-direction: column;
        gap: 0.75rem;
    }

    header ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.75rem;
    }
}
