/*
Theme Name: Uncode Child
Description: Child theme for Uncode theme
Author: Undsgn™
Author URI: http://www.undsgn.com
Template: uncode
Version: 1.0.0
Text Domain: uncode
*/

#ppom-price-container {
  display: none !important;
}
.woocommerce-variation-description p {
  margin-top: -20px !important;
  margin-bottom: 20px !important;
}
.woocommerce-checkout .shop_table {
  background-color: #f7f7f7;
}
.woocommerce a.added_to_cart {
  padding-top: 0;
  padding-left: 20px;
}
::selection {

    background: #000;   /* Hintergrund der Markierung */

    color: #fff;        /* Textfarbe in der Markierung */

}
::-moz-selection {
    background: #000;
    color: #fff;
} 
/* Den versteckten Zähler in Uncode aktivieren */
.uncode-cart-badge, 
.cart-icon-container .badge, 
.mobile-shopping-cart .badge {
    display: flex !important; /* Macht den Zähler sichtbar */
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -5px;
    right: -8px;
    background-color: #000000;
    color: #ffffff;
    font-size: 10px;
    font-weight: bold;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    z-index: 10;
}
/* Versteckt den Badge-Kreis komplett, wenn die Zahl 0 ist */
.uncode-cart-badge:empty,
.uncode-cart-badge:contains('0'),
.uncode-cart-badge[data-count="0"] {
    display: none !important;
}
/* Nur für Mobilgeräte (Handys und kleine Tablets) */
@media (max-width: 768px) {
    .uncode-cart-badge, 
    .cart-icon-container .badge, 
    .mobile-shopping-cart .badge {
        top: 2px !important;    /* Etwas tiefer setzen */
        right: -8px !important;  /* Näher ans Icon rücken */
        width: 14px !important;  /* Optional: Etwas kleiner für Mobile */
        height: 14px !important;
        font-size: 9px !important;
        line-height: 14px !important;
    }
}