/* Shop page styles */
.biolife-vertical-menu .menu li.active > a {
  color: #2e7d32;
  font-weight: 600;
}
.biolife-vertical-menu .menu li a .count {
  float: right;
  color: #999;
}
.shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.shop-toolbar .toolbar-left .result-count {
  margin: 0;
}
.shop-toolbar .toolbar-right select {
  padding: 8px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: #fff;
}
.biolife-pagination {
  margin-top: 30px;
  text-align: center;
}
.biolife-pagination .pages {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-block;
}
.biolife-pagination .pages li {
  display: inline-block;
  margin: 0 3px;
}
.biolife-pagination .pages li a,
.biolife-pagination .pages li span {
  display: block;
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  color: #333;
}
.biolife-pagination .pages li.active span {
  background-color: #2e7d32;
  border-color: #2e7d32;
  color: #fff;
}
.biolife-pagination .pages li a:hover {
  background-color: #f5f5f5;
}
.biolife-widget {
  margin-bottom: 30px;
  border: 1px solid #eee;
  padding: 15px;
  border-radius: 4px;
}
.biolife-widget .widget-title {
  border-bottom: 1px solid #eee;
  margin-bottom: 15px;
  padding-bottom: 10px;
}
.biolife-widget .widget-title .title {
  font-size: 18px;
  margin: 0;
  font-weight: 600;
}
.price-range {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}
.price-range input {
  width: 100px;
  padding: 6px 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .shop-toolbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .price-range input {
    width: 80px;
  }
}
/* Product Page Styles */
.biolife-breadcrumb {
  margin-bottom: 30px;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}
