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

body {
    font-family: 'Georgia', serif;
    background-color: #fffdf7;
    color: #3a3a3a;
}

header {
    background-color: #e8645a;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    color: #fff;
    font-size: 2.2em;
    letter-spacing: 2px;
}

header p {
    color: #ffe8e7;
    font-size: 1em;
    font-style: italic;
}

nav {
    background-color: #f4a340;
    padding: 12px 40px;
    display: flex;
    gap: 30px;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-size: 1em;
    font-weight: bold;
    letter-spacing: 1px;
}

nav a:hover {
    color: #3a3a3a;
}

.hero {
    background-color: #fde8a0;
    padding: 60px 40px;
    text-align: center;
}

.hero h2 {
    font-size: 2em;
    color: #e8645a;
    margin-bottom: 15px;
}

.hero p {
    font-size: 1.1em;
    max-width: 600px;
    margin: 0 auto 25px;
    line-height: 1.8;
}

.hero a {
    background-color: #e8645a;
    color: #fff;
    padding: 14px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1em;
    font-weight: bold;
}

.hero a:hover {
    background-color: #c94f45;
}

.products {
    padding: 50px 40px;
    text-align: center;
}

.products h2 {
    font-size: 1.8em;
    color: #e8645a;
    margin-bottom: 10px;
}

.products p.subtitle {
    color: #888;
    margin-bottom: 35px;
    font-style: italic;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}

.product-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.2s;
}

.product-card:hover {
    transform: translateY(-4px);
}

.product-card .placeholder-img {
    width: 100%;
    height: 180px;
    background-color: #fde8a0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f4a340;
    font-size: 3em;
    margin-bottom: 15px;
}

.product-card h3 {
    font-size: 1.1em;
    color: #3a3a3a;
    margin-bottom: 8px;
}

.product-card p {
    font-size: 0.9em;
    color: #888;
    margin-bottom: 12px;
    line-height: 1.6;
}

.product-card .price {
    color: #e8645a;
    font-weight: bold;
    font-size: 1.1em;
    margin-bottom: 15px;
}

.product-card a {
    display: inline-block;
    background-color: #f4a340;
    color: #fff;
    padding: 10px 22px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9em;
    font-weight: bold;
}

.product-card a:hover {
    background-color: #d4882a;
}

.about {
    background-color: #e8f5e9;
    padding: 50px 40px;
    text-align: center;
}

.about h2 {
    font-size: 1.8em;
    color: #e8645a;
    margin-bottom: 15px;
}

.about p {
    max-width: 650px;
    margin: 0 auto;
    line-heig
