/* Center-align the Proceed to Checkout button */
.wc-block-cart__submit-button.contained {
    background-color: #FF7A33 !important;
    color: #ffffff !important;
    border: none !important;
    padding: 12px 24px !important;
    font-size: 16px !important;
    font-weight: bold !important;
    border-radius: 5px !important;
    text-align: center !important;
    cursor: pointer !important;
    width: 100% !important;

}

/* Style the WooCommerce Store Notice */
.woocommerce-store-notice {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: white;
    padding: 8px;
}

/* Style phone and email icons */
.woocommerce-store-notice .bi {
    font-size: 18px;
    margin-right: 5px;
    vertical-align: middle;
}

/* Group phone & email into inline elements */
.contact-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Adjust layout for mobile screens */
@media screen and (max-width: 1023px) {
    .woocommerce-store-notice {
        flex-direction: column; /* Stack items on mobile */
        text-align: center;
        gap: 10px; /* More spacing */
    }

    .contact-item {
        justify-content: center; /* Keep items aligned */
    }

    /* Hide extra text on mobile */
    .desktop-text {
        display: none;
    }
}

/* probs gonna fuck this up*/

.wc-block-cart__submit-button.contained:hover {
    background-color: #e66b2d !important;
}

a {
    text-decoration: none !important;
}


/* woocomerce sold out coverted to symbol */ 

/* Sold out badge container */
span.product-label.out-of-stock,
span.out-of-stock.product-label {

  width: 40px;              /* overall circle size */
  height: 40px;
  border-radius: 50%;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  padding: 0 !important;
  line-height: 1 !important;
}

/* Headset icon */
span.product-label.out-of-stock i.bi,
span.out-of-stock.product-label i.bi {
  font-size: 30px !important;  /* adjust until it feels right */
  line-height: 1;
}

/* =========================================================
   Spares Mountain - Brand Logo Hover Preview
   Purpose: Shows an enlarged brand logo preview on hover
   Applies to: Desktop and tablet only (768px and above)
   Notes:
   - Add this to Additional CSS or your main stylesheet
   - Mobile is intentionally excluded for now
   - Animation speed is controlled by the transition values below
   ========================================================= */

@media (min-width: 768px) {

  .brand-logo-hover-preview {
    position: fixed;
    z-index: 9999;
    background: #fff;
    padding: 10px;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.22s ease, transform 0.22s ease;
    pointer-events: none;
  }

  .brand-logo-hover-preview.active {
    opacity: 1;
    transform: scale(1);
  }

  .brand-logo-hover-preview img {
    display: block;
    width: auto;
    height: auto;
    max-width: 180px;
    max-height: 90px;
    object-fit: contain;
  }

}