body {
    font-family: Arial, sans-serif;
    padding: 20px;
    background: #f9f9f9;
    color: #333;
}
.page-layout {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    max-width: 1200px;
    margin: 50px auto 0;
}
.product-wrapper {
    flex: 1;
    min-width: 0;
}
.product {
    max-width: 700px;
    margin: auto;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    padding: 20px;
}
#product-image {
    display: block;
    margin: 1rem auto;
    max-width: 100%;
    border: 1px solid #ccc;
    border-radius: 4px;
}
#variation-controls {
    text-align: center;
    margin-top: 1rem;
}
.variation-button {
    margin: 5px;
    padding: 10px 15px;
    font-size: 14px;
    border: none;
    background: #0073e6;
    color: white;
    border-radius: 4px;
    cursor: pointer;
}
.variation-button:hover {
    background: #005bb5;
}
h1 { 
    margin-bottom: 0.5em; 
}
.price {
    font-size: 1.2em;
    font-weight: bold;
    color: #0073e6;
    margin: 10px 0;
}
.details p { 
    margin: 0.3em 0; 
}
.contact {
    color: #FFAF00;
    font-weight: 500;
}
.center-both {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #bbbbbb;
    width: 50px;
    height: 50px;
    border-radius: 10px;
}
body { 
    font-family: Arial, sans-serif; 
    margin: 0; 
    padding: 0; 
    background: #f7f7f7; 
}