:root {
    --accent: #e91e63;
    --accent-2: #c2185b;
    --muted: #444444;
    --bg: #fff8e1;
    --card: #ffffff;
    --radius: 14px;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

* {
    box-sizing: border-box
}

body {
    margin: 0;
    background: var(--bg);
    color: #1a1a1a;
    line-height: 1.45
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 28px
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    color: #fff;
    border-radius: var(--radius);
    margin-bottom: 18px;
}

.brand {
    display: flex;
    gap: 12px;
    align-items: center
}

.logo {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 20px
}

nav a {
    margin-left: 18px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

nav a:hover {
    color: #ffe082;
}

.hero {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 28px;
    align-items: center;
    margin-top: 18px;
    background: linear-gradient(90deg, #fff, #fce4ec 80%);
    border-radius: var(--radius);
    padding: 24px 18px;
}

.hero-card {
    background: var(--card);
    padding: 26px;
    border-radius: var(--radius);
    box-shadow: 0 6px 24px rgba(12, 20, 40, 0.08)
}

h1 {
    margin: 0;
    font-size: 30px;
    color: var(--accent-2)
}

p.lead {
    color: var(--muted);
    margin-top: 12px
}

.cta {
    margin-top: 18px;
    display: flex;
    gap: 12px
}

.btn {
    padding: 12px 18px;
    border-radius: 10px;
    border: 0;
    cursor: pointer;
    font-weight: 600
}

.btn-primary {
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    color: white
}

.btn-primary:hover {
    background: linear-gradient(90deg, var(--accent-2), var(--accent));
}

.btn-ghost {
    background: transparent;
    border: 2px solid rgba(233, 30, 99, 0.2);
    color: var(--accent)
}

.btn-ghost:hover {
    background: #fce4ec;
}

.stats {
    display: flex;
    gap: 12px;
    margin-top: 18px
}

.stat {
    background: #fff;
    padding: 12px;
    border-radius: 12px;
    flex: 1;
    text-align: center;
    border: 1px solid #f8bbd0
}

.stat strong {
    display: block;
    font-size: 18px;
    color: var(--accent-2)
}

/* Add background to products section */
#products {
    background: #fff3e0;
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 18px;
}

/* Add background to gallery section */
#gallery {
    background: #fce4ec;
    border-radius: var(--radius);
    padding: 16px 10px;
    margin-top: 18px;
}

/* Add background to contact card */
.contact-card {
    background: linear-gradient(135deg, #fff, #fce4ec 80%);
    padding: 18px;
    border-radius: 12px;
    border: 1px solid #f8bbd0
}

.filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 18px 0
}

.chip {
    padding: 8px 12px;
    background: #fff;
    border-radius: 999px;
    border: 1px solid #f8bbd0;
    cursor: pointer;
    color: var(--accent-2);
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
}

.chip.active {
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    color: #fff;
    border: 0
}

.chip:hover:not(.active) {
    background: #fce4ec;
    color: var(--accent);
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px
}

.card {
    background: var(--card);
    padding: 14px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(11, 20, 40, 0.06);
    display: flex;
    gap: 12px;
    border: 1px solid #f8bbd0
}

.thumb {
    width: 110px;
    height: 110px;
    border-radius: 10px;
    background: #fce4ec;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--accent-2)
}

.card h4 {
    margin: 0;
    color: var(--accent-2)
}

.price {
    color: var(--accent);
    font-weight: 700;
    margin-top: 8px
}

/* about & contact */
.two-col {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 18px;
    margin-top: 22px
}

input,
textarea,
select {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #f8bbd0;
    margin-top: 8px
}

input:focus,
textarea:focus,
select:focus {
    outline: 2px solid var(--accent);
    border-color: var(--accent-2);
}

/* Add background to footer */
footer {
    margin-top: 36px;
    padding: 24px 0;
    color: var(--muted);
    text-align: center;
    border-top: 1px solid #f8bbd0;
    background: #fff3e0;
    border-radius: var(--radius);
}

/* responsive */
@media (max-width:980px) {
    .hero {
        grid-template-columns: 1fr
    }

    .two-col {
        grid-template-columns: 1fr
    }

    .grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width:600px) {
    .grid {
        grid-template-columns: 1fr
    }

    nav {
        display: none
    }
    .container {
        padding: 10px;
    }
    header {
        padding: 16px 8px;
    }
    .hero {
        padding: 10px 0;
    }
    #products {
        padding: 10px 0 8px 0;
    }
    footer {
        padding: 12px 0;
    }
}

/* modal */
.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(26, 26, 26, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px
}

.modal {
    background: #fff;
    padding: 18px;
    border-radius: 12px;
    max-width: 680px;
    width: 100%;
    border: 2px solid #f8bbd0
}