/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #fafafa;
    color: #333;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5%;
    background: white;
}

.logo {
    font-size: 1.5rem;
    letter-spacing: 4px;
    font-weight: bold;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* Product Section */
.product-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 2rem auto;
    background: white;
    padding: 20px;
}

.image-section {
    flex: 1;
    min-width: 400px;
}

.image-section img {
    width: 100%;
    height: auto;
    display: block;
}

.details-section {
    flex: 1;
    min-width: 400px;
    padding: 3rem;
}

.category {
    text-transform: uppercase;
    font-size: 0.7rem;
    color: #888;
    letter-spacing: 2px;
}

h1 {
    font-size: 2.5rem;
    margin: 1rem 0;
    font-weight: 400;
}

.price {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #555;
}

.description {
    line-height: 1.6;
    color: #666;
    margin-bottom: 2rem;
}

/* Form Elements */
.option-group {
    margin-bottom: 2rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    outline: none;
}

.add-to-cart {
    width: 100%;
    padding: 1.2rem;
    background: #1a1a1a;
    color: white;
    border: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: 0.3s;
}

.add-to-cart:hover {
    background: #444;
}

.shipping-info {
    margin-top: 2rem;
    font-size: 0.8rem;
    color: #888;
}

/* Responsive Fix */
@media (max-width: 768px) {
    .details-section {
        padding: 1.5rem;
    }
}