.biolife-breadcrumb .breadcrumb {
  background: none;
  padding: 0;
  margin: 0;
}
.biolife-breadcrumb .breadcrumb li {
  display: inline-block;
  margin-right: 5px;
}
.biolife-breadcrumb .breadcrumb li + li:before {
  content: ">";
  padding-right: 5px;
}
.product-gallery {
  margin-bottom: 30px;
}
.product-gallery .main-image {
  border: 1px solid #eee;
  padding: 10px;
  text-align: center;
}
.product-gallery .main-image img {
  max-width: 100%;
  height: auto;
}
.product-details {
  padding-left: 20px;
}
.product-details .product-name {
  font-size: 28px;
  margin-bottom: 15px;
  font-weight: 600;
}
.product-details .product-price {
  margin-bottom: 20px;
}
.product-details .product-price ins {
  font-size: 24px;
  font-weight: 600;
  color: #2e7d32;
  text-decoration: none;
}
.product-details .product-price del {
  font-size: 18px;
  color: #999;
  margin-left: 10px;
}
.product-description {
  margin-bottom: 25px;
  line-height: 1.6;
}
.add-to-cart-form {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}
.add-to-cart-form .qty-input {
  display: flex;
  align-items: center;
  gap: 10px;
}
.add-to-cart-form .qty-input label {
  margin: 0;
}
.add-to-cart-form .qty-input input {
  width: 80px;
  padding: 8px;
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 4px;
}
.product-meta {
  border-top: 1px solid #eee;
  padding-top: 20px;
}
.product-meta .product-atts-item {
  margin-bottom: 10px;
}
.product-meta .product-atts-item .meta-title {
  font-weight: 600;
  min-width: 100px;
  display: inline-block;
}
.product-meta .product-atts-item ul {
  display: inline-block;
  list-style: none;
  padding: 0;
  margin: 0;
}
.product-meta .product-atts-item ul li {
  display: inline-block;
  margin-right: 10px;
}
.product-meta .product-atts-item ul li a {
  color: #666;
}
.product-meta .product-atts-item ul li a:hover {
  color: #2e7d32;
}
.product-meta .in-stock {
  color: #2e7d32;
}
.product-meta .out-of-stock {
  color: #d9534f;
}
.related-products {
  margin-top: 50px;
}
@media (max-width: 991px) {
  .product-details {
    padding-left: 0;
    margin-top: 30px;
  }
}
/* Cart Page Styles */
.empty-cart {
  text-align: center;
  padding: 50px 0;
}
.empty-cart p {
  font-size: 18px;
  margin-bottom: 20px;
}
.cart-table-wrapper {
  overflow-x: auto;
  margin-bottom: 30px;
}
.cart-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}
.cart-table th,
.cart-table td {
  padding: 15px;
  border: 1px solid #eee;
  vertical-align: middle;
}
.cart-table th {
  background: #f9f9f9;
  font-weight: 600;
}
.cart-table .product-thumbnail img {
  max-width: 80px;
}
.cart-table .product-name a {
  color: #333;
}
.cart-table .product-name a:hover {
  color: #2e7d32;
}
.cart-table .qty {
  width: 80px;
  padding: 8px;
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 4px;
}
.cart-table .remove {
  color: #d9534f;
  font-size: 18px;
}
.cart-table .remove:hover {
  color: #c9302c;
}
.cart-actions {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}
.cart-totals {
  max-width: 400px;
  margin-left: auto;
  border: 1px solid #eee;
  padding: 20px;
  background: #f9f9f9;
}
.cart-totals h4 {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 600;
}
.totals-table {
  width: 100%;
  margin-bottom: 20px;
}
.totals-table tr {
  border-bottom: 1px solid #eee;
}
.totals-table th,
.totals-table td {
  padding: 10px 0;
}
.totals-table th {
  text-align: left;
}
.totals-table td {
  text-align: right;
}
.total-row th,
.total-row td {
  font-size: 18px;
  font-weight: 600;
}
.checkout-button {
  text-align: right;
}
.checkout-button .btn {
  padding: 12px 30px;
}
@media (max-width: 767px) {
  .cart-table th,
  .cart-table td {
    padding: 8px;
  }
  .cart-table .qty {
    width: 60px;
  }
  .cart-actions {
    flex-direction: column;
  }
  .cart-totals {
    margin-left: 0;
    width: 100%;
  }
}
/* Cart page */
.empty-cart {
    text-align: center;
    padding: 50px 0;
}
.cart-table-wrapper {
    overflow-x: auto;
    margin-bottom: 30px;
}
.cart-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}
.cart-table th, .cart-table td {
    padding: 15px;
    border: 1px solid #eee;
    vertical-align: middle;
}
.cart-table th {
    background: #f9f9f9;
    font-weight: 600;
}
.cart-table .product-thumbnail img {
    max-width: 80px;
}
.cart-table .qty {
    width: 80px;
    padding: 8px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 4px;
}
.cart-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}
.cart-totals {
    max-width: 400px;
    margin-left: auto;
    border: 1px solid #eee;
    padding: 20px;
    background: #f9f9f9;
}
.totals-table {
    width: 100%;
    margin-bottom: 20px;
}
.totals-table tr {
    border-bottom: 1px solid #eee;
}
.totals-table th, .totals-table td {
    padding: 10px 0;
    text-align: left;
}
.total-row th, .total-row td {
    font-size: 18px;
    font-weight: 600;
}
.checkout-button {
    text-align: right;
}
.alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
}
.alert-success {
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #d6e9c6;
}

/* Product page */
.product-gallery .main-image {
    border: 1px solid #eee;
    padding: 10px;
    text-align: center;
}
.product-details {
    padding-left: 20px;
}
.product-name {
    font-size: 28px;
    margin-bottom: 15px;
}
.product-price ins {
    font-size: 24px;
    font-weight: 600;
    color: #2e7d32;
    text-decoration: none;
}
.product-price del {
    font-size: 18px;
    color: #999;
    margin-left: 10px;
}
.product-description {
    margin-bottom: 25px;
}
.add-to-cart-form {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}
.add-to-cart-form .qty-input input {
    width: 80px;
    padding: 8px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 4px;
}
.product-meta {
    border-top: 1px solid #eee;
    padding-top: 20px;
}
.product-meta .product-atts-item {
    margin-bottom: 10px;
}
.related-products {
    margin-top: 50px;
}
@media (max-width: 991px) {
    .product-details {
        padding-left: 0;
        margin-top: 30px;
    }
}

