main {
    padding: 28px;
}

main>p {
    color: #616161;
}

main>p>span {
    color: #333;
}

/* Product section styles */
.product {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 18px;
}

/* Product image styles */
.product-img {
    max-width: 60%;
    /* margin-right: 20px; */
}

.product-img>img {
    max-width: 80%;
}

.product-info {
    max-width: 35%;
    flex-grow: 1;
    border: 2px solid #d3d3d3;
    border-radius: 4px;
    /* padding: 25px 16px; */
    padding-inline: 16px;
    padding-top: 25px;
}

.pro-info-header {
    display: flex;
    justify-content: space-between;
}

.pro-info-header h4 {
    font-size: 28px;
    line-height: 32px;
    font-weight: 500;
    max-width: 72%;
}

.pro-info-header>p {
    font-size: 26px;
}

.reviews-sec {
    margin-top: 12px;
    display: flex;
    align-items: center;
    font-size: 22px;
    margin-bottom: 25px;
}

.reviews-sec>div:last-child {
    margin-left: 12px;
    border-bottom: 1px solid #616161;
}

.reviews-sec>div>p>a {
    font-size: 16px;
    color: #616161;
}

.desc-sec>h4 {
    margin-block: 12px;
    font-size: 22px;
    font-weight: 400;
}

.desc-sec>p {
    color: #616161;
    margin-bottom: 16px;
}

.product-pattern>h4 {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 12px;
}

.product-pattern>p {
    color: #616161;
    margin-bottom: 45px;
}

.container-fluid {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #616161;
}

.container-fluid .qty-sec {
    width: 45%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding-block: 26px;
    /* margin-right: 12px; */
    border-right: 1px solid #616161;
}

.qty-sec>p {
    font-size: 20px;
}

.counter {
    display: flex;
    gap: 12px;
    align-items: center;
}

.counter i {
    font-size: 22px;
    color: #616161;
}

.counter .count {
    font-size: 16px;
}

.container-btn {
    max-width: 60%;
}

.container-btn>button {
    padding: 9px;
    font-size: 16px;
    border: 1px solid #333;
    border-radius: 2px;
    color: #333;
    background-color: #fff;
}

.container-btn>button:last-child {
    margin-left: 12px;
    color: #fff;
    background-color: #333;
}

.add-to-cart-btn {
    width: 100%;
    border: 1px solid #616161;
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.add-to-cart-btn>a:nth-child(1) {
    width: 90%;
    text-align: center;
    /* border: none; */
}

.add-to-cart-btn>a>button {
    border: none;
    font-size: 16px;
    padding-block: 18px;
    background-color: #fff;
    cursor: pointer;
}

.add-to-cart-btn>div:nth-child(2) {
    width: 10%;
    text-align: center;
    font-size: 24px;
    border-left: 1px solid #616161;
}

/* Call-to-action button styles */
.cta-btn,
.buy-now-btn {
    background-color: #333;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
}

/*-----------------------------------*\
  #RESPONSIVE
\*-----------------------------------*/


/**
 * responsive larger than 1250px screen
 */

@media (max-width: 1024px) {
    .product-img {
        max-width: 55%;
    }

    .product-info {
        max-width: 40%;
    }
}

@media (max-width: 924px) {
    .product-img {
        max-width: 48%;
    }

    .product-info {
        max-width: 48%;
    }
}

@media (max-width: 768px) {
    .product-img {
        /* max-width: 48%; */
        margin-bottom: 18px;
    }

    .product-info {
        max-width: 100%;
    }

    .product {
        flex-direction: column;
    }

    .product img {
        max-width: 100%;
        margin-bottom: 20px;
    }
}

/* Additional style for Rupee symbol */
.rupee-symbol {
    font-family: Arial, sans-serif;
    /* Ensure the font supports the Rupee symbol */
}