/* ----- MAIN PRODUCT PAGE ----- */

.main-container { 
    background-color: #fff;
    color: #c9003c;
    padding: 50px 5%;
}

#product-filter {
    text-align: center;
    padding: 20px 0;
}

#product-filter p {
    padding: 0 10px;
    text-transform: uppercase;
    font-size: 13px !important;
    line-height: 30px !important;
    color: #c9003c;
    font-weight: 600;
    display: inline-block;
}

#product-filter .active:after {
    content: "";
    width: 100%;
    height: 3px;
        background-color: #c9003c;
    display: block;
    margin: 10px auto;   
}
#product-filter p:hover {
    cursor: pointer;
}

.filterDiv {
  vertical-align: top;
  width: calc(25% - 5px);
  display: none;
}

.filterDiv img {
  max-width: 250px;
  width: 90%;
  height: auto; 
  border-radius: 25px; 
  display: block; 
  margin: 20px auto;
}

.filterDiv h5 {
  text-align: center;
  color: #c9003c;
  margin-bottom: 10px;
}

.filterDiv p {
  font-size: 16px !important;
  line-height: 20px !important;
  text-align: center;
  color: #ff5a5a;
  padding: 0 15px 15px;
}

.show {
  display: inline-block !important;
}

/* ----- SINGLE PRODUCT PAGE ----- */

.title-area {
    width: 100%;
    background-color: #ffcc63;
    padding: 75px 25px;
}

.title-area img {
    display: block;
    max-width: 100%;
    max-height: 75px;
    object-fit: cover;
    margin: 0 auto;
}

.product-wrapper .row {
  display: flex;
  flex-wrap: wrap;
}

.product-wrapper .row > [class*='col-'] {
  display: flex;
  flex-direction: column;
}

.product-wrapper .vc_col-md-7 {
    padding-left: 50px;
    justify-content: center;
}

.product-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 25px;
}

.product-wrapper h1 {
  color: #c9003c;
  text-transform: capitalize;
  font-size: 54px !important;
  line-height: 60px !important;
  padding-bottom: 25px;
  font-weight: 900;
}


.product-wrapper .contains p {
    color: #ff5a5a;
}

.disclaimer {
    padding-top: 15px;
}

.disclaimer p {
  color: #c9003c;
  font-size: 16px !important;
  font-weight: 400;
}

.nutritional-info-wrapper {
    margin-top: 25px;
    text-align: right;
}

.nutritional-info-wrapper p {
    color: #ff5a5a;
    display: inline-block;
    font-size: 16px !important;
    line-height: 24px;
    font-weight: 400;
    padding-bottom: 0px;
    vertical-align: middle;
    max-width: 270px;
}

.nutritional-info-wrapper .info-button {
    background-color: #c9003c;
    color: #fff;
    width: 22%;
    max-width: 120px;
    font-size: 18px;
    display: inline-block;
    margin-left: 15px;
    text-align: center;
    border-radius: 5px;
    line-height: 48px;
    vertical-align: middle;
}

.nutritional-info-wrapper .info-button:hover {
    background-color: #ff5a5a;
}

.accordion-section {
	width: 100%;
	border: 1px solid #ccc;
	border-radius: 4px;
	margin-bottom: 10px;
}

.accordion-title {
	background-color: #f7f7f7;
	cursor: pointer;
	padding: 12px 16px;
	font-weight: bold;
	border-bottom: 1px solid #ddd;
}

.accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease-out;
	padding: 0 16px;
}

.accordion-checkbox:checked + .accordion-title + .accordion-content {
	max-height: 500px; /* adjust as needed */
	padding: 12px 16px;
}

.accordion-checkbox {
	display: none;
}

.product-wrapper h1{
	padding-bottom:6px;
}
.product-wrapper p{
    padding-bottom:10px;
    line-height: initial;
}
.product-wrapper .contains{
    margin-bottom: 10px;
}
.product-wrapper .accordion-title{
    display: block;
}
.accordion-checkbox:checked + .accordion-title{
    background: #c9003c;
    color:#ffffff;
}

.product-wrapper .accordion-title{
    font-size: 20px !important;
}
.product-wrapper .accordion-content{
    font-size: 18px;
}

.relative-products{
    margin-bottom: 20px;
}
.relative-products > div{
    padding:0px 15px;
}

.accordion-title {  display: flex;  justify-content: space-between;  align-items: center;  cursor: pointer;  padding: 12px 16px;  background: #f0f0f0;  font-weight: bold;  position: relative;}
.accordion-title .arrow {    display: inline-block;    transition: transform 0.3s ease;    width: 0;    height: 0;    margin-left: 10px;    border-left: 6px solid transparent;    border-right: 6px solid transparent;    border-top: 6px solid #000000;    position: absolute;    right: 13px;    top: 22px;}
.accordion-checkbox:checked + .accordion-title .arrow {  transform: rotate(180deg);  border-top: 6px solid #fff;}
.accordion-content{
    text-align: justify;
}

/* ----- RESPONSIVE STYLES ----- */

@media (max-width: 1200px) {
.product-wrapper h1 {
    font-size: 40px !important;
    line-height: 46px !important;
}
}

@media (max-width: 1023px) {
.filterDiv {
  width: calc(33% - 5px);
}
}

@media (max-width: 999px) {
.product-wrapper .vc_col-md-7 {
    padding-top: 50px;
    padding-left: 0px;
}
#product-filter p {
    font-size: 22px !important;
    line-height: 22px !important;

}
}

@media (max-width: 767px) {
.filterDiv {
  width: calc(50% - 5px);
}
#product-filter p {
    font-size: 18px !important;
    line-height: 18px !important;

}
}

@media (max-width: 560px) {
.filterDiv {
  width: calc(100% - 5px);
}
#product-filter p {
    font-size: 16px !important;
    line-height: 16px !important;

}
.nutritional-info-wrapper {
    text-align: center;
}

.nutritional-info-wrapper p {

}

.nutritional-info-wrapper .info-button {
    margin-left: 0px;
    margin-top: 10px;
    width: 120px;
}


}