* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background-color: #200692;
    color: #f70505;
}

header .logo h1 {
    font-size: 1.8rem;
}

header nav ul {
    display: flex;
    list-style: none;
}

header nav ul li {
    margin: 0 15px;
}

header nav ul li a {
    text-decoration: none;
    color: #fa0303;
    font-weight: bold;
}

header .cart a {
    font-size: 1.5rem;
}

.hero {
    background: url('https://via.placeholder.com/1600x600') no-repeat center center/cover;
    padding: 100px 30px;
    text-align: center;
    color: #f30404;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.hero .btn {
    background-color: #1b03f8;
    color: rgb(248, 7, 7);
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.hero .btn:hover {
    background-color: #f70707;
}

.products {
    padding: 50px 30px;
    text-align: center;
}

.products h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.product-item {
    background-color: #f50707;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(70, 0, 182, 0.705);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease;
}

.product-item:hover {
    transform: translateY(-10px);
}

.product-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.product-item h3 {
    font-size: 1.2rem;
    margin: 15px 0;
}

.product-item p {
    font-size: 1rem;
    color: #1a0468;
}

.product-item button {
    background-color: #1708e6;
    color: rgb(175, 3, 12);
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.product-item button:hover {
    background-color: #530666;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #2903fd;
    color: #f80909;
    font-size: 0.9rem;
}
