body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f5f5f5;
}

.header {
    background: #2c3e50;
    color: white;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.header .logo img {
    height: 50px;
}

.header .search-bar {
    flex-grow: 1;
    margin: 0 20px;
}

.header .search-bar input {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
}

.header .cart {
    position: relative;
}

.header .cart img {
    height: 30px;
}

.header .cart .count {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 12px;
}

.header .menu a {
    color: white;
    margin-left: 20px;
    text-decoration: none;
    font-size: 16px;
}

.header .menu a:hover {
    text-decoration: underline;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: #2c3e50;
    min-width: 160px;
    z-index: 1;
    border-radius: 4px;
}

.dropdown-content a {
    display: block;
    padding: 10px;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.content {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.banner {
    margin-bottom: 30px;
}

.banner img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.section {
    margin-bottom: 40px;
}

.section h2 {
    border-bottom: 2px solid #2c3e50;
    padding-bottom: 10px;
    font-size: 24px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.product {
    background: white;
    border: 1px solid #ddd;
    padding: 15px;
    text-align: center;
    border-radius: 8px;
    transition: transform 0.2s;
}

.product:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.product img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

.product h3 {
    font-size: 18px;
    margin: 10px 0;
}

.product p {
    margin: 5px 0;
    color: #555;
}

.images {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin: 20px 0;
}

.images img {
    max-width: 200px;
    height: auto;
    border-radius: 4px;
}

.variants, .ratings {
    margin: 20px 0;
}

.comment {
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
}

.comment p {
    margin: 5px 0;
}