body {
    background-color: #0F0F0F;
}

.view-product {
    max-width: 1180px;
    margin: auto;
    padding: 100px 20px;
    text-align: center;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.g1 img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.g2 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
}

.product-details {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.product-title {
    font-size: 25px;
    font-weight: 500;
}

.product-price {
   color: #FFB800; 
   font-size: 30px;
   font-weight: 600;
}

.product-sold,
.product-description {
    font-size: 20px;
}

.product-interact {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.quantity-group {
    display: flex;
    align-items: center;
    gap: 15px;
}

.quantity-input {
    width:80px;
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #EEE9DB;
    outline: none;
    border-radius: 5px;
    font-size: 16px;
    padding: 10px;
}

.add-cart, 
.buy-now {
    background-color: #D1AB47;
    font: inherit;
    font-weight: 500;
    border: none;
    border-radius: 10px;
    padding: 8px 60px;
    cursor: pointer;
    width: 100%;
}

.add-cart {
    margin-bottom: 20px;
    background-color: #282828;
    color: #ffffff;
}

.add-cart:hover {
    background-color: #191818;
}

.buy-now:hover {
    background-color: #FFB800;
}

.recommendation {
    max-width: 1180px;
    margin: auto;
    padding: 0px 20px;
}

.reco-g1 {
    font-size: 30px;
    font-weight: 300;
    text-align: center;
    padding: 0px 0px 100px;
}

.thick {
    font-size: 40px;
    font-weight: 700;
    color: #D1AB47;
}

.products-container {
    max-width: 1180px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 20px;
    padding-bottom: 100px;
}

.product-card {
    border: 2px solid #3f3d3d;
    padding: 40px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.product-card:hover .product-name{
    color: #D1AB47;
}

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.product-content {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.product-name {
    font-size: 25px;
    font-weight: 600;
    line-height: 1.2;
    height: 60px;
}

.product-price {
    font-size: 20px;
    font-weight: 600;
}

.product-description{
    font-size: 18px;
    font-weight: 300;
    height: 81px;
}

.product-button {
    background-color: #D1AB47;
    font: inherit;
    font-weight: 500;
    border: none;
    border-radius: 10px;
    padding: 8px 60px;
    cursor: pointer;
    width: 100%;
}

.product-button:hover{
    background-color: #9b7a28;
    font-weight: 600;
}