﻿body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #0d0d0d;
    color: #eee;
}

a {
    text-decoration: none;
    color: #ff2e2e;
}

a:hover {
    color: #fff;
}

header {
    background: linear-gradient(90deg, #111, #1b1b1b, #111);
    color: #fff;
    text-align: center;
    padding: 25px 0;
    border-bottom: 2px solid #ff2e2e;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
}

header h1 {
    margin: 0;
    font-size: 28px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ff2e2e;
    text-shadow: 1px 1px 5px #000;
}

nav {
    margin-top: 15px;
}

nav a {
    color: #ccc;
    margin: 0 15px;
    font-weight: bold;
    text-transform: uppercase;
    transition: color 0.3s ease, border-bottom 0.3s;
    padding-bottom: 4px;
}

nav a:hover {
    color: #ff2e2e;
    border-bottom: 2px solid #ff2e2e;
}

.hero {
    text-align: center;
    background: url('https://images.unsplash.com/photo-1502877338535-766e1452684a?auto=format&fit=crop&w=1600&q=80') no-repeat center/cover;
    color: white;
    padding: 120px 20px;
    text-shadow: 1px 1px 8px #000;
}

.hero h1 {
    font-size: 40px;
    margin-bottom: 10px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 20px;
}

.hero button {
    background: #ff2e2e;
    color: #fff;
    border: none;
    padding: 12px 25px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.hero button:hover {
    background: #e60000;
    transform: scale(1.05);
}

.products-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin: 50px auto;
    max-width: 1200px;
}

.card {
    width: 270px;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    overflow: hidden;
    color: #fff;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(255, 46, 46, 0.3);
}

.card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.card-body {
    padding: 15px;
}

.card-body h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #ff2e2e;
}

.card-body p {
    font-size: 15px;
    color: #ccc;
    margin-bottom: 12px;
}

.buy-btn {
    background: #ff2e2e;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 8px 14px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.buy-btn:hover {
    background: #e60000;
}

.about-section {
    padding: 60px 20px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.about-section h2 {
    color: #ff2e2e;
    margin-bottom: 20px;
}

.about-section p {
    line-height: 1.8;
    color: #ccc;
}

.contact-form {
    width: 400px;
    margin: 60px auto;
    background: #1a1a1a;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.contact-form h2 {
    color: #ff2e2e;
    text-align: center;
    margin-bottom: 20px;
}

.contact-form label {
    color: #ccc;
    display: block;
    margin: 10px 0 5px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 4px;
    background: #2a2a2a;
    color: white;
}

.contact-form button {
    margin-top: 15px;
    width: 100%;
    background: #ff2e2e;
    border: none;
    padding: 10px;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    border-radius: 4px;
}

.contact-form button:hover {
    background: #e60000;
}

footer {
    background: #111;
    color: #888;
    text-align: center;
    padding: 15px 0;
    font-size: 14px;
    border-top: 1px solid #222;
    margin-top: 40px;
}
