.woocommerce a.added_to_cart {
  display: none !important;
}

/* Style all WooCommerce checkout dropdowns (Select2) */

/* Closed dropdown box */
.woocommerce-checkout .select2-container .select2-selection {
    background-color: #181D3D !important; /* box background */
    color: #fff !important; /* selected text */
    border: 1px solid #F8F7F3 !important;
}

/* Expanded dropdown list */
.woocommerce-checkout .select2-container .select2-dropdown {
    background-color: #181D3D !important; /* dropdown list background */
    color: #fff !important;
    border: 1px solid #F8F7F3 !important;
}

/* Each option */
.woocommerce-checkout .select2-container .select2-results__option {
    background-color: #181D3D !important;
    color: #fff !important;
}

/* Highlighted/hover option */
.woocommerce-checkout .select2-container .select2-results__option--highlighted {
    background-color: #444 !important; /* hover/active background */
    color: #fff !important;
}

/* Add spacing between all checkout/payment buttons on Cart page */
.woocommerce-cart .wc-proceed-to-checkout > * {
    display: block;
    margin-bottom: 15px !important;
}

/* Remove underline from all WooCommerce sale prices */
.woocommerce ins {
    text-decoration: none !important;
}

/* Force product images to show in cart on mobile */
@media (max-width: 767px) {
  .woocommerce-cart .product-thumbnail {
    display: table-cell !important;
    width: 60px !important;
  }

  .woocommerce-cart .product-thumbnail img {
    max-width: 60px;
    height: auto;
    display: block;
  }
}

/* Single Product Page - In Stock */
.single-product p.stock.in-stock,
.single-product span.stock.in-stock {
    color: green !important; /* Change green to your desired color */
}

/* Single Product Page - Out of Stock */
.single-product p.stock.out-of-stock,
.single-product span.stock.out-of-stock {
    color: red !important; /* Change red to your desired color */
}

/* Circular Sale badge on product images */
.woocommerce span.onsale,
.woocommerce-page span.onsale {
    background-color: #993BBB !important; /* badge color */
    color: #F8F7F3 !important;            /* text color */
    font-weight: bold !important;         
    width: 50px !important;               /* adjust size */
    height: 50px !important;              /* same as width for circle */
    display: flex !important;
    align-items: center !important;       /* center text vertically */
    justify-content: center !important;   /* center text horizontally */
    border-radius: 50% !important;        /* makes it circular */
    padding: 0 !important;                /* remove default padding */
    font-size: 0.8rem !important;         /* adjust text size */
    text-align: center !important;
}

/* Hide all comment icons in galleries/lightboxes */
.elementor-lightbox [class*="comment"],
.lb-comments,
.lightbox-comments,
.gal-comment-icon,
.elementor-lightbox-comments,
.gallery-lightbox .comments,
.fancybox-comments,
.photoswipe-comment-icon {
    display: none !important;
    pointer-events: none !important; /* Prevent clicks */
}

/* Make sure product container is positioned relative */
.woocommerce ul.products li.product {
    position: relative;
}

/* Make sure product container is positioned relative */
.woocommerce ul.products li.product {
    position: relative;
}

/* Make sure product container is positioned relative */
.woocommerce ul.products li.product {
    position: relative;
}

/* Ensure product container is positioned relative */
.woocommerce ul.products li.product {
    position: relative;
}

/* Short diagonal badge style */
.out-of-stock-badge {
    position: absolute;
    top: 10px;
    right: -30px; /* adjust slightly outside corner */
    background-color: #ff3b3b;
    color: #fff;
    font-weight: bold;
    font-size: 11px;
    text-transform: uppercase;
    padding: 3px 5px; /* shorter than before */
    transform: rotate(45deg);
    z-index: 10;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
    line-height: 1; /* keeps text compact */
}

/* Vertical Timeline */
.vertical-timeline {
    position: relative;
    max-width: 800px;
    margin: 40px auto;
    padding-left: 40px;
    border-left: 3px solid #ffcc00;
}

.timeline-event {
    position: relative;
    margin-bottom: 40px;
}

.timeline-dot {
    position: absolute;
    left: -10px;
    top: 10px;
    width: 20px;
    height: 20px;
    background: #ffcc00;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px #ffcc00;
}

.timeline-content {
    background: #111;
    padding: 16px;
    border-radius: 12px;
    color: #fff;
}

.timeline-content img {
    max-width: 100%;
    border-radius: 8px;
    margin: 8px 0;
}

.timeline-date {
    font-size: 0.85rem;
    opacity: 0.7;
}

.timeline-event.past .timeline-dot {
    background: #666;
}

.timeline-event.past .timeline-content {
    opacity: 0.5;
}

