
body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f8f8f8;
    color: #333;
    margin: 0;
    padding: 20px;
}

.product-detail-container {
    max-width: 1200px;
    margin: 30px auto;
    display: flex;
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    overflow: hidden;
}

.product-images {
    flex: 1;
    padding: 30px;
}

.main-image img {
    width: 100%;
    max-height: 500px;
    object-fit: contain;
    border-radius: 5px;
}

.product-info {
    flex: 1;
    padding: 30px;
    position: relative;
}

.badge {
    background: #5d4037;
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 15px;
}

h1 {
    font-size: 28px;
    margin: 0 0 10px;
    color: #222;
}

.category {
    color: #777;
    margin-bottom: 20px;
    font-size: 14px;
}

.size-selection {
    margin: 25px 0;
}

.size-selection h3 {
    margin-bottom: 10px;
    font-size: 16px;
}

.size-options {
    display: flex;
    gap: 15px;
}

.size-options input[type="radio"] {
    display: none;
}

.size-options label {
    padding: 10px 20px;
    border: 1px solid #ddd;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
}

.size-options input[type="radio"]:checked + label {
    border-color: #5d4037;
    background-color: rgba(93, 64, 55, 0.1);
}

.price-container {
    margin: 25px 0;
}

.current-price {
    font-size: 28px;
    font-weight: bold;
    color: #5d4037;
}

.original-price {
    font-size: 18px;
    color: #999;
    text-decoration: line-through;
    margin-left: 10px;
}

.action-buttons {
    display: flex;
    gap: 15px;
    margin: 30px 0;
}

 .buy-now {
    justify-content: center;
    display: inline-block;
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    flex: 1;
}




.buy-now {
    background: #5d4037;
    color: white;
}

.buy-now:hover {
    background: #3e2723;
}

.product-description {
    margin-top: 30px;
}

.product-description h3 {
    margin-bottom: 10px;
}

.product-description p {
    line-height: 1.6;
    color: #555;
}

@media (max-width: 768px) {
    .product-detail-container {
        flex-direction: column;
    }
    
    .action-buttons {
        flex-direction: column;
    }
}