/* ===== GLOBAL FONT SETUP ===== */
body {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 15px;
    color: #222;
    background-color: #ffffff;
}

/* ===== LINKER NAVIGATIONSBEREICH ===== */

/* "Kategorien"-Balken ganz ausblenden */
div.left_nav div.ibox_top {
    display: none !important;
    background: none !important;
    color: transparent !important;
    height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
    font-size: 0 !important;
}

/* Allgemeine Kategorie-Links */
.left_nav a.left {
    display: block;
    padding: 8px 14px;
    color: #333 !important;
    text-decoration: none;
    font-weight: 300;
    background-color: transparent;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

/* Hover auf Kategorie */
.left_nav a.left:hover {
    background-color: #f9f9f9;
    font-weight: 400;
}

/* Aktive Kategorie (z.B. Kosmetik) */
.left_nav a.kataktiv {
    background-image: none !important;
    background-color: #fff0f6 !important;
    color: #FF008A !important;
    font-weight: 500;
    border-left: 3px solid #FF008A;
}

.left_nav a.kataktiv::before {
    content: none !important;
    display: none !important;
}

/* Unterkategorie */
.left_nav a.kat_in_pfad + a.left {
    color: #FF008A !important;
    background-color: #fff0f6 !important;
    padding-left: 24px;
}

/* ===== Titel fein + pink ===== */
h1.content,
h1.content a:link,
h1.content a:visited,
h1.content a {
    color: #FF008A !important;
    font-family: 'Poppins', sans-serif !important;
    font-weight: 400 !important;
    font-size: 22px !important;
    text-decoration: none !important;
}

/* ===== PRODUKTÜBERSICHT ===== */
.product-grid, .products-container, .product-wrapper {
    background-color: transparent !important;
    padding: 20px;
    border-radius: 10px;
}

.product-tile, .produktbox {
    background-color: #ffffff !important;
    border-radius: 10px;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
    padding: 10px;
    margin: 10px;
    transition: box-shadow 0.2s ease;
}

/* Bildbereiche neutralisieren */
.artikel_box_bild {
    background-color: #ffffff !important;
    object-fit: contain !important;
    padding: 0 !important;
    margin: 0 auto !important;
    display: block;
}

.artikel_box_bild_wrapper,
.flag_bild_wrapper,
.product-image-container {
    background-color: #ffffff !important;
    padding: 0 !important;
    height: auto !important;
}

/* Entfernt graue Platzhalter */
.produktbox::before,
.produktbox::after,
.product-tile::before,
.product-tile::after {
    content: none !important;
    display: none !important;
    background: none !important;
    height: 0 !important;
}

.product-tile:hover, .produktbox:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.product-name {
    font-size: 15px;
    color: #222;
    font-weight: 400;
}

.product-price {
    font-weight: 500;
    color: #FF008A;
    margin-top: 6px;
    font-size: 16px;
}

/* ===== BUTTONS ===== */
button, .btn, .button {
    background-color: #FF008A;
    color: white;
    border: none;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 400;
    transition: background-color 0.3s ease;
}

button:hover, .btn:hover {
    background-color: #e60077;
}

/* ===== DROPDOWNS ===== */
select {
    border: 1px solid #ddd;
    padding: 6px 10px;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
}

/* ===== WARENKORB ICON ===== */
.cart-icon, .cart-count {
    color: #FF008A;
    font-weight: 500;
}

body {
    background-color: #ffffff !important; /* Hintergrund: Weiß */
    color: #000000 !important;            /* Text: Schwarz */
}

button, .btn {
    background-color: #000000 !important; /* Buttons: Schwarz */
    color: #ffffff !important;            /* Button-Text: Weiß */
}

input, select, textarea {
    background-color: #ffffff !important;
    color: #000000 !important;
    border: 1px solid #000000 !important;
}

.kassen-text, .artikelzeile, .gesamtbetrag, .kassen-headline {
    color: #000000 !important; /* Kassentext: Schwarz */
}