.main-content {
    display: flex;
    justify-content: center;
    padding: 20px;
}

.product-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 380px;
    width: 100%;
    padding: 20px;
}

.product-image-container {
    width: 100%;
}

.product-image {
    width: 100%;
    height: auto;
    display: block;
}

.product-info {
    text-align: center;
}

.product-name {
    color: #006f51;
    margin-top: 15px;
    font-size: 2em;
    margin-bottom: 10px;
}

.product-summary {
    z-index: 10;
    position: relative;
    font-size: 1em;
    color: #383838;
    margin-bottom: 20px;
}

.product-cost {
    position: relative;
    z-index: 10;
    font-size: 1.5em;
    color: #ffffff;
    margin-bottom: 20px;
}

.add-to-cart-btn {
    position: relative;
    z-index: 10;
    background-color: #f29559;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 1em;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.add-to-cart-btn:hover {
    background-color: #bc7546;
    color: #e7e7e7;
}

.site-footer {
    text-align: center;
    padding: 10px 0;
    background-color: #626262;
    color: #fff;
}

@media (max-width: 768px) {
    .product-section {
        padding: 15px;
    }

    .product-name {
        font-size: 1.5em;
    }

    .product-cost {
        font-size: 1.2em;
    }

    .add-to-cart-btn {
        font-size: 0.9em;
        padding: 8px 16px;
    }
}

/* product page css starts */
.round {
    height: 25px;
    width: 25px;
    background-color: red;
    border-radius: 50%;
}

.product-page-sec-image-one {
    margin-bottom: 30px;
}

.product-page-sec-image {
    margin: 30px 0px;
}

.corn-silage-description {
    padding-left: 0px;
    display: block;
}

.corn-silage-description li {
    display: flex;
}

.corn-silage-ol li::marker{

    font-weight: 700;
    margin-right: 10px;
    color: #f29559;
}

.corn-made-content img {
    padding-bottom: 30px;
}

.corn-silage-ol li span {
    color: #f29559;
    font-weight: 700;
    margin-right: 5px;
}

.spices-content-container{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
}

.spices-content {
  text-align: center;
}

.spices-item-content div h4 {
    color: #f29559 !important;
    position: relative;
}

.spices-content li p{
    position:relative;
    font-size: 18px;
}
.spices-content li p::before {
    content: "✔";
    transform: translateY(-7px);
    margin-right: 10px;
    font-size: 25px;
    font-weight: 700;
    color: #006f51;
}

/*.spices-item-content div h4::after {*/
/*    left: 0px;*/
/*    right: 0px;*/
/*    bottom: -2px;*/
/*    content: "0";*/
/*    color: transparent;*/
/*    display: inline-block;*/
/*    width: 120px;*/
/*    height: 5px;*/
/*    border-radius: 5px;*/
/*    background-color: #006f51;*/
/*    position: absolute;*/
/*    animation: underline-heading 2s infinite ease-in-out;*/
/*}*/
.product-video iframe{
    margin: 50px 0px 0px 0px;
    width: 100%;
    min-height: 200px;
    max-height: 400px;
    height: 30vw;

    border-radius: 0px;
}

.spices-item-content div h4 {
    font-size: 19px !important;
    margin: 20px 0;
    color: #006f51 !important;
    position: relative;
}

@media (min-width:768px) {
    .spices-row-2 {
        padding-top: 20px;
    }
    .product-extra-padding{
        padding: 20px 0px 40px 0px!important;
    }
 
}

@media (max-width:767.98px) {
    .product-video iframe{
        margin: 30px 0px 0px 0px;
    }
}
@media (min-width:767.98px) and (max-width:991.98px) {
    .spices-padding-top {
        padding-top: 20px;
    }
}

@keyframes underline-heading {
    0% {
        width: 20px;
    }

    50% {
        width: 120px;
    }

    100% {
        width: 20px;
    }
}

/* product page css ends */