
.site-branding .site-description {
    font-size: .875em;
}

.site-content {
    margin-bottom: 80px;
}

/* .page-template-default .shoptimizer-archive > .col-full {
    max-width: unset;
} */

/* Below header bar - toggle on/off */
.header-widget-region {
    display: none;
}

.product-widget h2 {
    font-size: 20px;
}

.product-widget h3 {
    font-size: 18px;
}

footer.copyright p {
    margin: 0;
    font-size: 13px;
}

body.pswp--open .col-full-nav {
    z-index: 0;
}





.narrow-page .site-content {
    max-width: 690px;
    margin-left: auto;
    margin-right: auto;
}


.woocommerce-cart .checkout-wrap {
    margin-top: 70px;
}

.checkout-wrap {
    margin-top: 70px;
    margin-bottom: 120px;
}

.cart-custom-field fieldset {
    margin-top: .5em;
    margin-bottom: 1.2em;
    border: 1px solid #e2e2e2;
}

.cart-custom-field fieldset legend {
    display: block;
    margin: 0 auto;
    width: inherit;
    padding: 10px;
    color: #111;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

.cart-custom-field .widget fieldset p {
    margin-top: -15px;
    margin-bottom: 0;
}

.cart-custom-field fieldset img {
    display: block;
    margin-bottom: 0;
}

#payment .woocommerce-form__label-for-checkbox {
    position: relative;
    padding-left: 0;
    line-height: 1.5;
}

#payment .woocommerce-form__label-for-checkbox input[type=checkbox] {
    position: relative;
    margin: 0px;
    left: 0;
    top: 6px;
    width: 24px;
    height: 24px;
    margin-right: 10px;
}






.site-footer .wpsr-review-template-six {
    margin-left: 0;
    margin-bottom: 0;
}


/* .product_meta {
    display: none;
} */

div.product .product_meta:has(span) {
    padding-top: 1em;
    padding-bottom: 1em;
    border-top: 1px solid rgba(0, 0, 0, .05);
    font-size: .875em;
    margin-top: 0;
}

.product_meta {
    clear: both;
    position: relative;
    text-align: center;
}


.product_meta {
    width: unset;
    max-width: unset;
    left: unset;
    right: unset;
    margin-left: unset;
    margin-right: unset;   
}



.product_meta {
    background-color: #fff;
}











.outofstock .product-widget {
    display: unset;
}



.product-label.type-bubble, li.product .onsale {
    top: 10px;
    left: 10px;
    z-index: 1;
    min-width: inherit;
    min-height: inherit;
    font-size: 20px;
    border-radius: 3px;
    padding: 8px 6px;
    line-height: 15px;
}


/* #review_form_wrapper {
    display: none;
} */




/* 1. Layout for the list item */
.tool-item {
  display: flex;        /* Ensures badge and text sit side-by-side */
  align-items: center;  /* Vertically centers the badge with the text */
  gap: 10px;            /* Spacing between the badge and the text */
  margin-bottom: 10px;  /* Spacing between list items */
  
  /* Optional: removes the default bullet point since the badge acts as a visual cue */
  list-style: none; 
}

/* 2. The 'New' Badge Styling */
.badge-new {
  background: linear-gradient(135deg, #ff6b6b, #ee5253);
  color: white;
  font-family: sans-serif;
  font-size: 10px;      /* Adjusted for list context */
  font-weight: 700;
  text-transform: uppercase;
  padding: 3px 6px;
  border-radius: 8px;
  letter-spacing: 0.5px;
  position: relative;
  box-shadow: 0 2px 4px rgba(238, 82, 83, 0.3);
}

/* 3. The Pulse Animation */
.badge-new::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 8px;
  animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(238, 82, 83, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(238, 82, 83, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(238, 82, 83, 0);
  }
}