body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f9f9f9;
}

.navbar {
    background: #23272f;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    padding: 0;
}
.nav-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.7em 2em;
}
.logo {
    font-size: 1.7em;
    font-weight: bold;
    color: #ff9800;
    letter-spacing: 2px;
    user-select: none;
}
.nav-links {
    list-style: none;
    display: flex;
    gap: 2em;
    margin: 0;
    padding: 0;
}
.nav-links li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 500;
    transition: color 0.2s;
    padding: 0.3em 0.7em;
    border-radius: 4px;
}
.nav-links li a:hover, .nav-links li a.active {
    color: #ff9800;
    background: #fff3e0;
}

main {
    max-width: 900px;
    margin: 2em auto;
    padding: 1em;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}
.products {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2em;
    margin-top: 2em;
}
.product {
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 1em;
    width: 180px;
    text-align: center;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
    transition: box-shadow 0.2s;
}
.product:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
}
.product img {
    width: 100%;
    border-radius: 4px;
}
.product h2 {
    font-size: 1.1em;
    margin: 0.5em 0 0.2em 0;
}
.product p {
    color: #ff9800;
    font-weight: bold;
    margin: 0;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1em;
    max-width: 400px;
    margin: 2em auto 0 auto;
}
.contact-form label {
    font-weight: bold;
}
.contact-form input,
.contact-form textarea {
    padding: 0.5em;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1em;
}
.contact-form button {
    background: #ff9800;
    color: #fff;
    border: none;
    padding: 0.7em;
    border-radius: 4px;
    font-size: 1em;
    cursor: pointer;
    transition: background 0.2s;
}
.contact-form button:hover {
    background: #e68900;
}
.product .rating {
    color: #ffb400;
    font-size: 1.1em;
    margin-bottom: 0.3em;
}
.product .desc {
    color: #666;
    font-size: 0.97em;
    margin-bottom: 0.5em;
    min-height: 2.2em;
}
.product .price {
    color: #ff9800;
    font-weight: bold;
    margin: 0.2em 0 0.7em 0;
    font-size: 1.1em;
}
.add-to-cart {
    background: #23272f;
    color: #fff;
    border: none;
    padding: 0.6em 1.2em;
    border-radius: 4px;
    font-size: 1em;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.add-to-cart:hover {
    background: #ff9800;
    color: #23272f;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}
.home-contact {
    background: #fff3e0;
    margin: 2em auto 0 auto;
    padding: 2em 1em;
    border-radius: 8px;
    max-width: 700px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    text-align: center;
}
.home-contact h2 {
    color: #ff9800;
    margin-bottom: 1em;
}
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1em;
    align-items: center;
}
.contact-item {
    font-size: 1.1em;
    color: #23272f;
}
.contact-item a {
    color: #ff9800;
    text-decoration: none;
    transition: text-decoration 0.2s;
}
.contact-item a:hover {
    text-decoration: underline;
}
.hero {
    background: linear-gradient(90deg, #ff9800 0%, #ffb347 100%);
    color: #fff;
    padding: 3em 1em 2.5em 1em;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    margin-bottom: 2em;
    text-align: center;
}
.hero-content {
    max-width: 600px;
    margin: 0 auto;
}
.hero h1 {
    font-size: 2.5em;
    margin-bottom: 0.5em;
    font-weight: bold;
    letter-spacing: 1px;
}
.hero p {
    font-size: 1.2em;
    margin-bottom: 1.5em;
}
.hero-btn {
    background: #23272f;
    color: #fff;
    padding: 0.9em 2.2em;
    border-radius: 4px;
    font-size: 1.1em;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.2s, color 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    display: inline-block;
}
.hero-btn:hover {
    background: #fff;
    color: #ff9800;
}
.contact-info-section {
    background: #fff3e0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    padding: 2em 1em 1em 1em;
    max-width: 500px;
    margin: 2em auto 1.5em auto;
    text-align: center;
}
.contact-info-section h1 {
    color: #ff9800;
    margin-bottom: 1em;
}
.contact-form-section {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    padding: 2em 1.5em;
    max-width: 500px;
    margin: 0 auto 2em auto;
}
.shop-filter-bar {
    display: flex;
    align-items: center;
    gap: 1em;
    margin: 2em 0 1em 0;
    padding: 1em 1.5em;
    background: #fff3e0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.shop-filter-bar label {
    font-weight: bold;
    color: #23272f;
}
.shop-filter-bar select {
    padding: 0.5em 1em;
    border-radius: 4px;
    border: 1px solid #ccc;
    font-size: 1em;
}