.me_bundle {
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 30px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.me_bundle_desc h3 {
    margin-top: 0;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}

.me_bundle_product {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 10px;
}

.me_bundle_product_thumb {
      flex: 1 1 auto;
      text-align: center;
      background: #fff;
      position: relative;
      border: 1px solid #eee;
      border-radius: 5px;
      padding: 10px;
      margin: 0;
      min-width: 200px;
      min-height: 250px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
  }

.me_bundle_product_thumb.me_bundle_plus:before {
    content: "+";
    position: absolute;
    width: 30px;
    height: 30px;
    font-size: 20px;
    background: #333;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%);
    top: 50%;
    left: -7px;
    z-index: 2;
}

.me_bundle_product_image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.me_bundle_product_image img {
     width: 100%;
     height: auto;
     object-fit: contain;
 }

.me_bundle_product_caption {
    flex: 0 0 auto;
}

.me_bundle_product_caption h4 {
    font-size: 14px;
    font-weight: normal;
    margin: 10px 0 8px 0;
    line-height: 1.3;
    min-height: 2.6em;
}

.me_bundle_product_caption h4 a {
    color: #333;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: var(--wbundle-width, 180px);
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    text-align: center;
    margin: 0 auto;
}

.me_bundle_product_caption .price {
    font-size: 13px;
    margin: 5px 0;
    font-weight: bold;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.me_bundle_product_caption .price .price-old {
    color: #666;
    text-decoration: line-through;
    text-decoration-color: #dc3545;
    font-size: 14px;
    order: 1;
}

.me_bundle_product_caption .price .price-new {
    color: #28a745;
    font-weight: bold;
    font-size: 14px;
    order: 2;
}

.me_bundle_total_price {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.me_bundle_div {
    flex: 1;
    background: #f8f8f8;
    border: 1px solid #ddd;
    border-radius: 3px;
    padding: 8px;
    text-align: center;
    font-size: 14px;
    min-width: 120px;
}

.me_bundle_price_value {
    color: #000;
    font-weight: bold;
    display: block;
}

.me_bundle_save_value {
    color: #28a745;
    font-weight: bold;
    display: block;
}

.me_bundle_total_value {
    color: #dc3545;
    font-weight: bold;
    display: block;
}

.btn-bundle-option {
     background: #007bff;
     border-color: #007bff;
     font-size: 14px;
     padding: 8px 16px;
 }

 /* Countdown Styles */
 .downcoo {
     list-style: none;
     padding: 0;
     margin: 10px 0;
     display: flex;
     justify-content: center;
     align-items: center;
     gap: 5px;
 }

 .downcoo li {
     background: #333;
     color: #fff;
     padding: 5px 8px;
     border-radius: 3px;
     font-size: 14px;
     font-weight: bold;
     min-width: 30px;
     text-align: center;
 }

 .downcoo .clock-o:before {
     content: "⏰";
 }

 .downcoo .last {
     margin-right: 0;
 }

/* Media Queries para dispositivos móveis */
@media (max-width: 768px) {
      .me_bundle_product {
          flex-direction: column;
          align-items: stretch;
          justify-content: center;
      }
      
      .me_bundle_product_thumb {
          margin: 5px 0;
          width: 100%;
          max-width: 340px;
          min-height: 220px;
          flex: none;
      }
      
      .me_bundle_product_caption h4 a {
          max-width: 100%;
      }
      
      .me_bundle_product_thumb.me_bundle_plus:before {
          top: -15px;
          left: 50%;
          transform: translate(-50%, -50%);
      }
      
      .me_bundle_total_price {
          flex-direction: column;
          gap: 5px;
      }
      
      .me_bundle_div {
          min-width: auto;
          width: 100%;
      }
  }

@media (max-width: 480px) {
      .me_bundle_product_caption h4 a {
          max-width: 100%;
          font-size: 13px;
      }
  }

.addtocart {
	padding: 10px 12px;
    font-size: 20px;
    background: #337ab7;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
}

.addtocart:hover {
    background: #286090;
}

.addtocart i {
	font-size: 20px;
}

.pc_products .price {
	color: #444;
	font-size: 14px;
}

.pc_products .price-new {
	font-weight: 600;
}

.pc_products .price-old {
	color: #999;
	text-decoration: line-through;
	margin-left: 10px;
}

.pc_products .price-tax {
	color: #999;
	font-size: 14px;
	display: block;
}

.product-name {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 100%; 
}

.pc_products {
	color:#2f2f2f;
	flex: 1 1 auto;
	text-align: center;
	background: #fff;
	position: relative;
	border: 1px solid #eee;
	border-radius: 5px;
	padding: 10px;
	margin: 5px;
	min-width: 200px;
	min-height: 250px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.pc_products .image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  margin-bottom: 10px;
}

.pc_products .image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.discount{
	background: #f89406;
	color:#fff;
	padding:5px 8px;
	font-size:12px;
	font-weight:600;
	display:inline-block;
	margin-bottom:5px;
	margin-right:8px;
	border-radius:4px;
}

.regular-price{
	display:inline-block;
	text-decoration:line-through;
	color:#d7145d;
	font-size:15px;
	padding-right:5px;
}

.pc_model{
	background-color:rgba(0,0,0,0.8);
}

.pcmodel{
	position:fixed;
	background-color:rgba(0,0,0,0.8);
	bottom: 0;
    left: 0;
    outline: 0 none;
    right: 0;
    top: 0;
    z-index: 1040;
	overflow-y:scroll;
    overflow-x:hidden;
	display:none;
}

.pc_model_dialog{
	background-color:#fff;
    width: 600px;
	position: absolute;
	right:0px;
}

.pc_model_dialog_content{
	background-clip: padding-box;
    background-color: #fff;
    outline: 0 none;
    position: relative;
}

.pc_model_dialog_body{
	padding: 15px;
    position: relative;
}

.col_s_6{
	padding:0 15px;
	width:44%;
	float:left;
}

.col_s_12{
	padding:0 15px;
	width:100%;
}

.pc_clear{
	clear:both;
}

.pc_close{
	background-color: #fff;
    color: #000;
    font-size: 20px;
    left: -34px;
    padding: 12px;
    position: absolute;
	cursor:pointer;
	z-index: 1;
}

.journal_header{
	z-index:2 !important;
}

.journal_footer{
	z-index:2 !important;
}

#column-left .center_plus{
	top:0 !important;
    margin: 0 auto;
	text-align: center; 
	left:45%;
}

.journal_content{
	/* z-index:0 !important; */
}

.pc_scroll{
	overflow:hidden;
}

.pc_scroll header, .pc_scroll.is-sticky footer{
	z-index:0!important;
}

.image{
	position:relative;
}

.image .product-quantity{
	position:absolute;
	top:0;
	left:0;
}

.product-quantity p{
	background-color:#ee3313;
	color:#fff;
	padding:5px 7px;
	font-size:16px;
	font-weight:bold;
}

.pc_bundle {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 10px;
}

.pc_bundle_total_price {
	display: flex;
	gap: 10px;
	margin-bottom: 15px;
	flex-wrap: wrap;
}

.pc_bundle_total_price div {
	flex: 1;
	background: #f8f8f8;
	border: 1px solid #ddd;
	border-radius: 3px;
	padding: 8px;
	text-align: center;
	font-size: 14px;
	min-width: 120px;
}

@media(max-width: 767px) {
	.pc_bundle {
    	flex-direction: column;
    	align-items: stretch;
    	justify-content: center;
	}
	.pc_products {
		margin: 10px 0;
		min-width: 180px;
		min-height: 220px;
		flex: none;
	}
	.pc_bundle_total_price {
		flex-direction: column;
		gap: 5px;
	}
	.pc_bundle_total_price div {
		min-width: auto;
		width: 100%;
	}
	/* Força 1 coluna em dispositivos móveis independente da configuração */
	.col-sm-12, .col-sm-6, .col-sm-4, .col-sm-3 {
		width: 100%;
		float: none;
		margin-bottom: 20px;
	}
	.pc_products.pc_plus:before {
	    transform: translate(-50%,-50%);
	    top: -12px;
	    left: 50%;
	    right: 50%;
	}
	.pc_container {
		text-align: center;
	}
	.pc_bundle.swiper-viewport .pc_products.pc_plus:before {
		transform:translateY(-50%);
		top: 35%;
        left: -30px;
        right: auto;
	}
}

@media (max-width:786px){
	.pc_model_dialog{
		left: 0;
		margin: 20px auto;
		width: 98%;
	}
	.col_s_6{
		padding:0 15px;
		width:100%;
		float:inhert;
	}
	.pc_close{
		left:94%;
	}
}