.product-hero-section {
    display: flex;
    width: 100vw;
}

/* left side product gallery  */

.product-gallery {
    width: 60%;
    background-color: #f3f2f8;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.3rem;
}

.product-gallery .product-image {
    width: 100%;
    height: 680px;
    border: 0px solid #dedede;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* right side product information */
.product-info {
    width: 40%;
    padding: 2rem;
    position: sticky;
    top: 0.5rem;
}

.product-info .breadcrumb {
    font-size: 0.7rem;
    font-weight: 100;
    margin-bottom: 2rem;
}

.product-info h2 {
    font-size: 2rem;
    font-weight: 200;
    margin: 1rem 0;
}

.product-info p {
    font-weight: 200;
}

.product-info .price-section {
    margin: 1.5rem 0;
}

.product-info .price {
    font-size: 2rem;
    font-weight: 400;
}

.buy-or-add-to-cart {
    display: flex;
    gap: 5px;
}

.buy-or-add-to-cart a {
    padding: 0.8rem;
    border: none;
    background-color: #262626;
    color: #f3f2f8;
    font-size: 1rem;
    font-weight: 200;
    text-align: center;
    text-decoration: none;
}

.buy-or-add-to-cart .add-to-cart {
    width: 100%;
}

.buy-or-add-to-cart .buy-now {
    width: 100%;
    background-color: #560009;
}


.product-variations {
    display: flex;
}

.product-variation-item {
    width: 30px;
    height: 30px;
    border: 1px solid #262626;
    margin: 1rem;
    border-radius: 50%;
}

.product-description-box {
    margin-top: 2rem;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    font-weight: 200;
    font-size: 1.3rem;
    padding: 10px 0;
    border-bottom: 1px solid #faf8f5;
}