/* Google Reviews Section */
.google-reviews-section {
    background: #fafafa;
    padding: 60px 0 80px;
    margin-top: 0;
    
}
.reviews-carousel-wrapper {
    margin-top: 40px;
    
}
.review-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: auto;
    display: flex;
    flex-direction: column;
}
.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}
.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}
.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #2e7d32;
}
.review-user-info {
    flex: 1;
}
.review-name {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 5px 0;
    color: #333;
}
.review-stars {
    color: #ffe100;
    font-size: 14px;
}
.review-stars i {
    margin-right: 2px;
}
.review-content {
    flex: 1;
    margin-bottom: 20px;
}
.review-text {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    font-style: italic;
    margin: 0;
}
.review-footer {
    border-top: 1px solid #eee;
    padding-top: 12px;
    text-align: right;
}
.review-source {
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
@media (max-width: 767px) {
    .google-reviews-section {
        padding: 40px 0 60px;
    }
    .review-card {
        padding: 20px;
    }
    .review-avatar {
        width: 50px;
        height: 50px;
    }
    .review-name {
        font-size: 16px;
    }
    .review-text {
        font-size: 14px;
    }
}


/* Shop Page - Grid & Cards */
.products-grid {
    margin-left: -15px;
    margin-right: -15px;
}
.product-item {
    margin-bottom: 30px;
}
.contain-product.layout-default {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}
.contain-product.layout-default:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}
.product-thumb {
    position: relative;
    padding: 15px;
    background: #f9f9f9;
    text-align: center;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-thumb img {
    max-width: 100%;
    max-height: 240px;
    object-fit: contain;
}
.info {
    padding: 15px;
    flex: 1;
    background: #fff;
}
.categories {
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 8px;
}
.product-title {
    font-size: 16px;
    margin: 0 0 10px;
    font-weight: 600;
    line-height: 1.4;
    height: 44px;
    overflow: hidden;
}
.price {
    margin-bottom: 15px;
}
.price ins {
    font-size: 18px;
    font-weight: 700;
    color: #2e7d32;
    text-decoration: none;
}
.price del {
    font-size: 14px;
    color: #aaa;
    margin-left: 8px;
}
.slide-down-box {
    display: block;
}
.message {
    font-size: 13px;
    color: #666;
    margin-bottom: 12px;
    line-height: 1.4;
}
.buttons .btn.add-to-cart-btn {
    background: #2e7d32;
    color: #fff;
    border: none;
    padding: 8px 15px;
    font-size: 13px;
    border-radius: 4px;
    width: 100%;
    text-align: center;
    transition: background 0.3s;
}
.buttons .btn.add-to-cart-btn:hover {
    background: #1b5e20;
}
.btn.add-to-cart-btn i {
    margin-right: 6px;
}
.lookup {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255,255,255,0.9);
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    border-radius: 50%;
    color: #333;
    transition: all 0.3s;
}
.lookup:hover {
    background: #2e7d32;
    color: #fff;
}

/* Sidebar widgets */
.biolife-vertical-menu .menu li.active > a {
    color: #2e7d32;
    font-weight: 600;
}
.biolife-vertical-menu .menu li a .count {
    float: right;
    color: #999;
}
.biolife-widget {
    margin-bottom: 30px;
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 8px;
}
.biolife-widget .widget-title {
    border-bottom: 1px solid #eee;
    margin-bottom: 15px;
    padding-bottom: 10px;
}
.biolife-widget .widget-title .title {
    font-size: 18px;
    margin: 0;
    font-weight: 600;
}
.price-range {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}
.price-range input {
    width: 100px;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}
.shop-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
}
.shop-toolbar .toolbar-left .result-count {
    margin: 0;
    font-size: 14px;
}
.shop-toolbar .toolbar-right select {
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
}
.biolife-pagination {
    margin-top: 30px;
    text-align: center;
}
.biolife-pagination .pages {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-block;
}
.biolife-pagination .pages li {
    display: inline-block;
    margin: 0 3px;
}
.biolife-pagination .pages li a,
.biolife-pagination .pages li span {
    display: block;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #333;
}
.biolife-pagination .pages li.active span {
    background-color: #2e7d32;
    border-color: #2e7d32;
    color: #fff;
}
@media (max-width: 991px) {
    .product-thumb {
        min-height: 220px;
    }
    .product-title {
        height: auto;
    }
}
@media (max-width: 767px) {
    .shop-toolbar {
        flex-direction: column;
        align-items: flex-start;
    }
    .price-range input {
        width: 80px;
    }
}

