body {
    background: #fff;
    font-family: "Poppins", sans-serif;
}

/* IMAGE */
.product-image {
    background: #f3f4f6;
    padding: 20px;
    text-align: center;
}

.main-img {
    width: 80%;
    border-radius: 15px;
}

/* DETAILS */
.product-details {
    padding: 15px;
}

.product-details h3 {
    color: #ff7a00;
}

/* SIZE */
.size-options {
    display: flex;
    gap: 10px;
}

.size-options button {
    border: 1px solid #ddd;
    padding: 8px;
    border-radius: 8px;
}

/* QUANTITY */
.qty-box {
    display: flex;
    gap: 10px;
}

.qty-box button {
    background: #eee;
    border: none;
    padding: 8px;
}

/* ACTION BAR */
.actions {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #fff;
    padding: 10px;
    display: flex;
    gap: 10px;
}

.actions button:first-child {
    background: #ff7a00;
    color: #fff;
}

.actions button {
    flex: 1;
    border-radius: 10px;
    padding: 10px;
    border: none;
}