/* RESET */
* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { height: 100%; }
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 14px;
    color: #333;
    background: #fff;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
main {
    flex: 1 0 auto;
}
a {
    color: #111;
    text-decoration: none;
    transition: color 0.15s ease;
}
a:hover,
a:focus {
    color: #2d2d2d;
}
a:active {
    color: #2d2d2d;
}
ul { list-style: none; }
button { cursor: pointer; border: none; }

/* CONTAINER */
.container-exact { max-width: 1440px; margin: 0 auto; padding: 0px 0px; }

/* ===== GELBE TOP-BAR ===== */
.top-announcement-exact {
    background: linear-gradient(90deg, #ffde00 0%, #ffd600 40%, #ffcf40 100%);
    color: #1b1b1b;
    padding: 8px 0;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
}
.top-announcement-exact .container-exact { display: flex; align-items: center; justify-content: center; gap: 8px; }
.top-announcement-exact .material-icons { font-size: 18px; }

/* ===== SCHWARZE UTILITY-BAR ===== */
.utility-bar-exact {
    background: #111318;
    color: #fff;
    padding: 7px 0;
    font-size: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.utility-bar-exact .container-exact { display: flex; justify-content: space-between; align-items: center; }
.utility-left-exact, .utility-right-exact { display: flex; align-items: center; gap: 15px; }
.utility-bar-exact a { color: rgba(255,255,255,0.8); }
.utility-bar-exact a:hover { color: #ffc107; }
.utility-bar-exact select {
    background: #2a2a2a;
    border: 1px solid #3a3a3a;
    color: #fff;
    padding: 3px 8px;
    font-size: 12px;
    border-radius: 3px;
}
.visually-hidden-12345 {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.utility-left-exact a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
}
.utility-icon-exact {
    width: 14px;
    height: 14px;
    display: inline-block;
    vertical-align: middle;
}

/* Utility Dropdown für Produktcodes */
.utility-dropdown-12345 {
    position: relative;
    display: inline-flex;
}
.utility-dropdown-toggle-12345 {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    cursor: pointer;
    color: rgba(255,255,255,0.8);
}
.utility-dropdown-arrow-12345 {
    font-size: 16px !important;
    transition: transform 0.2s;
}
.utility-dropdown-12345:hover .utility-dropdown-arrow-12345 {
    transform: rotate(180deg);
}
.utility-dropdown-menu-12345 {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 7px;
    background: #1f2937;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px;
    width: 190px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: 1000;
}
.utility-dropdown-12345:hover .utility-dropdown-menu-12345 {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.utility-dropdown-item-12345 {
    display: block;
    width: 100%;
    padding: 10px 15px;
    color: rgba(255,255,255,0.9) !important;
    text-decoration: none;
    transition: background 0.2s;
    font-size: 13px;
    box-sizing: border-box;
}
.utility-dropdown-item-12345:hover {
    background: rgba(255,255,255,0.1);
    color: #ffc107 !important;
}
.utility-dropdown-item-12345:first-child {
    border-radius: 4px 4px 0 0;
}
.utility-dropdown-item-12345:last-child {
    border-radius: 0 0 4px 4px;
}

/* Trusted Stars Widget Styling */
.trusted-stars-service-widget {
    position: relative;
    display: flex;
    flex-direction: unset !important;
    font-size: 1em;
    font-family: var(--font-family);
    white-space: normal;
    height: 30px !important;
}
.language-flag-12345 {
    width: 16px;
    height: 12px;
    object-fit: contain;
    display: inline-block;
    vertical-align: middle;
    margin-right: 4px;
}

/* ===== GELBER HEADER ===== */
.header-exact {
    background: linear-gradient(180deg, #ffe84d 0%, #ffd600 55%, #ffc800 100%);
    padding: 16px 0;
    box-shadow: 0 1px 0 rgba(0,0,0,0.05);
}
.header-exact .container-exact {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 30px;
}
.logo-exact {
    display: inline-flex;
    align-items: center;
}
.logo-image-exact {
    height: 44px;
    width: 300px;
    display: block;
    object-fit: contain;
}
.search-exact { 
    flex: 1; 
    position: relative;
}
.search-exact form { 
    display: flex; 
    background: #fff; 
    border-radius: 4px; 
    overflow: hidden; 
}
.search-exact input {
    flex: 1;
    border: none;
    padding: 12px 15px;
    font-size: 14px;
}
.search-exact button {
    background: #1a1d23;
    padding: 0 18px;
    color: #fff;
}

/* Live Search Dropdown */
.live-search-dropdown-12345 {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    max-height: 500px;
    overflow-y: auto;
    z-index: 1000;
}

.live-search-item-12345 {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 15px;
    text-decoration: none;
    color: #333;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s;
}

.live-search-item-12345:last-child {
    border-bottom: none;
}

.live-search-item-12345:hover {
    background: #f9f9f9;
}

.live-search-image-12345 {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
    background: #f5f5f5;
}

.live-search-placeholder-12345 {
    width: 60px;
    height: 60px;
    background: #f5f5f5;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.live-search-placeholder-12345 .material-icons {
    font-size: 32px;
    color: #ccc;
}

.live-search-content-12345 {
    flex: 1;
    min-width: 0;
}

.live-search-title-12345 {
    font-size: 14px;
    font-weight: 600;
    color: #151821;
    margin: 0 0 4px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.live-search-sku-12345 {
    font-size: 11px;
    color: #999;
    margin-bottom: 4px;
}

.live-search-price-12345 {
    font-size: 16px;
    font-weight: 700;
    color: #151821;
}

.live-search-price-old-12345 {
    text-decoration: line-through;
    color: #999;
    font-size: 13px;
    margin-right: 6px;
}

.live-search-loading-12345 {
    padding: 20px;
    text-align: center;
    color: #666;
    font-size: 14px;
}

.live-search-no-results-12345 {
    padding: 20px;
    text-align: center;
    color: #999;
    font-size: 14px;
}

.live-search-view-all-12345 {
    display: block;
    padding: 12px 15px;
    text-align: center;
    background: #f9f9f9;
    color: #151821;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    border-top: 1px solid #e5e5e5;
    transition: background 0.2s;
}

.live-search-view-all-12345:hover {
    background: #f0f0f0;
}
.header-actions-exact { display: flex; gap: 20px; }
.icon-action-exact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    color: #1b1b1b;
    font-size: 12px;
    position: relative;
}
.icon-action-exact .material-icons { font-size: 28px; }
.cart-badge-exact {
    position: absolute;
    top: -4px;
    right: -8px;
    background: #ff4444;
    color: #fff;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 10px;
    font-weight: 700;
}

.cart-badge-ping-12345 {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 3px solid rgba(255,68,68,0.85);
    transform: scale(1);
    opacity: 0;
    pointer-events: none;
    box-shadow: 0 0 8px rgba(255,68,68,0.6);
    animation: cart-badge-ping-12345 1.1s cubic-bezier(0.15, 0, 0.5, 1) infinite;
}

@keyframes cart-badge-ping-12345 {
    0% {
        transform: scale(1);
        opacity: 0.9;
    }
    70% {
        transform: scale(2.1);
        opacity: 0;
    }
    100% {
        transform: scale(2.4);
        opacity: 0;
    }
}

/* ===== SCHWARZE NAVIGATION ===== */
.nav-exact {
    background: #111318;
    border-bottom: 1px solid #181a20;
    position: relative;
}
.nav-exact .container-exact {
    display: flex;
    align-items: center;
    justify-content: center; /* Menübereich zentriert innerhalb der Nav-Leiste */
    gap: 30px;
}
.cat-toggle-exact {
    background: #2a2a2a;
    padding: 12px 20px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 4px;
}
.cat-toggle-exact small {
    display: block;
    font-size: 11px;
    color: rgba(255,255,255,0.6);
    font-weight: normal;
}
.nav-menu-exact {
    display: flex;
    gap: 5px;
    flex: 1;
    justify-content: center;
    height: 34px;
}
.nav-menu-exact a {
    color: rgba(255,255,255,0.9);
    padding: 8px;
    display: block;
    font-size: 12px;
    font-weight: 500;
    position: relative;
    transition: background-color 0.15s ease, color 0.15s ease;
}
.nav-menu-exact a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 0;
    background: transparent; /* kein sichtbarer Bottom-Border-Effekt mehr */
    border-radius: 999px;
}
.nav-menu-exact a:hover {
    color: #ffc107;
    background-color: #1a1d23; /* leicht heller als Hauptnav-Hintergrund */
}
.special-offer-exact {
    background: #ffd600 !important;
    color: #1b1b1b !important;
    padding: 8px 20px !important;
    border-radius: 20px;
    font-weight: 700;
}

/* ===== MEGA-MENU KATEGORIEN ===== */
.mega-menu-exact {
    position: absolute;
    left: 0;
    right: 0;      /* nimmt komplette Breite von .nav-exact ein */
    top: 100%;
    background: #111318eb;
    border-top: 1px solid #e0e0e000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0);
    display: none;
    z-index: 50;
    border-bottom: 1px solid #ffcd00;
}
.nav-cat-item-exact {
    position: static; /* Mega-Menü an .nav-exact ausrichten, nicht am einzelnen <li> */
}
/* Hover-Verzögerung wird per JavaScript gesteuert */
.nav-cat-item-exact.mega-active-12345 .mega-menu-exact {
    display: block;
    z-index: 200;
    animation: megaMenuFadeIn 0.2s ease-out;
}

@keyframes megaMenuFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.mega-menu-inner-exact {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
    padding: 18px 40px 22px;
    max-width: 100vw;
    margin: 0 auto;
    color: #ffffff;
  }
.mega-column-exact {
    border-right: 1px solid #f0f0f000;
    padding: 0 10px;
}
.mega-column-exact:last-child {
    border-right: none;
}
.mega-cat-header-exact {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
}
.mega-cat-icon-exact {
    width: 18px;
    height: 18px;
    object-fit: contain;
}
.mega-cat-header-exact a {
    font-weight: 700;
    font-size: 13px;
    color: #d4a500;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.mega-subcat-exact {
    margin-bottom: 8px;
}
.mega-subcat-title-exact {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 2px;
    padding: 1px 4px;
    border-radius: 2px;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.mega-subcat-title-exact-element-cat{
    font-weight: 600 !important;
    color: #dbeb00 !important;
}
.mega-products-exact {
    list-style: none;
    margin: 0;
    padding: 0 0 0 6px;
}
.mega-products-exact li a {
    display: block;
    font-size: 11px;
    color: rgba(255,255,255,0.85);
    padding: 1px 4px;
    border-radius: 2px;
    transition: background-color 0.15s ease, color 0.15s ease;
}
.mega-products-exact li a:hover {
    color: #ffd600;
    background: rgba(255,255,255,0.06); /* etwas helleres Hover-Highlight ohne Border */
}
.nav-cat-icon-exact {
    width: 18px;
    height: 18px;
    object-fit: contain;
    margin-right: 6px;
    vertical-align: middle;
}
.nav-cat-label-exact {
    vertical-align: middle;
}
.nav-cat-caret-exact {
    margin-left: 3px;
    font-size: 10px;
    opacity: 0.7;
}

/* ===== HERO ===== */
.hero-exact { padding: 0; background: #0a0a0a; }
.hero-hidden-12345 { display: none; }
.hero-main-exact {
    position: relative;
    padding: 80px 60px;
    min-height: 450px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-overlay-12345 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(255,214,0,0.1) 0, transparent 50%),
                radial-gradient(circle at 90% 10%, rgba(0,255,255,0.12) 0, transparent 55%),
                linear-gradient(135deg, rgba(0,0,0,0.85), rgba(0,0,0,0.7));
    z-index: 0;
    pointer-events: none;
}
.hero-background-image-12345 img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.hero-main-exact .container-exact {
    position: relative;
    z-index: 1;
}
.hero-content-exact { position: relative; z-index: 2; color: #fff; }
.hero-content-exact h1 {
    font-size: 16px;
    font-weight: 400;
    margin: 10px 0;
    text-transform: uppercase;
}
.hero-content-exact h2 {
    font-size: 42px;
    font-weight: 700;
    margin: 15px 0;
    color: #ffd600;
    line-height: 1.2;
}
.hero-badge-exact {
    background: #ffd600;
    color: #1b1b1b;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 15px;
}
.btn-hero-exact {
    background: linear-gradient(90deg, #ffd600 0%, #ffb800 100%);
    color: #1b1b1b;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 700;
    display: inline-block;
    margin-top: 20px;
}

/* ===== ICON-BAR ===== */
.icon-bar-exact {
    background: linear-gradient(90deg, #111318 0%, #111318 45%, #111318 100%);
    color: #fff;
    padding: 15px 0;
    border-top: 1px solid #181a20;
}
.icon-bar-grid-exact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
}
.icon-item-exact { display: flex; gap: 15px; align-items: flex-start; }
.icon-item-exact .material-icons { font-size: 40px; color: #ffd600; }
.icon-item-exact strong { display: block; margin-bottom: 5px; font-size: 14px; }
.icon-item-exact p { font-size: 12px; color: rgba(255,255,255,0.7); margin: 0; }

/* ===== PROMO BANNERS - Modern & Eyecatchy ===== */
.promo-banners-exact { 
    padding: 40px 0; 
    background: linear-gradient(180deg, #f7f7f7 0%, #ffffff 100%);
}
.promo-banners-grid-exact { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 30px; 
}
.promo-banner-exact {
    position: relative;
    min-height: 220px; /* Fix für CLS: stabile Höhe reservieren */
    background-size: cover;
    background-position: center;
    padding: 46px 38px;
    border-radius: 0px;
    color: #1b1b1b;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid rgba(255,255,255,0.3);
}

/* Windows Banner mit Hintergrundbild */
.promo-banner-windows {
    background-image: url('/images/win_box.webp');
}

/* Fallback für Browser ohne WebP-Support */
.no-webp .promo-banner-windows {
    background-image: url('/images/win_box.png');
}

/* Office Banner mit optimiertem WebP-Hintergrundbild */
.promo-banner-office {
    background-image: url('/images/box_office.webp');
}

/* Fallback für Browser ohne WebP-Support – JPEG */
.no-webp .promo-banner-office {
    background-image: url('/images/box_office.jpg');
}
.promo-banner-exact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    transition: opacity 0.4s ease;
}
.promo-banner-exact:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}
.promo-banner-exact:hover::before {
    opacity: 0.85;
}
.promo-banner-content-exact {
    position: relative;
    z-index: 2;
}
.promo-banner-content-exact h3 {
    font-size: 30px;
    margin-bottom: 15px;
    font-weight: 800;
    color: #f0f0f0;
    text-shadow: 1px 0px 10px rgb(0, 0, 0);
}
.promo-banner-content-exact p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 24px;
    color: #fff;
    font-weight: 600;
    padding: 5px;
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}
.btn-promo-exact {
    background: linear-gradient(135deg, #ffd600 0%, #ff9800 100%);
    color: #1b1b1b;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(255, 214, 0, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
}
.btn-promo-exact:hover {
    box-shadow: 0 8px 25px rgba(255, 214, 0, 0.6);
    background: linear-gradient(135deg, #ffed4e 0%, #ffb347 100%);
}

/* ===== PRODUKTREIHEN ===== */
.product-section-exact { padding: 50px 0; background: #fff; }
.product-section-exact:nth-of-type(even) { background: #fff; }
.section-header-exact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}
.section-header-exact h2 { font-size: 28px; font-weight: 700; }
.link-more-exact { color: #333; font-weight: 600; }

/* ===== PRODUKTKARTEN ===== */
.product-grid-exact {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 18px;
}
.product-grid-exact + .product-grid-exact {
    margin-top: 25px;
}
.product-card-exact {
    background: #fff;
    border: 1px solid #e3e3e3;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}
.product-card-exact:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    border: 1px solid #b3b3b3;
}
.product-badge-sale {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ff4444;
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    z-index: 10;
}
.product-image-exact {
    width: 100%;
    padding-top: 100%;
    position: relative;
    background: #fafafa;
    border-bottom: 1px solid #f0f0f0;
}
.product-image-exact img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
  }
.product-info-exact {
    padding: 18px 15px;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.product-rating-exact {
    display: flex;
    align-items: center;
    gap: 3px;
    margin-bottom: 10px;
}
.star-exact { font-size: 16px; color: #ffd600; }
.rating-count-exact { font-size: 13px; color: #888; margin-left: 6px; }
.product-info-exact h3 {
    font-size: 14px;
    margin: 0 0 8px 0;
    font-weight: 600;
    color: #1b1b1b;
    line-height: 1.4;
    min-height: 80px;
}
.product-sku-exact {
    font-size: 11px;
    color: #555;
    margin-bottom: 12px;
    text-transform: uppercase;
    min-height: 16px;
}
.product-price-exact {
    font-size: 25px;
    font-weight: 700;
    color: #071a46;
    margin-bottom: 15px;
    min-height: 28px;
    display: flex;
    align-items: center;
  }
.price-old-exact {
    text-decoration: line-through;
    color: #999;
    font-size: 16px;
    font-weight: 400;
    margin-right: 8px;
}
.btn-cart-exact {
    width: 100%;
    background: #151821;
    color: #fff;
    padding: 12px 15px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s;
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn-cart-exact:hover { background: #000; }

/* ===== KATEGORIEN/PRODUKTE-SEITE - WooCommerce Style ===== */
.woo-categories-page-12345,
.woo-products-page-12345 {
    padding: 20px 0;
    max-width: 1440px;
    margin: 0 auto;
}

/* Toolbar */
.woo-toolbar-12345 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 18px;
    background: #f7f7f7;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    margin-bottom: 20px;
    gap: 15px;
    flex-wrap: wrap;
}

.woo-toolbar-left-12345,
.woo-toolbar-right-12345 {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* Filter Dropdown */
.woo-filter-dropdown-12345 {
    position: relative;
}

.woo-filter-btn-12345 {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 3px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s;
}

.woo-filter-btn-12345:hover {
    background: #f9f9f9;
    border-color: #999;
}

.woo-filter-btn-12345 .material-icons {
    font-size: 18px;
}

.woo-filter-menu-12345 {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 10px;
    min-width: 220px;
    z-index: 100;
    display: none;
}

.woo-filter-menu-12345.active-12345 {
    display: block;
}

.woo-filter-option-12345 {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 8px;
    cursor: pointer;
    font-size: 13px;
    transition: background 0.2s;
}

.woo-filter-option-12345:hover {
    background: #f5f5f5;
}

.woo-filter-option-12345 input[type="checkbox"] {
    cursor: pointer;
}

/* Results Count */
.woo-results-count-12345 {
    font-size: 13px;
    color: #666;
}

.woo-results-count-12345 strong {
    color: #333;
    font-weight: 600;
}

/* Sortierung & Limit */
.woo-sort-12345,
.woo-limit-12345 {
    display: flex;
    align-items: center;
    gap: 8px;
}

.woo-sort-12345 label,
.woo-limit-12345 label {
    font-size: 13px;
    color: #666;
    font-weight: 500;
}

.woo-select-12345 {
    padding: 6px 10px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-size: 13px;
    background: #fff;
    cursor: pointer;
    transition: border-color 0.2s;
}

.woo-select-12345:hover {
    border-color: #999;
}

.woo-select-12345:focus {
    outline: none;
    border-color: #151821;
}

/* View Toggle */
.woo-view-toggle-12345 {
    display: flex;
    gap: 2px;
    border: 1px solid #ddd;
    border-radius: 3px;
    overflow: hidden;
}

.woo-view-btn-12345 {
    padding: 6px 10px;
    border: none;
    background: #fff;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.woo-view-btn-12345:hover {
    background: #f5f5f5;
}

.woo-view-btn-12345.active-12345 {
    background: #151821;
    color: #fff;
}

.woo-view-btn-12345 .material-icons {
    font-size: 20px;
}

/* Categories Grid */
.woo-categories-grid-12345 {
    display: grid;
    gap: 20px;
    margin-top: 20px;
}

/* Grid View (Default) */
.woo-categories-grid-12345.woo-view-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}

/* List View */
.woo-categories-grid-12345.woo-view-list {
    grid-template-columns: 1fr;
}

/* Category Card */
.woo-category-card-12345 {
    display: block;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.2s;
}

.woo-category-card-12345:hover {
    border-color: #151821;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Card Image */
.woo-card-image-12345 {
    position: relative;
    width: 100%;
    padding-top: 60%;
    background: #f5f5f5;
    overflow: hidden;
}

.woo-card-image-12345 img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.woo-placeholder-image-12345 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f5f5 0%, #e5e5e5 100%);
}

.woo-placeholder-image-12345 .material-icons {
    font-size: 48px;
    color: #999;
}

.woo-product-count-badge-12345 {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(21, 24, 33, 0.9);
    color: #fff;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
}

/* Card Content */
.woo-card-content-12345 {
    padding: 15px;
}

.woo-card-title-12345 {
    margin: 0 0 8px 0;
    font-size: 16px;
    font-weight: 600;
    color: #151821;
    line-height: 1.3;
}

.woo-card-description-12345 {
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
    color: #666;
}

/* List View Anpassungen */
.woo-categories-grid-12345.woo-view-list .woo-category-card-12345 {
    display: flex;
    flex-direction: row;
}

.woo-categories-grid-12345.woo-view-list .woo-card-image-12345 {
    width: 200px;
    padding-top: 0;
    height: 140px;
    flex-shrink: 0;
}

.woo-categories-grid-12345.woo-view-list .woo-card-content-12345 {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Responsive */
@media (max-width: 992px) {
    .woo-toolbar-12345 {
        flex-direction: column;
        align-items: stretch;
    }
    
    .woo-toolbar-left-12345,
    .woo-toolbar-right-12345 {
        justify-content: space-between;
    }
    
    .woo-categories-grid-12345.woo-view-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .woo-toolbar-left-12345,
    .woo-toolbar-right-12345 {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    
    .woo-results-count-12345 {
        text-align: center;
    }
    
    .woo-categories-grid-12345.woo-view-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    
    .woo-categories-grid-12345.woo-view-list .woo-category-card-12345 {
        flex-direction: column;
    }
    
    .woo-categories-grid-12345.woo-view-list .woo-card-image-12345 {
        width: 100%;
        padding-top: 60%;
        height: auto;
    }
}

/* ===== PRODUKTE GRID (für /categories mit Produkten) ===== */
.woo-products-grid-12345 {
    display: grid;
    gap: 20px;
    margin-top: 20px;
}

.woo-products-grid-12345.woo-view-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

.woo-products-grid-12345.woo-view-list {
    grid-template-columns: 1fr;
}

/* Produkt-Karte */
.woo-product-card-12345 {
    display: block;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.2s;
    position: relative;
}

.woo-product-card-12345:hover {
    border-color: #cacaca;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Produktbild */
.woo-product-image-12345 {
    position: relative;
    width: 100%;
    padding-top: 75%;
    background: #f5f5f5;
    overflow: hidden;
    display: block;
    text-decoration: none;
}

.woo-product-image-12345 img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Badges */
.woo-sale-badge-12345 {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #e74c3c;
    color: #fff;
    padding: 4px 10px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 700;
    z-index: 10;
}

.woo-new-badge-12345 {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #27ae60;
    color: #fff;
    padding: 4px 10px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 700;
    z-index: 10;
}

/* Produkt-Content */
.woo-product-content-12345 {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.woo-product-rating-12345 {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 14px;
}

.woo-product-rating-12345 .star-exact {
    color: #ffd600;
}

.woo-product-rating-12345 .rating-count-exact {
    font-size: 12px;
    color: #888;
    margin-left: 4px;
}

.woo-product-title-12345 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #151821;
    line-height: 1.4;
    min-height: 75px;
}

.woo-product-sku-12345 {
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
}

.woo-product-price-12345 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 5px 0;
}

.woo-price-old-12345 {
    text-decoration: line-through;
    color: #999;
    font-size: 14px;
}

.woo-price-current-12345 {
    font-size: 20px;
    font-weight: 700;
    color: #151821;
}

.woo-add-to-cart-btn-12345 {
    width: 100%;
    padding: 10px 15px;
    background: #151821;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: auto;
}

.woo-add-to-cart-btn-12345:hover {
    background: #000;
}

.woo-add-to-cart-btn-12345 .material-icons {
    font-size: 18px;
}

.woo-stock-status-12345 {
    position: absolute;
    bottom: 8px;
    right: 8px;
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    padding: 2px 2px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 10;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  }

.woo-stock-status-12345 .material-icons {
    font-size: 14px;
}

.woo-stock-status-12345.in-stock-12345 {
    background: rgba(212, 237, 218, 0.45);
    color: #15571f;
    border: 1px solid #c3e6cb;
}

.woo-stock-status-12345.out-of-stock-12345 {
    background: rgba(248, 215, 218, 0.95);
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Listen-Ansicht */
.woo-products-grid-12345.woo-view-list .woo-product-card-12345 {
    display: flex;
    flex-direction: row;
}

.woo-products-grid-12345.woo-view-list .woo-product-image-12345 {
    width: 200px;
    padding-top: 0;
    height: 200px;
    flex-shrink: 0;
}

.woo-products-grid-12345.woo-view-list .woo-product-content-12345 {
    flex: 1;
}

/* Keine Produkte */
.woo-no-products-12345 {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.woo-no-products-12345 .material-icons {
    font-size: 64px;
    color: #ccc;
    margin-bottom: 15px;
}

.woo-no-products-12345 p {
    font-size: 16px;
    margin: 15px 0;
}

/* Pagination */
.woo-pagination-12345 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.woo-page-btn-12345 {
    padding: 8px 12px;
    border: 1px solid #ddd;
    background: #fff;
    color: #333;
    text-decoration: none;
    border-radius: 3px;
    font-size: 14px;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 4px;
}

.woo-page-btn-12345:hover {
    background: #f5f5f5;
    border-color: #999;
}

.woo-page-btn-12345.active-12345 {
    background: #151821;
    color: #fff;
    border-color: #151821;
}

.woo-page-btn-12345 .material-icons {
    font-size: 18px;
}

.woo-page-dots-12345 {
    padding: 8px 4px;
    color: #999;
}

/* Kategorie-Select spezielles Styling */
.woo-category-select-12345 {
    min-width: 200px;
    font-weight: 500;
}

/* Responsive für Produkte */
@media (max-width: 992px) {
    .woo-products-grid-12345.woo-view-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }
}

@media (max-width: 768px) {
    .woo-products-grid-12345.woo-view-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .woo-products-grid-12345.woo-view-list .woo-product-card-12345 {
        flex-direction: column;
    }
    
    .woo-products-grid-12345.woo-view-list .woo-product-image-12345 {
        width: 100%;
        padding-top: 75%;
        height: auto;
    }
    
    .woo-pagination-12345 {
        font-size: 13px;
    }
    
    .woo-page-btn-12345 {
        padding: 6px 10px;
    }
}
/* ===== NEU EINGETROFFEN ===== */
.new-arrivals-exact { padding: 50px 0; background: #f7f7f7; }
.new-arrivals-exact h2 { font-size: 28px; margin-bottom: 30px; }
.arrivals-slider-exact { position: relative; }
.arrivals-track-exact {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 0;
    scrollbar-width: none;  /* Firefox */
    -ms-overflow-style: none;  /* IE/Edge */
}

.arrivals-track-exact::-webkit-scrollbar {
    display: none;  /* Chrome, Safari, Opera */
}

/* Einheitliche Kartengröße & Button-Ausrichtung */
.arrival-card-exact {
    width: 220px;
    min-width: 220px;
    max-width: 220px;
    background: #fff;
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.arrival-card-exact picture {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 10px;
    background: #fafafa;
    border-radius: 8px;
  }

.arrival-card-exact img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.arrival-card-exact h3,
.arrival-card-exact h4 {
    font-size: 14px;
    margin: 8px 0;
    min-height: 60px; /* genug Platz für 2–3 Zeilen Titel */
    display: flex;
    align-items: center;
    justify-content: center;
}

.arrival-card-exact .product-rating-exact {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2px;
    margin: 5px auto;
    min-height: 20px;
    text-align: center;
    width: 100%;
}

.arrival-card-exact .product-rating-exact .star-exact {
    font-size: 16px;
}

.arrival-card-exact .product-rating-exact .review-count-exact {
    font-size: 11px;
    margin-left: 4px;
}

.price-exact {
    font-size: 18px;
    font-weight: 700;
    margin: 10px 0;
    min-height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-cart-mini-exact {
    width: 100%;
    background: #1b1b1b;
    color: #fff;
    padding: 10px 8px;
    border-radius: 4px;
    font-size: 12px;
    margin-top: auto;          /* Button immer nach unten schieben */
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.slider-nav-exact {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    width: 40px;
    height: 40px;
    border-radius: 0%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  }
.slider-nav-exact.prev-exact { left: -20px; z-index: 999; }
.slider-nav-exact.next-exact { right: -20px; }

/* ===== REVIEWS ===== */
.reviews-exact { padding: 50px 0; }
.reviews-header-exact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}
.trust-rating-exact {
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 10px 0;
}
.trust-rating-exact .material-icons { color: #ffd600; font-size: 20px; }
.btn-secondary-exact {
    background: #fff;
    border: 2px solid #ffd600;
    color: #1b1b1b;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
}
.reviews-slider-exact { position: relative; }
.reviews-track-exact { display: flex; gap: 20px; overflow-x: auto; }
.review-card-exact {
    min-width: 280px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px;
}
.review-avatar-exact {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}
.review-rating-exact { display: flex; gap: 2px; margin-bottom: 10px; }

/* ===== HILFE ===== */
.help-section-exact {
    padding: 50px;
    background: linear-gradient(150deg,#26754524,#1398e81c);
    border-bottom: 1px solid #bdbdbd;
    border-top: 1px solid #bdbdbd;
}
.help-grid-exact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.help-illustration-exact img {
    width: 100%;
    max-width: 600px;
    height: auto;
    aspect-ratio: 600/508;
}
.help-content-exact h2 { font-size: 32px; margin-bottom: 20px; }
.help-cards-exact { display: grid; gap: 20px; margin-top: 30px; }
.help-card-exact {
    display: flex;
    gap: 15px;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    transition: box-shadow 0.2s ease, transform 0.2s ease, background 0.3s ease;
    text-decoration: none;
    color: inherit;
}
.help-card-exact:hover {
    background: linear-gradient(135deg, rgba(2, 168, 219, 0.15), rgba(242, 238, 14, 0.12));
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transform: translateY(-2px);
    border: 1px solid #13a9e14f;
}
.help-card-exact .material-icons { font-size: 40px; color: #ffd600; }

/* ===== FAQ ===== */
.faq-section-exact {
    padding: 20px 0 25px;
    background: #ffffff;
    border-top: 1px solid #ececec;
}
.faq-heading-exact {
    font-size: 26px;
    margin: 0 0 26px 0;
    font-weight: 600;
    color: #1b1b1b;
    text-align: center;
}
.faq-list-exact {
    max-width: 900px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.6;
    color: #555555;
}
.faq-item-exact {
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    background: #f9fafb;
    margin-bottom: 6px;
    overflow: hidden;
}
.faq-toggle-exact {
    width: 100%;
    border: none;
    background: #151821;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 25px;
    cursor: pointer;
    font-weight: 600;
    color: #fff;
    text-align: left;
}
.faq-toggle-exact:focus-visible {
    outline: 2px solid #ffd600;
    outline-offset: 2px;
}
.faq-icon-exact {
    font-weight: 700;
    font-size: 16px;
    color: #9ca3af;
    transition: transform 0.2s ease, color 0.2s ease;
}
.faq-item-exact.open .faq-icon-exact {
    transform: rotate(45deg);
    color: #4b5563;
}
.faq-answer-exact {
    max-height: 0;
    overflow: hidden;
    padding: 0 10px;
    border-top: 1px solid transparent;
    transition: max-height 0.25s ease, border-top-color 0.25s ease;
}
.faq-item-exact.open .faq-answer-exact {
    border-top-color: #e0e0e0;
    padding-top: 4px;
    padding-bottom: 6px;
}
.faq-answer-exact p {
    margin: 0;
    font-size: 13px;
    color: #4b5563;
}

/* ===== GAMES ===== */
.games-section-exact { padding: 50px 0; }
.games-banners-exact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}
.game-banner-exact {
    background-size: cover;
    background-position: center;
    padding: 60px 40px;
    border-radius: 12px;
    color: #fff;
    min-height: 300px;
    background: linear-gradient(135deg, rgba(0,0,0,0.6), rgba(0,0,0,0.4)), url('/images/game-strategy.jpg');
}
.game-banner-exact:last-child {
    background: linear-gradient(135deg, rgba(0,0,0,0.6), rgba(0,0,0,0.4)), url('/images/game-battlefield.jpg');
}
.game-banner-content-exact h3 { font-size: 28px; margin-bottom: 15px; }
.btn-game-exact {
    background: #ffd600;
    color: #1b1b1b;
    padding: 12px 25px;
    border-radius: 4px;
    font-weight: 700;
    display: inline-block;
}

/* ===== PRODUKTDETAILSEITE ===== */
.product-detail-page-12345 {
    padding: 5px 0;
    background: #ffffff;
}
.product-header-row-12345 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 5px;
  margin-bottom: 25px;
  margin-top: 0px;
}

.product-header-left-12345 {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.product-header-meta-12345 {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 3px;
}
.product-liveinfo-12345 {
    font-size: 11px;
    color: #777;
}
.product-header-price-12345,
.price-value-12345 {
    font-size: 50px;
    font-weight: 700;
    color: #222;
}
.product-header-price-12345 {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 6px;
    justify-content: flex-end;
}
.product-header-price-12345 .price-old-12345 {
    font-size: 13px;
    color: #999;
    text-decoration: line-through;
    margin-left: 4px;
}
.product-header-price-12345 .price-badge-12345 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 2px 6px;
    border-radius: 4px;
    background: #e74c3c;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    margin-left: 4px;
}
.price-tax-12345 {
    font-size: 11px;
    color: #777;
    margin-top: 2px;
}
.product-detail-12345 {
    display: grid;
    grid-template-columns: 340px minmax(0, 1fr);
    gap: 15px;
    background: #fff;
    border: 1px solid #e0e0e0;
    padding: 5px;
}
.breadcrumb-12345 {
    font-size: 11px;
    color: #777;
    margin-bottom: 5px;
}
.breadcrumb-12345 a {
    color: #555;
}
.breadcrumb-12345 span {
    margin: 0 2px;
}
.product-cta-row-12345 {
    display: grid;
    grid-template-columns: 340px minmax(0, 1fr);
    align-items: center;
    padding: 5px 5px 5px 5px;
    border-bottom: 0px solid #e0e0e0;
    margin-bottom: 5px;
}
.product-cta-right-12345 {
    display: flex;
    justify-content: flex-end;
}
.product-media-12345 {
    border-right: 1px solid #f0f0f0;
    padding-right: 5px;
}
.main-image-wrapper-12345 {
    border: 1px solid #dee2e6;
    background: #e7e7e7;
    padding: 0;
    border-radius: 3px;
    width: 600px;
    height: 485px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    border-top: 3px solid #ffe233;
}
.lqip-wrapper-12345 {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.main-image-12345 {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    display: block;
}
.product-gallery-12345 {
    position: relative;
}
.thumbnails-12345 {
    position: absolute !important;
    left: 6px;
    bottom: 6px;
    display: flex;
    gap: 4px;
    padding: 3px 4px;
    background: rgba(255,255,255,0.9);
    border-radius: 4px;
}
.thumbnail-12345 {
    width: 50px;
    height: 50px;
    border: 1px solid #e0e0e0;
    object-fit: cover;
    cursor: pointer;
}
.thumbnail-12345.active-12345 {
    border-color: #ffd600;
}
.product-info-12345 {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.product-title-12345 {
    font-size: 30px;
    font-weight: 600;
    margin: 0;
}
.product-meta-top-12345 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    color: #666;
}
.availability-12345 {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    color: #2e7d32;
    font-weight: 500;
}
.availability-12345.unavailable-12345 {
    color: #c62828;
}
.product-summary-box-12345 {
    border: 1px solid #e0e0e0;
    background: #fafafa;
    padding: 5px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.product-summary-box-12345 .price-12345 {
    font-size: 18px;
    font-weight: 700;
    color: #000;
}
.product-summary-box-12345 .price-old-12345 {
    font-size: 13px;
    color: #999;
    text-decoration: line-through;
    margin-left: 5px;
}
.product-summary-box-12345 .price-badge-12345 {
    display: inline-block;
    margin-left: 5px;
    background: #ff4444;
    color: #fff;
    padding: 2px 4px;
    font-size: 11px;
    border-radius: 3px;
}
.add-to-cart-form-12345 {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
}
.qty-wrapper-12345 {
    display: inline-flex;
    align-items: center;
    gap: 0;
    margin-left: 3px;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}
.qty-btn-12345 {
    width: 36px;
    height: 36px;
    border: 0;
    background: #fff;
    color: #333;
    border-radius: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s;
  }
  .qty-btn-12345:hover {
    background: #f5f5f5;
  }
  .qty-btn-12345:active {
    background: #e8e8e8;
  }
.add-to-cart-form-12345 input[type="number"] {
    width: 45px;
    height: 36px;
    padding: 0;
    border: 0;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    border-radius: 0;
    font-size: 14px;
    line-height: 36px;
    text-align: center;
    background: #fff;
    box-sizing: border-box;
    -moz-appearance: textfield;
  }
.add-to-cart-form-12345 input[type="number"]::-webkit-outer-spin-button,
.add-to-cart-form-12345 input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.add-to-cart-form-12345 .btn-12345 {
    padding: 10px 10px;
    background: #151821;
    color: #fff;
    border-radius: 3px;
    font-size: 13px;
}
.add-to-cart-form-12345 .btn-12345:hover {
    background: #000;
}
.add-to-cart-form-12345 .btn-buy-now-12345 {
    background: #ffc439;
    color: #000;
    margin-left: 0px;
}
.add-to-cart-form-12345 .btn-buy-now-12345:hover {
    background: #ffc439;
}
.product-hints-12345 {
    font-size: 12px;
    color: #444;
}
.product-hints-12345 ul {
    margin-top: 3px;
    padding-left: 15px;
    list-style: disc;
}
.product-meta-grid-12345 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 5px;
    margin-top: 5px;
}
.meta-card-12345 {
    display: flex;
    align-items: flex-start;
    gap: 5px;
    font-size: 12px;
    color: #555;
}
.meta-card-12345 .material-icons {
    font-size: 16px;
    color: #999;
}
.label-12345 {
    font-size: 11px;
    text-transform: uppercase;
    color: #888;
}
.product-main-row-12345 {
    display: grid;
    grid-template-columns: 600px minmax(0, 1fr);
    gap: 15px;
    margin-top: 5px;
}
.product-main-short-12345 {
    font-size: 15px;
    color: #444;
}

.short-description-modern {
    background: #fbfbfb;
    border-radius: 1px;
    padding: 10px;
    margin-bottom: 5px;
    border-top: 3px solid #ffe233;
    min-height: 224px;
}

.short-description-modern .short-description-modern {
    background: none;
    border: 0;
    padding: 0;
    margin: 0;
    min-height: 0;
}

.short-description-modern .software-template-2025 {
    background: none;
    border: 0;
    padding: 0;
    margin: 0;
}
.product-price-bar-12345 {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 6px;
}
.product-cta-inline-12345 {
    display: flex;
    align-items: center;
    gap: 6px;
}
.product-info-row-12345 {
    display: grid;
    grid-template-columns: minmax(0,1.1fr) minmax(0,1.4fr) minmax(0,1.2fr);
    gap: 20px;
    align-items: flex-start;
    margin-top: 10px;
    padding: 16px 20px;
    font-size: 13px;
    color: #0f172a;
    background: #f7f7f8;
    position: relative;
    overflow: hidden;
    border-top: 3px solid #ffe233;
}

.flag-pill-12345 {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    padding: 2px 6px;
    border-radius: 10px;
    background: #f3f5f6;
    font-size: 11px;
    margin-right: 4px;
}
.flag-emoji-12345 {
    font-size: 12px;
}
.flag-code-12345 {
    color: #444;
}
.product-links-12345 ul {
    list-style: disc;
    padding-left: 18px;
    margin: 0;
}
.product-links-12345 li {
    margin-bottom: 2px;
}
.product-links-12345 li:last-child {
    margin-bottom: 0;
}
.product-links-12345 a {
    font-size: 11px;
    color: #0054a6;
    transition: color 0.15s ease;
}
.product-links-12345 a:hover {
    color: #2d2d2d;
    text-decoration: underline;
}
.product-status-12345,
.product-info-middle-12345,
.product-links-12345 {
    padding: 4px 6px;
}
.product-status-12345 {
    border-right: 1px solid #eee;
}
.product-info-middle-12345 {
    border-right: 1px solid #eee;
    display: flex;
    flex-direction: column;
}
.product-info-middle-12345 etrusted-widget {
    margin-top: auto;
    padding-top: 15px;
}

/* Produktstatus: Label / Wert schön ausrichten */
.product-status-12345 p {
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 0;
}
.product-status-12345 p strong {
    display: inline-block;
    min-width: 120px;
}
.product-share-12345 > strong {
    display: inline-block;
    min-width: 112px;
}

/* Mittlere Spalte (Region / Plattform) ebenfalls ausrichten */
.product-info-middle-12345 p {
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 0;
}
.product-info-middle-12345 p strong {
    display: inline-block;
    min-width: 120px;
}

/* Icons für Regionen / Plattformen im Produktdetail */
.product-region-icons-12345,
.product-platform-icons-12345 {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 4px;
}
.product-region-item-12345,
.product-platform-item-12345 {
    display: inline-flex;
    align-items: center;
    gap: 2px;
}
.product-region-item-12345 img,
.product-platform-item-12345 img {
    height: 14px;
    width: auto;
}

/* Produkt teilen */
.product-share-12345 {
    margin-top: 4px;
    font-size: 11px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.product-share-links-12345 {
    margin-top: 3px;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}
.product-share-link-12345 {
    display: inline-flex;
    align-items: center;
    padding: 2px 6px;
    border-radius: 999px;
    border: 1px solid #e0e0e0;
    font-size: 10px;
    color: #444;
    background: #f9fafb;
    text-decoration: none;
}
.product-share-link-12345:hover {
    background: #f3f4f6;
    border-color: #d1d5db;
}

.product-share-more-12345 {
    margin-top: 0;
    font-size: 11px;
}
.product-share-more-12345 select {
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 7px;
    border: 1px solid #dee2e6;
    background: #ffffff;
}
.availability-success-12345 {
    color: #0b8a00;
    font-weight: 600;
}
.product-description-section-12345 {
    padding: 5px 0;
    border-top: 1px solid #fff;
    margin-top: 5px;
}
.product-description-section-12345 h2 {
    font-size: 18px;
    margin-bottom: 5px;
    padding-bottom: 3px;
    margin-top: 10px;
}

/* Thank-You-Page / Bestellung erfolgreich */
.thankyou-page-12345 {
    padding: 10px 0 20px;
}
.thankyou-shell-12345 {
    background: #ffffff;
    border-radius: 4px;
    border: 1px solid #e1e4e8;
    box-shadow: 0 1px 2px rgba(15,23,42,0.06);
    padding: 10px;
}
.thankyou-header-12345 {
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 8px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.thankyou-title-12345 {
    font-size: 14px;
    margin: 0 0 2px;
}
.thankyou-subtitle-12345 {
    margin: 0 0 4px;
    font-size: 12px;
    color: #6b7280;
}
.thankyou-order-12345 {
    margin: 0;
    font-size: 12px;
}
.thankyou-header-text-12345 {
    display: flex;
    flex-direction: column;
}
.thankyou-badge-12345 {
    width: 24px;
    height: 24px;
    border-radius: 999px;
    border: 1px solid #16a34a;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 12px;
    flex-shrink: 0;
}
.thankyou-content-12345 {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr);
    gap: 10px;
    margin-top: 8px;
}
.thankyou-section-title-12345 {
    font-size: 13px;
    margin: 0 0 5px;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 3px;
    display: flex;
    align-items: center;
    gap: 4px;
}
.thankyou-product-list-12345 {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.thankyou-product-item-12345 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #e5e7eb;
    border-radius: 3px;
    padding: 4px;
    background: #f9fafb;
}
.thankyou-product-main-12345 {
    display: flex;
    align-items: center;
    gap: 6px;
}
.thankyou-product-image-12345 {
    width: 40px;
    height: 40px;
    border-radius: 2px;
    object-fit: cover;
    border: 1px solid #e1e4e8;
}
.thankyou-product-text-12345 {
    font-size: 15px;
    color: #374151;
}
.thankyou-product-name-12345 {
    font-weight: 600;
    margin-bottom: 1px;
}
.thankyou-product-sku-12345,
.thankyou-product-qty-12345 {
    font-size: 12px;
    color: #6b7280;
}
.thankyou-product-price-12345 {
    text-align: right;
    font-size: 13px;
}
.thankyou-product-price-each-12345 {
    display: block;
    color: #6b7280;
}
.thankyou-product-price-total-12345 {
    display: block;
    font-weight: 600;
}
.thankyou-empty-12345 {
    font-size: 12px;
    color: #6b7280;
    margin: 4px 0;
}
.thankyou-actions-12345 {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}
.thankyou-action-secondary-12345 {
    font-size: 11px;
}
.thankyou-support-12345 {
    margin-top: 6px;
    font-size: 14px;
    color: #171e2b;
    font-weight: 600;
}
.thankyou-actions-12345 .btn-12345 {
    background-color: #151821;
    border-color: #151821;
    color: #ffffff;
    font-size: 11px;
    padding: 4px 8px;
    border-radius: 3px;
}
.thankyou-actions-12345 .btn-12345:hover,
.thankyou-actions-12345 .btn-12345:focus {
    background-color: #111318;
    border-color: #111318;
    color: #ffffff;
}
.product-description-body-12345 {
    font-size: 13px;
    line-height: 1.5;
    color: #444;
}
.product-related-12345 {
    padding: 5px 0 10px;
}
.product-related-12345 h2 {
    font-size: 14px;
    margin-bottom: 5px;
    border-bottom: 1px solid #ececec;
    padding-bottom: 3px;
    margin-top: 60px;
}
.product-related-12345 .product-grid-exact {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 15px;
}
.product-related-12345 .product-card-exact {
    border-radius: 4px;
}
.product-related-12345 .product-image-exact {
    padding-top: 90%;
}
.product-related-12345 .product-info-exact h3 {
    font-size: 12px;
}
.product-related-12345 .product-price-exact {
    font-size: 16px;
}
.product-info-panels-12345 {
    padding: 5px 0 10px;
    background: #ffffff;
}
.info-panels-grid-12345 {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 10px;
}
.info-panel-12345 {
    border: 1px solid #e0e0e0;
    padding: 5px;
    font-size: 13px;
    background: #f9f9f9;
}
.info-panel-primary-12345 {
    background: #222;
    color: #fff;
    border-color: #222;
}
.info-panel-primary-12345 h3 {
    font-size: 14px;
    margin-bottom: 5px;
}
.info-panel-primary-12345 p {
    font-size: 13px;
}

/* ===== FOOTER ===== */
.footer-exact {
    background: #1b1b1b;
    color: #bfbfbf;
    padding: 50px 0 0;
}
.footer-grid-exact {
    display: grid;
    grid-template-columns: 1fr 1fr 2fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #2a2a2a;
}
.footer-exact h3 { font-size: 16px; margin-bottom: 20px; color: #ffd600; }
.footer-exact ul { padding: 0; margin: 0; }
.footer-exact ul li { margin-bottom: 10px; }
.footer-exact a { color: rgba(255,255,255,0.7); font-size: 14px; }
.footer-exact a:hover { color: #ffd600; }
.footer-exact p {
    font-size: 13px;
    line-height: 1.6;
    color: inherit;
    margin: 8px 0;
}
.footer-contact-list-12345 {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-contact-list-12345 li {
    margin-bottom: 10px;
}
.footer-contact-list-12345 strong {
    color: #ffffff;
}
.footer-contact-list-12345 span {
    color: inherit;
}

/* ===== KONTAKTSEITE ===== */
.page-header-12345 {
    text-align: center;
    margin-bottom: 0;
    padding-top: 20px;
    padding-bottom: 40px;
    border-bottom: 2px solid #e5e7eb;
    background: #1a1d23f7;
}
.page-header-12345 h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px 0;
}
.page-header-12345 p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.contact-wrapper-12345 {
    padding: 40px 0 40px;
    background: #f5f5f5;
}
.contact-grid-12345 {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 25px;
    align-items: start;
}

/* Linke Spalte - Formular */
.contact-form-card-12345 {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.contact-form-card-12345 h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #111;
    border-bottom: 3px solid #ffd600;
    padding-bottom: 12px;
    display: inline-block;
}
.contact-form-12345 .form-row-12345 {
    margin-bottom: 18px;
    display: flex;
    flex-direction: column;
}
.contact-form-12345 label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
    order: -1;
}
.contact-form-12345 input[type="text"],
.contact-form-12345 input[type="email"],
.contact-form-12345 select,
.contact-form-12345 textarea {
    width: 100%;
    padding: 5px;
    border: 1px solid #b3b3b3;
    border-radius: 4px;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.2s ease;
    background: #ffffff;
    box-sizing: border-box;
}
.contact-form-12345 input[type="text"]:focus,
.contact-form-12345 input[type="email"]:focus,
.contact-form-12345 select:focus,
.contact-form-12345 textarea:focus {
    outline: none;
    border-color: #ffd600;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(255, 214, 0, 0.15);
}
.contact-form-12345 select {
    cursor: pointer;
    appearance: none;
    background-color: #fafafa;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 35px;
}
.contact-form-12345 textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.6;
}
.contact-form-12345 button[type="submit"] {
    margin-top: 10px;
    padding: 12px 30px;
    font-size: 15px;
    font-weight: 600;
    width: auto;
    background-color: #1b1b1b;
    color: #fff;
    border-radius: 7px;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
}
.contact-form-12345 button[type="submit"]:hover {
    background-color: #000000;
}
/* Captcha-Feld speziell */
.contact-form-12345 .form-row-12345 > div {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.contact-form-12345 .form-row-12345 > div span {
    font-size: 14px;
    color: #333;
    white-space: nowrap;
}
.contact-form-12345 .form-row-12345 > div input[type="text"] {
    width: 80px;
    flex-shrink: 0;
}

/* Rechte Spalte - Info */
.contact-info-card-12345 {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact-info-row-12345 {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.contact-info-row-12345:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}
.contact-info-row-12345 h2 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #111;
    display: flex;
    align-items: center;
    gap: 8px;
}
.contact-info-row-12345 h2::before {
    content: '';
    width: 4px;
    height: 20px;
    background: #ffd600;
    border-radius: 2px;
}
.contact-info-row-12345 p {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
    margin: 8px 0;
}
.contact-info-row-12345 a {
    color: #0066cc;
    text-decoration: none;
    font-weight: 500;
}
.contact-info-row-12345 a:hover {
    text-decoration: underline;
    color: #0052a3;
}
.contact-info-row-12345 .btn-primary-exact {
    display: inline-block;
    margin-top: 8px;
}

/* Alerts */
.alert-success-12345,
.alert-error-12345 {
    font-size: 13px;
    padding: 10px 12px;
    margin-bottom: 15px;
    border-radius: 4px;
    border-left: 4px solid;
}
.alert-success-12345 {
    background: #d4edda;
    border-color: #28a745;
    color: #155724;
}
.alert-error-12345 {
    background: #f8d7da;
    border-color: #dc3545;
    color: #721c24;
}
.alert-error-12345 ul {
    margin: 5px 0 0 20px;
    padding: 0;
}
.alert-error-12345 li {
    margin: 3px 0;
}

@media (max-width: 992px) {
    .contact-grid-12345 {
        grid-template-columns: 1fr;
    }
    .contact-info-card-12345 {
        order: -1;
    }
}

.social-icons-exact { display: flex; gap: 10px; margin-top: 15px; }
.social-icons-exact a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #2a2a2a;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer-bottom-exact {
    padding: 20px 0;
    text-align: center;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}
.footer-bottom-inner-12345 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
.footer-payment-icons-12345 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
}
.footer-payment-icon-12345 {
    width: 53px;
    height: 28px;
    object-fit: contain;
    display: block;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    /* Container & Grundlayout */
    .container-exact {
        padding: 0 10px;
    }

    .hero-grid-exact,
    .promo-banners-grid-exact,
    .help-grid-exact,
    .games-banners-exact {
        grid-template-columns: 1fr;
    }

    .product-grid-exact {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 12px;
    }

    .footer-grid-exact {
        grid-template-columns: 1fr;
    }

    /* Utility-Bar: untereinander, weniger Abstand */
    .utility-bar-exact .container-exact {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
    .utility-left-exact,
    .utility-right-exact {
        width: 100%;
        justify-content: space-between;
        gap: 8px;
    }

    /* Header: Logo/Icons oben, Suche darunter */
    .header-exact .container-exact {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .search-exact input {
        padding: 8px 10px;
        font-size: 13px;
    }
    .search-exact button {
        padding: 0 10px;
    }
    .header-actions-exact {
        justify-content: flex-end;
        gap: 12px;
    }

    /* Navigation: Burger-artig mit horizontal scrollbarem Menü */
    .nav-exact .container-exact {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }
    .nav-menu-exact {
        display: flex;
        overflow-x: auto;
        padding-bottom: 4px;
    }

    /* Mega-Menü auf Mobile deaktivieren */
    .nav-cat-item-exact:hover .mega-menu-exact {
        display: none;
    }

    /* Hero kompakter */
    .hero-main-exact {
        padding: 36px 16px;
        min-height: 260px;
    }
    .hero-content-exact h1 {
        font-size: 16px;
    }
    .hero-content-exact h2 {
        font-size: 22px;
    }
    .hero-side-exact {
        margin-top: 16px;
        grid-template-columns: 1fr;
    }

    /* Slider für Mobile deaktivieren (Performance) */
    .reviews-slider-exact {
        display: none;
    }
    
    /* Arrivals Slider - nur Navigation-Buttons ausblenden */
    .arrivals-slider-exact .slider-nav-exact {
        display: none !important;
    }

    /* Portal/Checkout responsive */
    .checkout-shell-12345 {
        padding: 20px;
    }
    .checkout-header-row-12345 {
        margin-bottom: 30px;
        padding-bottom: 20px;
    }
    .checkout-page-12345 .checkout-title-12345 {
        font-size: 24px;
    }
    .checkout-subtitle-12345 {
        font-size: 14px;
    }
    .checkout-main-row-12345 {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .card-12345 {
        padding: 20px;
    }

    /* Promo-Banner untereinander, weniger Padding */
    .promo-banners-exact {
        padding: 24px 0;
    }
    .promo-banners-grid-exact {
        gap: 16px;
    }
    .promo-banner-exact {
        padding: 20px 14px;
        min-height: 180px; /* Mobile CLS-Fix: stabile Bannerhöhe */
    }

    /* Icon-Bar und Help-Section kompakter */
    .icon-bar-exact {
        padding: 15px 0;
    }
    .icon-bar-grid-exact {
        grid-template-columns: 1fr;
    }
    .help-grid-exact {
        gap: 18px;
    }
}

/* ===== PRODUCT DETAIL PAGE ===== */
.software-template-2025 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0 auto;
    border-top: 3px solid #ffe233;
    background-color: #f7f7f8;
    padding: 23px;
}

/* ===== CART PAGE ===== */
.cart-page-12345 .cart-title-12345 {
    font-size: 20px;
    font-weight: 600;
    margin: 15px 0;
}
.cart-content-12345 {
    display: grid;
    grid-template-columns: minmax(0, 1.8fr) minmax(280px, 0.8fr);
    gap: 15px;
}
.cart-items-12345 {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.cart-item-12345 {
    display: grid;
    grid-template-columns: 80px minmax(0, 1.4fr) 140px 130px 80px;
    gap: 8px;
    padding: 8px;
    border: 1px solid #dee2e6;
    border-radius: 3px;
    background: #fff;
    align-items: center;
}
.cart-item-image-12345 img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 3px;
}
.cart-item-details-12345 h3 {
    font-size: 14px;
    margin: 0 0 3px;
}
.cart-item-sku-12345 {
    font-size: 11px;
    color: #666;
    margin: 0;
}
.cart-item-quantity-12345 label {
    display: block;
    font-size: 11px;
    margin-bottom: 2px;
}
.cart-item-quantity-12345 input.quantity-input-12345 {
    width: 60px;
    height: 28px;
    padding: 0 6px;
    border: 1px solid #ccc;
    border-radius: 3px;
    font-size: 12px;
    box-sizing: border-box;
    text-align: center;
    -moz-appearance: textfield;
}
.cart-item-quantity-12345 input.quantity-input-12345::-webkit-outer-spin-button,
.cart-item-quantity-12345 input.quantity-input-12345::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.cart-item-price-12345 {
    text-align: right;
    font-size: 12px;
}
.price-single-12345 {
    color: #444;
}
.price-total-12345 {
    font-weight: 600;
    margin-top: 2px;
}
.cart-item-actions-12345 {
    text-align: right;
}
.btn-danger-12345.btn-small-12345 {
    font-size: 11px;
    padding: 4px 6px;
    background: #dc3545;
    color: #fff;
    border-radius: 3px;
}
.cart-summary-12345 {
    align-self: flex-start;
}
.summary-card-12345 {
    background: #fff;
    border-radius: 3px;
    border: 1px solid #dee2e6;
    padding: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}
.summary-card-12345 h3 {
    font-size: 14px;
    margin: 0 0 8px;
}
.summary-row-12345 {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    margin-bottom: 4px;
}
.summary-total-12345 {
    font-weight: 600;
    border-top: 1px solid #e0e0e0;
    padding-top: 4px;
    margin-top: 4px;
}
.summary-card-12345 .btn-12345 {
    display: inline-block;
    width: 100%;
    margin-top: 10px;
    padding: 7px 10px;
    font-size: 13px;
    border-radius: 3px;
    text-align: center;
    background: #151821;
    color: #fff;
}
.summary-card-12345 .btn-12345:hover {
    background: #000;
}
.summary-card-12345 .btn-secondary-12345 {
    display: inline-block;
    width: 100%;
    margin-top: 5px;
    padding: 6px 10px;
    font-size: 12px;
    border-radius: 3px;
    background: #f3f5f6;
    border: 1px solid #dee2e6;
    color: #333;
}
.summary-card-12345 .btn-secondary-12345:hover {
    background: #e2e5e8;
}
.empty-cart-12345 {
    margin: 20px 0;
    padding: 15px;
    border-radius: 3px;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    font-size: 13px;
}
.empty-cart-12345 p {
    margin: 0 0 8px;
}

/* ===== CHECKOUT PAGE ===== */
.checkout-page-12345 {
    padding: 10px 0 15px;
    background: #f7f7f7;
    margin-top: 10px;
  }
.checkout-shell-12345 {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    padding: 30px 40px 40px;
    max-width: 1200px;
    margin: 0 auto;
}
.checkout-header-row-12345 {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid #f0f0f0;
}
.checkout-page-12345 .checkout-title-12345 {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 15px;
    color: #1b1b1b;
}
.checkout-subtitle-12345 {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}
.checkout-main-row-12345 {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}
.checkout-column-left-12345,
.checkout-column-right-12345 {
    display: flex;
    flex-direction: column;
}
.card-12345 {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.checkout-summary-title-12345 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 20px;
    color: #1b1b1b;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}
.checkout-summary-text-12345 {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 12px;
}
.portal-footer-security-12345 {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e5e5e5;
    font-size: 12px;
    color: #777;
    text-align: center;
}
.portal-invoice-actions-12345 {
    margin-top: 20px;
}
.portal-info-box-12345 {
    display: flex;
    gap: 15px;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border: 1px solid #90caf9;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}
.portal-info-box-12345 .material-icons {
    font-size: 32px;
    color: #1976d2;
    flex-shrink: 0;
}
.portal-info-box-12345 strong {
    display: block;
    font-size: 16px;
    color: #1565c0;
    margin-bottom: 8px;
}
.portal-info-box-12345 p {
    font-size: 14px;
    color: #0d47a1;
    line-height: 1.6;
    margin: 0;
}
.checkout-error-12345 {
    background: linear-gradient(135deg, #fee 0%, #fdd 100%);
    border: 1px solid #fcc;
    border-radius: 6px;
    padding: 15px;
    margin-bottom: 20px;
    color: #c33;
    font-size: 14px;
    font-weight: 500;
}
.checkout-form-12345 {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
    gap: 12px;
}
.checkout-left-12345,
.checkout-right-12345 {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.checkout-section-12345 {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 3px;
    padding: 8px 10px;
    margin-bottom: 6px;
}
.checkout-section-12345 h2 {
    font-size: 14px;
    margin: 0 0 6px;
}
.form-row-12345 {
    display: flex;
    gap: 6px;
}
.form-group-12345 {
    display: flex;
    flex-direction: column;
    margin-bottom: 5px;
    font-size: 14px;
}
.form-group-12345 label {
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}
.form-group-12345 input,
.form-group-12345 select,
.form-group-12345 textarea {
    border: 2px solid #e5e5e5;
    border-radius: 6px;
    padding: 12px 16px;
    font-size: 14px;
    background: #fff;
    transition: all 0.2s ease;
}
.form-group-12345 input:hover,
.form-group-12345 select:hover,
.form-group-12345 textarea:hover {
    border-color: #d0d0d0;
}
.form-group-12345 input:focus,
.form-group-12345 select:focus,
.form-group-12345 textarea:focus {
    outline: none;
    border-color: #ffd600;
    box-shadow: 0 0 0 3px rgba(255, 214, 0, 0.1);
}
.form-actions-12345 {
    margin-top: 30px;
}
.form-actions-12345 .btn-12345 {
    width: 100%;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 700;
    background: linear-gradient(135deg, #ffd600 0%, #ff9800 100%);
    color: #1b1b1b;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 214, 0, 0.3);
}
.form-actions-12345 .btn-12345:hover {
    background: linear-gradient(135deg, #ffed4e 0%, #ffb347 100%);
    box-shadow: 0 6px 20px rgba(255, 214, 0, 0.4);
}
.form-group-12345 input[type="radio"],
.form-group-12345 input[type="checkbox"] {
    width: auto;
    padding: 0;
    border: none;
    box-shadow: none;
}

/* Checkout spezifische Form-Styles */
.checkout-section-12345 input[type="text"],
.checkout-section-12345 input[type="email"],
.checkout-section-12345 textarea,
.checkout-section-12345 select {
    width: 100%;
}
.checkout-section-12345 input[type="radio"],
.checkout-section-12345 input[type="checkbox"],
.checkout-summary-12345 input[type="checkbox"],
.checkout-summary-12345 input[type="radio"] {
    accent-color: #000;
    min-width: 18px;
    min-height: 18px;
    cursor: pointer;
}
.checkout-summary-12345 {
    align-self: flex-start;
    background: #fafbfc;
    border-radius: 3px;
    border: 1px solid #e3e5e8;
    padding: 8px 10px;
}
.checkout-summary-12345 h3 {
    font-size: 14px;
    margin: 0 0 6px;
}
.checkout-item-12345 {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    margin-bottom: 3px;
}
.checkout-item-main-12345 {
    display: flex;
    align-items: center;
    gap: 6px;
}
.checkout-item-image-12345 {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 3px;
}
.checkout-item-text-12345 {
    display: flex;
    flex-direction: column;
}
.checkout-item-name-12345 {
    font-size: 12px;
}
.checkout-item-qty-12345 {
    font-size: 11px;
    color: #666;
}
.checkout-item-price-12345 {
    font-weight: 600;
}
.checkout-summary-row-12345 {
    margin-top: 2px;
}
.checkout-tax-rate-12345 {
    font-size: 11px;
    color: #666;
    margin-left: 2px;
}

.ustid-feedback-12345 {
    font-size: 11px;
    margin-top: 2px;
}
.ustid-valid-12345 {
    color: #0b8a00;
}
.ustid-invalid-12345 {
    color: #b00020;
}

/* Zahlungsart-Icons im Checkout */
.payment-method-label-12345 {
    display: flex;
    align-items: center;
    gap: 6px;
}
.payment-method-label-12345 input[type="radio"] {
    margin-right: 2px;
}
.payment-icon-12345 {
    width: 40px;
    height: 32px;
    border-radius: 3px;
    display: inline-block;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}
.payment-icon-stripe-12345 {
    background-color: hsl(0, 0%, 100%);
    background-image: url('/images/payment-icons/stripe.png');
}
.payment-icon-paypal-12345 {
    background-color: hsl(0, 0%, 100%);
    background-image: url('/images/payment-icons/paypal.png');
}
.payment-icon-invoice-12345 {
    background-color: hsl(0, 0%, 100%);
    background-image: url('/images/payment-icons/invoice.png');
}
.payment-icon-bank-12345 {
    background-color: hsl(0, 0%, 100%);
    background-image: url('/images/payment-icons/bank.png');
}
.payment-text-12345 {
    font-size: 12px;
}
.payment-description-12345 {
    font-size: 11px;
    color: #555;
    margin-top: 2px;
}

/* Moderner Look der Zahlungsarten im Checkout (kompakte Karten) */
#checkout-payment-methods-98765 {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 4px;
}
#checkout-payment-methods-98765 .form-group-12345 {
    border: 1px solid #e1e4ea;
    border-radius: 4px;
    padding: 5px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
}
#checkout-payment-methods-98765 .form-group-12345:hover {
    border-color: #cbd5f5;
    background: linear-gradient(135deg, #ffffff 0%, #eef3ff 100%);
}
#checkout-payment-methods-98765 .payment-method-label-12345 {
    width: 100%;
}
.checkout-submit-12345 {
    margin-top: 10px;
    width: 100%;
    padding: 10px 10px;
    font-size: 14px;
    background-color: #111318;
    color: #fff;
  }

/* Auth (Login / Registrierung) */
.auth-page-12345 {
    padding: 5px 0 10px;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.auth-shell-12345 {
    max-width: 520px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 4px;
    padding: 25px;
    border: 1px solid #e1e4e8;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    min-height: 350px; /* genug Höhe, damit Privat/Geschäftskunde die Box nicht springen lässt */
}
.auth-title-12345 {
    font-size: 22px;
    margin: 0 0 8px;
    text-align: center;
    font-weight: 600;
}
.auth-tabs-12345 {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 5px;
}
.auth-tab-12345 {
    font-size: 22px;
    font-weight: 600;
    color: #999;
    padding-left: 60px;
    padding-right: 60px;
    border: 1px solid #ccc;
}
.auth-tab-active-12345 {
    color: #111;
    background-color: #ffde2224;
}
.auth-intro-12345 {
    text-align: center;
    font-size: 12px;
    color: #555;
    margin-bottom: 10px;

}
.auth-form-12345 .form-group-12345 {
    margin-bottom: 8px;
}
.auth-submit-12345 {
    margin-top: 5px;
}
.auth-links-12345 {
    margin-top: 10px;
    font-size: 12px;
    color: #555;
    display: flex;
    gap: 6px;
    align-items: center;
}
.auth-submit-full-12345 {
    width: 100%;
    padding: 10px 10px;
    font-size: 14px;
    border-radius: 3px;
    background: #151821;
    color: #fff;
    text-align: center;
}
.auth-password-group-12345 {
    margin-bottom: 6px;
}
.auth-password-row-12345 {
    display: flex;
    align-items: center;
    border: 1px solid #d0d7de;
    border-radius: 3px;
    background: #fff;
}
.auth-password-row-12345 input[type="password"],
.auth-password-row-12345 input[type="text"] {
    flex: 1;
    border: none;
    padding: 6px 8px;
    font-size: 13px;
}
.auth-password-toggle-12345 {
    background: transparent;
    border: none;
    padding: 0 6px;
    display: flex;
    align-items: center;
    color: #666;
}
.auth-password-toggle-12345 .material-icons {
    font-size: 18px;
}
.auth-remember-row-12345 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    margin-bottom: 6px;
}
.auth-forgot-link-12345 {
    font-size: 12px;
    color: #0054a6;
}
.auth-links-12345 a {
    color: #111;
    text-decoration: underline;
}
.auth-links-separator-12345 {
    color: #999;
}
.auth-account-type-row-12345 {
    display: flex;
    gap: 10px;
    margin-top: 4px;
    font-size: 12px;
}
.auth-radio-label-12345 {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.auth-radio-label-12345 input[type="radio"] {
    accent-color: #111318;
}
.auth-business-benefits-12345 {
    margin-top: 5px;
    font-size: 11px;
    color: #555;
    background: #f8f9fa;
    border-radius: 3px;
    padding: 5px;
    border: 1px solid #e1e4e8;
}
.auth-business-benefits-12345 ul {
    margin-top: 3px;
    padding-left: 15px;
    list-style: disc;
}
.auth-business-fields-12345 {
    margin-top: 6px;
}
.auth-business-benefits-12345,
.auth-business-fields-12345 {
    display: none; /* Anzeige wird per JS gesteuert */
}

/* Account-Seite */
.account-page-12345 {
    padding: 15px 0 25px;
}
.account-shell-12345 {
    background: #ffffff;
    border-radius: 4px;
    padding: 15px;
    border: 1px solid #e1e4e8;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    grid-template-rows: auto 1fr;
    column-gap: 15px;
}
.account-title-12345 {
    font-size: 18px;
    margin: 0 0 10px;
    grid-column: 1 / -1;
}
.account-tabs-12345 {
    grid-row: 2;
    grid-column: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    border-right: 1px solid #e1e4e8;
    padding-right: 8px;
}
.account-sidebar-group-12345 {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.account-sidebar-title-12345 {
    font-size: 11px;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 2px;
}
.account-tab-12345 {
    border: 0;
    background: #f3f4f6;
    padding: 6px 10px;
    font-size: 12px;
    cursor: pointer;
    border-radius: 4px;
    color: #333;
    text-align: left;
}
.account-tab-active-12345 {
    background: #ffffff;
    border: 1px solid #e1e4e8;
    font-weight: 600;
}
.account-content-12345 {
    font-size: 13px;
    margin-top: 0;
}
.account-form-12345 {
    grid-row: 2;
    grid-column: 2;
}
.account-tab-pane-12345 {
    display: none;
}
.account-tab-pane-active-12345 {
    display: block;
}
.account-form-12345 .form-group-12345 {
    margin-bottom: 8px;
}
.account-form-12345 .btn-12345 {
    padding: 6px 10px;
    font-size: 13px;
}
.account-table-wrapper-12345 {
    overflow-x: auto;
}
.account-table-12345 {
    width: 100%;
    border-collapse: collapse;
    font-size: 12px;
}
.account-table-12345 th,
.account-table-12345 td {
    border: 1px solid #e1e4e8;
    padding: 5px;
    text-align: left;
}
.account-table-12345 th {
    background: #f5f5f5;
    font-weight: 600;
}
.account-dashboard-grid-12345 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 10px;
    margin-top: 5px;
}
.account-dashboard-card-12345 {
    border: 1px solid #e1e4e8;
    border-radius: 3px;
    padding: 8px;
    background-color: #ffde2224;
}
.account-dashboard-label-12345 {
    font-size: 11px;
    color: #666;
    margin-bottom: 3px;
}
.account-dashboard-value-12345 {
    font-size: 14px;
    font-weight: 600;
    color: #222;
}
.account-order-wrapper-12345 {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.account-order-card-12345 {
    border: 1px solid #e1e4e8;
    border-radius: 3px;
    background-color: #ffffff;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
    margin-bottom: 5px;
}
.account-order-card-header-12345 {
    padding: 4px 5px;
    border-bottom: 1px solid #e1e4e8;
    background: linear-gradient(135deg, #f9fafb 0%, #eef2f7 100%);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.account-order-card-body-12345 {
    padding: 5px;
    font-size: 11px;
}
.account-order-meta-12345 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 4px;
    margin-bottom: 6px;
}
.account-order-meta-label-12345 {
    font-size: 10px;
    color: #6b7280;
}
.account-order-meta-value-12345 {
    font-size: 11px;
    color: #111827;
    font-weight: 500;
}
.account-order-section-title-12345 {
    font-size: 12px;
    font-weight: 600;
    margin: 2px 0 4px;
    padding-bottom: 3px;
    border-bottom: 1px solid #e5e7eb;
    color: #111827;
}
.account-code-block-12345 {
    border: 1px solid #e1e4e8;
    border-radius: 3px;
    margin-bottom: 10px;
}
.account-code-header-12345 {
    padding: 6px 8px;
    background: #f8f9fa;
    border-bottom: 1px solid #e1e4e8;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
}
.account-codes-grid-12345 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 5px;
}
.account-code-card-12345 {
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    background: #ffffff;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.account-code-card-header-12345 {
    padding: 5px;
    background: linear-gradient(135deg, #f9fafb 0%, #e5e7eb 100%);
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    color: #4b5563;
}
.account-code-order-number-12345 {
    font-weight: 600;
    color: #111827;
}
.account-code-order-date-12345 {
    font-size: 10px;
    color: #6b7280;
}
.account-code-card-body-12345 {
    padding: 5px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 11px;
}
.account-code-product-12345 strong {
    font-size: 11px;
    color: #111827;
}
.account-code-hint-12345 {
    margin-top: 2px;
    font-size: 10px;
    color: #047857;
}
.account-code-value-12345 {
    display: flex;
    flex-direction: column;
}
.account-code-label-12345 {
    font-size: 10px;
    color: #6b7280;
}
.account-code-text-12345 {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 11px;
    background: #f9fafb;
    border-radius: 3px;
    padding: 3px 4px;
    border: 1px solid #e5e7eb;
    word-break: break-all;
}
.account-code-links-12345 {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.account-code-downloads-12345 a,
.account-code-activation-12345 a {
    display: inline-block;
    font-size: 10px;
    color: #111827;
    text-decoration: none;
    padding: 2px 4px;
    border-radius: 3px;
    border: 1px solid #e5e7eb;
    background: #f9fafb;
}
.account-code-downloads-12345 a:hover,
.account-code-activation-12345 a:hover {
    background: #e5e7eb;
}
.account-code-activation-text-12345 {
    font-size: 10px;
    color: #4b5563;
}
.account-codes-pagination-12345 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    font-size: 11px;
}
.account-codes-pageinfo-12345 {
    color: #6b7280;
}
.checkout-checkbox-label-12345 {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    cursor: pointer;
}
.checkout-checkbox-label-12345 input[type="checkbox"] {
    margin-top: 2px;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    cursor: pointer;
}

/* Kurzbeschreibung Styles (Template Content) */
.feature-highlight h3 {
    color: #2c3e50;
    font-size: 1.4em;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-highlight p {
    font-size: 1.1em;
    color: #495057;
    margin-bottom: 20px;
}

.key-benefits h4 {
    color: #2c3e50;
    font-size: 1.2em;
    margin-bottom: 15px;
    font-weight: 600;
}

.modern-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.modern-list li {
    padding: 8px 0 8px 25px;
    position: relative;
    color: #495057;
}

.modern-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.purchase-info {
    background: #fff;
    border-radius: 8px;
    padding: 15px;
    margin-top: 20px;
    border-left: 4px solid #ffd600;
}

.purchase-info p {
    margin: 0;
    color: #495057;
    font-weight: 500;
}

/* Hauptbeschreibung Styles */
.hero-section {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 12px;
    margin-bottom: 40px;
}

.hero-section h2 {
    font-size: 2.2em;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-section p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
}

.core-features,
.application-areas,
.workflow-description,
.system-requirements,
.purchase-benefits,
.final-section {
    margin-bottom: 50px;
}

.core-features h2,
.application-areas h2,
.workflow-description h2,
.system-requirements h2,
.purchase-benefits h2,
.final-section h2 {
    color: #2c3e50;
    font-size: 1.8em;
    margin-bottom: 20px;
    font-weight: 600;
    border-bottom: 2px solid #007bff;
    padding-bottom: 10px;
}

.template-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
    margin-bottom: 25px;
}

.feature-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 3px solid #ffe233;
}

.feature-card:hover {
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.feature-card h3 {
    color: #2c3e50;
    font-size: 1.3em;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-card p {
    color: #495057;
    line-height: 1.6;
}

.highlight-box {
    background: linear-gradient(110deg, #fff 0%, #eeffeba8 100%);
    border: 1px solid #b7a771;
    border-radius: 8px;
    padding: 20px;
    margin: 25px 0;
  }

.highlight-box h3 {
    color: #856404;
    margin-bottom: 10px;
    font-weight: 600;
}

.highlight-box p {
    color: #856404;
    margin: 0;
}

.benefit-box {
    background: linear-gradient(150deg, #f0f1d11c 0%, #e3ff1e21 100%);
    border: 1px solid #b1ca05;
    border-radius: 8px;
    padding: 20px;
    margin: 25px 0;
}

.benefit-box h3 {
    color: #0c5460;
    margin-bottom: 10px;
    font-weight: 600;
}

.benefit-box p {
    color: #0c5460;
    margin: 0;
}

/* Systemanforderungen Tabelle */
.system-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.system-table thead {
    background: linear-gradient(135deg, #1e1e1e 0%, #2b2b2b 100%);
    color: white;
}

.system-table th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
    font-size: 1.1em;
}

.system-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #dee2e6;
}

.system-table tbody tr:nth-child(even) {
    background-color: #f8f9fa;
}

.system-table tbody tr:hover {
    background-color: #ececec;
}

/* Responsive Design */
@media (max-width: 768px) {
    .software-template-2025 {
        padding: 0 15px;
    }
    
    .hero-section h2 {
        font-size: 1.8em;
    }
    
    .template-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .system-table {
        font-size: 0.9em;
    }
    
    .system-table th,
    .system-table td {
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .short-description-modern {
        padding: 20px;
    }
    
    .hero-section {
        padding: 30px 15px;
    }
    
    .hero-section h2 {
        font-size: 1.5em;
    }
    
    .system-table {
        font-size: 0.8em;
    }
}


#admin-toolbar-98765 {
    position: fixed;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    background: rgba(0, 0, 0, 0.77);
    border-radius: 5px;
    padding: 8px;
    box-shadow: 0 8px 18px rgba(15,23,42,0.7);
    backdrop-filter: blur(1px);
    color: #000;
  }
#admin-toolbar-inner-98765 {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
#admin-toolbar-left-98765,
#admin-toolbar-right-98765 {
    display: flex;
    align-items: center;
    gap: 6px;
}
#admin-toolbar-98765 a {
    color: #f9fafb;
    text-decoration: none;
    padding: 2px 4px;
    border-radius: 2px;
    font-size: 11px;
}
#admin-toolbar-98765 a:hover {
    background: rgba(148, 163, 184, 0.25);
}
#admin-toolbar-label-98765 {
    font-weight: 500;
    margin-right: 4px;
    font-size: 11px;
}
#admin-toolbar-maintenance-98765 {
    border-radius: 2px;
    padding: 0;
    background: transparent;
    border: 1px solid rgba(148, 163, 184, 0.8);
    color: #e5e7eb;
    font-size: 11px;
    cursor: pointer;
}
#admin-toolbar-maintenance-98765 span {
    display: inline-block;
    padding: 1px 4px;
}
#admin-toolbar-maintenance-98765 .status-on-98765 {
    background: #b91c1c;
}
#admin-toolbar-maintenance-98765 .status-off-98765 {
    background: #15803d;
}
#admin-toolbar-stats-98765 {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: #e5e7eb;
    opacity: 0.9;
}
#admin-toolbar-stats-98765 span {
    white-space: nowrap;
}

/* ===================================
   Statische Seiten (Legal & Info)
   =================================== */

.page-container-12345 {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.page-header-12345 {
    text-align: center;
    margin-bottom: 0px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e5e7eb;
}

.page-header-12345 h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px 0;
}

.page-subtitle-12345 {
    font-size: 1.1rem;
    color: #6b7280;
    margin: 0;
}

.page-content-12345 {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.legal-section-12345 h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #111827;
    margin: 30px 0 15px 0;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.legal-section-12345 h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.legal-section-12345 h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #374151;
    margin: 20px 0 10px 0;
}

.legal-section-12345 p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4b5563;
    margin: 0 0 15px 0;
}

.legal-section-12345 ul {
    margin: 15px 0;
    padding-left: 25px;
}

.legal-section-12345 li {
    margin-bottom: 8px;
    line-height: 1.6;
    color: #4b5563;
}

.legal-section-12345 a {
    color: #2563eb;
    text-decoration: none;
}

.legal-section-12345 a:hover {
    text-decoration: underline;
}

.legal-section-12345 strong {
    font-weight: 600;
    color: #111827;
}

.withdrawal-form-12345 {
    background: #f9fafb;
    padding: 20px;
    border-radius: 6px;
    border-left: 4px solid #3b82f6;
    margin: 20px 0;
}

.withdrawal-form-12345 p {
    margin: 10px 0;
}

.imprint-company-12345 {
    background: #f9fafb;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #3b82f6;
    margin-bottom: 30px;
}

.imprint-company-12345 p {
    margin: 0 0 15px 0;
}

.imprint-company-12345 p:last-child {
    margin-bottom: 0;
}

.imprint-trademark-12345 {
    padding-top: 15px;
    border-top: 1px solid #e5e7eb;
    color: #6b7280;
    font-size: 0.95rem;
}

/* Impressum spezifisches Layout */
.page-container-imprint-12345 {
    max-width: 100%;
    margin: 0;
    padding: 60px 80px;
    background: #fff;
}

.imprint-layout-12345 {
    display: grid;
    grid-template-columns: 1fr 550px;
    gap: 80px;
    align-items: start;
    max-width: 79%;
    margin: 0 auto;
}

.imprint-content-left-12345 {
    max-width: 100%;
}

.imprint-content-left-12345 {
    background: transparent;
    padding: 0;
}

.imprint-title-12345 {
    font-size: 4rem;
    font-weight: 900;
    color: #1a1a2e;
    margin: 0 0 60px 0;
    line-height: 1;
    letter-spacing: -0.02em;
}

.imprint-images-right-12345 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 12px;
    position: sticky;
    top: 80px;
}

.imprint-image-12345 {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: none;
}

.imprint-image-12345 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

.imprint-image-12345:hover img {
    transform: scale(1.02);
}

/* Impressum Content Styling */
.imprint-content-left-12345 .legal-section-12345 h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 40px 0 15px 0;
    padding-top: 0;
    border-top: none;
    letter-spacing: -0.01em;
}

.imprint-content-left-12345 .legal-section-12345 h2:first-of-type {
    margin-top: 0;
}

.imprint-content-left-12345 .imprint-company-12345 {
    background: transparent;
    padding: 0;
    border-radius: 0;
    border-left: none;
    margin-bottom: 40px;
}

.imprint-content-left-12345 .imprint-company-12345 p {
    font-size: 1rem;
    line-height: 1.7;
    color: #2d3748;
    margin: 0 0 15px 0;
    font-weight: 400;
}

.imprint-content-left-12345 .imprint-company-12345 strong {
    font-weight: 600;
    color: #1a1a2e;
}

.imprint-content-left-12345 .legal-section-12345 p {
    font-size: 1rem;
    line-height: 1.7;
    color: #2d3748;
    margin: 0 0 12px 0;
}

.imprint-content-left-12345 .legal-section-12345 ul {
    margin: 15px 0;
    padding-left: 20px;
    list-style: disc;
}

.imprint-content-left-12345 .legal-section-12345 ul li {
    padding: 3px 0;
    color: #2d3748;
    line-height: 1;
    font-size: 0.95rem;
}

.imprint-content-left-12345 .legal-section-12345 a {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.2s;
}

.imprint-content-left-12345 .legal-section-12345 a:hover {
    color: #1d4ed8;
}

.imprint-content-left-12345 .imprint-trademark-12345 {
    border-top: none;
    padding-top: 0;
    margin-top: 5px;
    color: #64748b;
}

.imprint-divider-12345 {
    border: 0;
    border-top: 1px solid #e5e7eb;
    margin: 25px 0;
}

/* Mobile Anpassung für Impressum */
@media (max-width: 1200px) {
    .page-container-imprint-12345 {
        padding: 40px 40px;
    }
    
    .imprint-layout-12345 {
        grid-template-columns: 1fr 450px;
        gap: 50px;
    }
    
    .imprint-title-12345 {
        font-size: 3rem;
    }
}

@media (max-width: 1024px) {
    .page-container-imprint-12345 {
        padding: 40px 30px;
    }
    
    .imprint-layout-12345 {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .imprint-images-right-12345 {
        position: static;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        max-width: 600px;
    }
    
    .imprint-title-12345 {
        font-size: 2.5rem;
        margin-bottom: 40px;
    }
}

@media (max-width: 640px) {
    .page-container-imprint-12345 {
        padding: 30px 20px;
    }
    
    .imprint-title-12345 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .imprint-images-right-12345 {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    
    .imprint-content-left-12345 .legal-section-12345 h2 {
        font-size: 1.1rem;
    }
    
    .imprint-content-left-12345 .legal-section-12345 p,
    .imprint-content-left-12345 .legal-section-12345 ul li {
        font-size: 0.95rem;
    }
}

/* FAQ spezifisch */
.faq-section-12345 h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #111827;
    margin: 40px 0 20px 0;
    padding-top: 20px;
    border-top: 2px solid #e5e7eb;
}

.faq-section-12345 h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.faq-item-12345 {
    margin-bottom: 25px;
    padding: 20px;
    background: #f9fafb;
    border-radius: 6px;
    border-left: 4px solid #3b82f6;
}

.faq-item-12345 h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #111827;
    margin: 0 0 10px 0;
}

.faq-item-12345 p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4b5563;
    margin: 0;
}

/* Über uns spezifisch */
.about-section-12345 h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #111827;
    margin: 40px 0 20px 0;
    padding-top: 20px;
    border-top: 2px solid #e5e7eb;
}

.about-section-12345 h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.feature-grid-12345 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.feature-item-12345 {
    padding: 20px;
    background: #f9fafb;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
}

.feature-item-12345 h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #111827;
    margin: 0 0 10px 0;
}

.feature-item-12345 p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #6b7280;
    margin: 0;
}

.about-section-12345 ul {
    margin: 15px 0;
    padding-left: 25px;
}

.about-section-12345 li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #4b5563;
}

/* Mobile Optimierung */
@media (max-width: 768px) {
    .page-container-12345 {
        margin: 20px auto;
        padding: 0 15px;
    }
    
    .page-header-12345 h1 {
        font-size: 1.8rem;
    }
    
    .page-content-12345 {
        padding: 20px 15px;
    }
    
    .legal-section-12345 h2,
    .faq-section-12345 h2,
    .about-section-12345 h2 {
        font-size: 1.4rem;
    }
    
    .legal-section-12345 h3,
    .faq-item-12345 h3 {
        font-size: 1.1rem;
    }
    
    .feature-grid-12345 {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* Custom Language Dropdown mit Flag-Icons - Dark Mode & Kompakt */
.custom-language-dropdown-12345 {
    position: relative;
    display: inline-block;
    min-width: 130px;
}

.custom-language-dropdown-12345 .dropdown-selected-12345 {
    background: #2a2a2a;
    border: 1px solid #3a3a3a;
    border-radius: 3px;
    padding: 2px 24px 2px 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    position: relative;
    color: #f9fafb;
    transition: all 0.2s;
}


.custom-language-dropdown-12345 .dropdown-selected-12345::after {
    content: '▼';
    position: absolute;
    right: 6px;
    font-size: 8px;
    color: #9ca3af;
}

.custom-language-dropdown-12345.open-12345 .dropdown-selected-12345::after {
    content: '▲';
}

.custom-language-dropdown-12345 .dropdown-options-12345 {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #1f2937;
    border: 1px solid #374151;
    border-radius: 3px;
    margin-top: 2px;
    max-height: 280px;
    overflow-y: auto;
    display: none;
    z-index: 1000;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
}

.custom-language-dropdown-12345.open-12345 .dropdown-options-12345 {
    display: block;
}

.custom-language-dropdown-12345 .dropdown-option-12345 {
    padding: 5px 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #e5e7eb;
    transition: background-color 0.15s;
}

.custom-language-dropdown-12345 .dropdown-option-12345:hover {
    background-color: #374151;
}

.custom-language-dropdown-12345 .dropdown-option-12345.selected-12345 {
    background-color: #4b5563;
    font-weight: 500;
    color: #fff;
}

.custom-language-dropdown-12345 .flag-icon-12345 {
    width: 18px;
    height: 13px;
    object-fit: cover;
    border-radius: 2px;
    flex-shrink: 0;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Scrollbar für Dropdown - Dark Mode */
.custom-language-dropdown-12345 .dropdown-options-12345::-webkit-scrollbar {
    width: 6px;
}

.custom-language-dropdown-12345 .dropdown-options-12345::-webkit-scrollbar-track {
    background: #1f2937;
}

.custom-language-dropdown-12345 .dropdown-options-12345::-webkit-scrollbar-thumb {
    background: #4b5563;
    border-radius: 3px;
}

.custom-language-dropdown-12345 .dropdown-options-12345::-webkit-scrollbar-thumb:hover {
    background: #6b7280;
}

/* PayPal Express Button Höhe an Shop-Buttons angleichen */
/* Produktdetailseite: maximal 36px Höhe */
#paypal-button-product .paypal-button-row {
    height: 36px !important;
    min-height: 36px !important;
    max-height: 36px !important;
    vertical-align: top;
}

#paypal-button-product {
    width: 150px;
    min-height: 40px;
    margin: 0 0 0 0 !important;
    top: 4px;
    align-self: flex-end;
    position: relative;
}

/* Warenkorb / Checkout: unverändert kompakt halten */
#paypal-button-cart .paypal-button-row,
#paypal-button-checkout .paypal-button-row {
    height: 35px !important;
    min-height: 35px !important;
    max-height: 40px !important;
    vertical-align: top;
}

/* Spezifische PayPal-Render-ID (Produkdetail) leicht nach unten versetzen */
#zoid-paypal-buttons-uid_876b9addf3_mtg6mjc6mzg {
    position: relative;
    display: inline-block;
    width: 100%;
    min-height: 25px;
    min-width: 150px;
    font-size: 0;
    top: 4px !important;
}


/* Variante wählen Button */
.btn-variant-select-exact {
    display: inline-block;
    text-decoration: none;
    text-align: center;
}

/* ===== SKELETON LOADER ===== */
/* Ruhiger, statischer Skeleton-Hintergrund ohne Shimmer-Animation */
.skeleton-9001 {
    background: #e5e5e5;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

/* Skeleton für Produktbilder */
.skeleton-image-9001 {
    width: 100%;
    height: 100%;
    background: #e5e5e5;
    border-radius: 4px;
    pointer-events: none;
}

/* Skeleton für Product Cards (Home) */
.product-image-exact .skeleton-image-9001 {
    position: absolute;
    top: 0;
    left: 0;
    min-height: 180px;
    display: block;
    z-index: 0;
}

/* Skeleton für WooCommerce Product Cards */
.woo-product-image-12345 .skeleton-image-9001 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 0;
}

.woo-product-image-12345 img {
    z-index: 1;
}

/* Skeleton für Product Detail Hauptbild */
.main-image-wrapper-12345 .skeleton-image-9001 {
    min-height: 338px;
    display: block;
}

/* Skeleton für Thumbnails */
.thumbnail-12345.skeleton-9001 {
    width: 90px;
    height: 90px;
    display: inline-block;
}

/* Skeleton für ähnliche Produkte */
.product-related-12345 .product-image-exact .skeleton-image-9001 {
    position: absolute;
    top: 0;
    left: 0;
    min-height: 160px;
    display: block;
    z-index: 0;
}

/* Skeleton für New Arrivals */
.arrival-card-exact {
    position: relative;
}

.arrival-card-exact .skeleton-image-9001 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 180px;
    display: block;
    z-index: 0;
}

.arrival-card-exact img {
    position: relative;
    z-index: 1;
}

/* Skeleton verstecken wenn Bild geladen */
img.skeleton-hidden-9001 + .skeleton-image-9001 {
    display: none;
}

/* Bild initial verstecken bis geladen */
img.skeleton-loading-9001 {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img.skeleton-loaded-9001 {
    opacity: 1;
}

/* Admin Edit Button in Produktdetails */
.admin-edit-button-12345 {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 8px;
    padding: 0;
    color: #6b7280;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
}

.admin-edit-button-12345:hover {
    color: #f59e0b;
    text-decoration: underline;
}

.admin-edit-button-12345 .material-icons {
    font-size: 14px;
}

/* Footer Tagcloud */
.footer-tagcloud-12345 {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.footer-tag-12345 {
    display: inline-block;
    padding: 1px 4px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 1px;
    color: #9ca3af;
    text-decoration: none;
    transition: all 0.2s ease;
    font-weight: 100;
    font-size: 11px !important;
}

.footer-tag-12345:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgb(108, 108, 108);
    color: #02a8db;
}

.footer-top-products-12345 {
    list-style: none;
    padding: 0;
    margin: 8px 0 0 0;
}

.footer-top-products-12345 li {
    margin-bottom: 8px;
}

.footer-top-products-12345 a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s ease;
    display: block;
}

.footer-top-products-12345 a:hover {
    color: #02a8db;
    text-decoration: underline;
}

/* SEO Content Section */
.seo-content-section-exact {
    padding: 30px 0;
    background: #f9fafb;
    border-bottom: 1px solid #e5e5e5;
}

.seo-content-wrapper-12345 {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.seo-content-headline-12345 {
    font-size: 24px;
    margin: 0 0 15px 0;
    color: #1b1b1b;
    font-weight: 700;
}

.seo-content-text-12345 {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* Footer Social Icons */
.footer-social-icons-12345 {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 12px;
    justify-content: center;
    align-items: center;
}

.footer-social-icon-12345 {
    object-fit: contain;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.footer-social-icons-12345 a:hover .footer-social-icon-12345 {
    opacity: 1;
    transform: translateY(-2px);
}

/* Product Trust Checklist - 2-Column Grid Design */
.product-trust-checklist-12345 {
    margin-top: 15px;
    margin-bottom: 10px;
    padding: 13px;
    background: transparent;
    height: 235px;
    overflow-y: auto;
}

.trust-checklist-list-12345 {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.trust-checklist-item-12345 {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    font-size: 13px;
    line-height: 1.4;
    color: #1f2937;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-left: 3px solid #151821;
    border-radius: 4px;
    transition: all 0.2s ease;
    box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}

.trust-checklist-item-12345:hover {
    border-left-color: #ffe233;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.trust-icon-12345 {
    color: #fff;
    font-size: 16px;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #556472 0%, #222 100%);
    border-radius: 10%;
    box-shadow: 0 2px 4px rgba(16, 185, 129, 0.2);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden;
}

.trust-icon-12345 i {
    display: block;
    line-height: 1;
}

.trust-text-12345 {
    flex: 1;
    font-weight: 500;
    color: #374151;
}

/* Material Symbols Settings für Produktdetails */
.material-symbols-outlined,
.trust-icon-12345.material-symbols-outlined {
    font-variation-settings:
        'FILL' 0,
        'wght' 100,
        'GRAD' 0,
        'opsz' 24;
}

/* Checkout / Cart: gelbe Rahmen-Optik */
.checkout-section-12345 {
    background: #fff;
    border-radius: 3px;
    padding: 8px 10px;
    margin-bottom: 6px;
    border-left: 1px solid rgb(229, 229, 229);
    border-right: 1px solid rgb(229, 229, 229);
    border-bottom: 1px solid rgb(229, 229, 229);
    border-top: 3px solid #ffe749;
}

.checkout-summary-12345 {
    align-self: flex-start;
    background: #fafbfc;
    border-radius: 3px;
    padding: 8px 10px;
    border-left: 1px solid rgb(229, 229, 229);
    border-right: 1px solid rgb(229, 229, 229);
    border-bottom: 1px solid rgb(229, 229, 229);
    border-top: 3px solid #ffe749;
}

.summary-card-12345 {
    background: #fff;
    border-radius: 3px;
    padding: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    border-left: 1px solid rgb(229, 229, 229);
    border-right: 1px solid rgb(229, 229, 229);
    border-bottom: 1px solid rgb(229, 229, 229);
    border-top: 3px solid #ffe749;
}

.cart-item-12345 {
    display: grid;
    grid-template-columns: 80px minmax(0, 1.4fr) 140px 130px 80px;
    gap: 8px;
    padding: 8px;
    border-radius: 3px;
    background: #fff;
    align-items: center;
    border-left: 1px solid rgb(229, 229, 229);
    border-right: 1px solid rgb(229, 229, 229);
    border-bottom: 1px solid rgb(229, 229, 229);
    border-top: 3px solid #ffe749;
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE & TABLET
   ============================================ */

/* === MOBILE MENU STYLES === */
.mobile-menu-toggle-12345 {
    display: none;
    background: transparent;
    border: none;
    min-width: 48px;
    min-height: 48px;
    padding: 8px;
    cursor: pointer;
    color: #333;
    z-index: 1001;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: background 0.2s;
}

.mobile-menu-toggle-12345:active {
    background: rgba(0, 0, 0, 0.1);
}

.mobile-menu-toggle-12345 .material-icons {
    font-size: 28px;
    line-height: 1;
}

/* Fullscreen Mobile Menu */
.mobile-menu-overlay-12345 {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    flex-direction: column;
}

.mobile-menu-overlay-12345.active-12345 {
    display: flex !important;
    opacity: 1;
    visibility: visible;
}

.mobile-menu-header-12345 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-logo-12345 {
    height: 32px;
    width: auto;
}

.mobile-menu-close-12345 {
    background: transparent;
    border: none;
    color: #fff;
    padding: 8px;
    cursor: pointer;
}

.mobile-menu-close-12345 .material-icons {
    font-size: 28px;
}

.mobile-menu-search-12345 {
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-search-12345 form {
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.mobile-menu-search-12345 input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 14px 16px;
    color: #fff;
    font-size: 16px;
}

.mobile-menu-search-12345 input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.mobile-menu-search-12345 button {
    background: #ffd600;
    border: none;
    padding: 14px 18px;
    color: #000;
    cursor: pointer;
}

.mobile-menu-nav-12345 {
    padding: 20px;
}

.mobile-menu-nav-12345 ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-menu-nav-12345 > ul > li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu-nav-12345 a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 0;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
}

.mobile-menu-nav-12345 a:hover,
.mobile-menu-nav-12345 a:active {
    color: #ffd600;
}

.mobile-menu-nav-12345 .nav-cat-icon-exact {
    width: 24px;
    height: 24px;
}

.mobile-menu-category-12345 {
    position: relative;
}

.mobile-menu-category-toggle-12345 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: transparent;
    border: none;
    padding: 16px 0;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    text-align: left;
}

.mobile-menu-category-toggle-12345 .material-icons {
    transition: transform 0.3s ease;
}

.mobile-menu-category-12345.open-12345 .mobile-menu-category-toggle-12345 .material-icons {
    transform: rotate(180deg);
}

.mobile-menu-subcategories-12345 {
    display: none;
    padding-left: 20px;
    padding-bottom: 12px;
}

.mobile-menu-category-12345.open-12345 .mobile-menu-subcategories-12345 {
    display: block;
}

.mobile-menu-subcategories-12345 a {
    padding: 10px 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.mobile-menu-footer-12345 {
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: auto;
}

/* Mobile Menu Switchers (Language & Currency) */
.mobile-menu-switchers-12345 {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.mobile-menu-switcher-12345 {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-menu-switcher-12345 label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mobile-menu-switcher-12345 label .material-icons {
    font-size: 18px;
}

.mobile-menu-switcher-12345 select {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23fff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 12px;
    padding-right: 36px;
}

.mobile-menu-switcher-12345 select:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
}

.mobile-menu-switcher-12345 select option {
    background: #1a1a1a;
    color: #fff;
}

.mobile-menu-footer-links-12345 {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.mobile-menu-footer-links-12345 a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    text-decoration: none;
}

/* === TABLET BREAKPOINT (1024px) === */
@media (max-width: 1024px) {
    .container-exact {
        padding: 0 16px;
    }

    /* Hide Icon Bar on Tablet */
    .icon-bar-exact {
        display: none !important;
    }

    /* Support Chat Fullscreen on Tablet */
    #sk24-support-chat-window-12345 {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        height: 100% !important;
        max-height: 100% !important;
        border-radius: 0 !important;
        z-index: 100000 !important;
    }

    /* Admin Toolbar - Hide on Tablet */
    #admin-toolbar-98765 {
        display: none !important;
    }

    /* Header Tablet */
    .header-exact {
        padding: 12px 0;
    }

    .header-exact .container-exact {
        gap: 12px;
        padding: 0 16px;
    }

    .logo-image-exact {
        max-height: 36px;
    }

    .header-actions-exact {
        gap: 8px;
    }

    .icon-action-exact {
        min-width: 44px;
        min-height: 44px;
        padding: 4px;
    }

    .icon-action-exact .material-icons {
        font-size: 26px;
    }

    .search-exact {
        flex: 1;
        max-width: 400px;
    }

    .search-exact input {
        font-size: 14px;
        padding: 10px 14px;
    }

    /* Navigation - kompakter */
    .nav-menu-exact {
        gap: 4px;
    }

    .nav-cat-item-exact > a {
        padding: 10px 12px;
        font-size: 13px;
    }

    .nav-cat-icon-exact {
        width: 16px;
        height: 16px;
    }

    /* Mega Menu - schmaler */
    .mega-menu-exact {
        max-width: 90vw;
    }

    .mega-menu-inner-exact {
        gap: 16px;
        padding: 16px;
    }

    .mega-column-exact {
        min-width: 160px;
    }

    /* Home Hero */
    .hero-content-exact h1 {
        font-size: 14px;
    }

    .hero-content-exact h2 {
        font-size: 26px;
    }

    /* Icon Bar */
    .icon-bar-grid-exact {
        gap: 16px;
    }

    .icon-item-exact {
        padding: 12px;
    }

    .icon-item-exact .material-icons {
        font-size: 28px;
    }

    .icon-item-exact strong {
        font-size: 13px;
    }

    .icon-item-exact p {
        font-size: 11px;
    }

    /* Product Detail Page Tablet */
    .product-detail-page-12345 {
        padding: 16px 0;
    }

    .product-header-price-12345,
    .price-value-12345 {
        font-size: 36px;
    }

    .product-detail-12345 {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .product-main-row-12345 {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .main-image-wrapper-12345 {
        width: 100%;
        height: auto;
        aspect-ratio: 4/3;
    }

    .product-info-row-12345 {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    /* Product Grids - 2 columns on Tablet */
    .product-grid-exact,
    .products-grid-exact,
    .products-section-exact .products-grid-exact {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px;
    }

    /* New Arrivals Tablet */
    .new-arrivals-exact,
    .new-arrivals-5678 {
        padding: 32px 0;
    }

    .arrivals-track-exact,
    .new-arrivals-5678 .products-track-5678 {
        gap: 16px;
    }

    .arrival-card-exact {
        min-width: 180px;
        max-width: 180px;
        flex: 0 0 180px;
    }

    .product-card-exact {
        padding: 12px;
    }

    /* Reviews Section Tablet */
    .reviews-header-exact .btn-secondary-exact {
        display: none;
    }

    /* Category Page Tablet */
    .container-12345 {
        padding: 0 16px;
    }

    .woo-categories-page-12345,
    .woo-products-page-12345 {
        padding: 16px 0;
    }

    .downloads-header-content-12345 h1 {
        font-size: 24px;
    }

    .woo-toolbar-12345 {
        padding: 10px 14px;
    }

    .woo-categories-grid-12345.woo-view-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px;
    }

    /* Checkout Page Tablet */
    .checkout-page-12345 {
        background: #f7f7f7;
        padding: 16px 0;
    }

    .checkout-page-12345 .container-exact {
        padding: 0 16px;
    }

    .checkout-shell-12345 {
        padding: 24px;
        border-radius: 12px;
        box-shadow: 0 2px 12px rgba(0,0,0,0.06);
        background: #fff;
    }

    .checkout-page-12345 .checkout-title-12345 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .checkout-form-12345 {
        display: grid;
        grid-template-columns: 1.6fr 1fr;
        gap: 24px;
    }

    .checkout-left-12345 {
        gap: 12px;
    }

    .checkout-right-12345 {
        gap: 12px;
    }

    .checkout-section-12345 {
        padding: 18px;
        border-radius: 8px;
        margin-bottom: 0;
    }

    .checkout-summary-12345 {
        position: sticky;
        top: 100px;
        align-self: flex-start;
        border-radius: 8px;
    }

    .payment-method-label-12345 {
        padding: 14px;
        min-height: 54px;
    }

    .checkout-checkbox-label-12345 {
        font-size: 13px;
    }

    .checkout-checkbox-label-12345 input[type="checkbox"],
    .checkout-section-12345 input[type="checkbox"],
    .checkout-summary-12345 input[type="checkbox"] {
        width: 20px !important;
        height: 20px !important;
        border: 2px solid #666 !important;
    }

    .payment-method-label-12345 input[type="radio"],
    .checkout-section-12345 input[type="radio"] {
        width: 20px !important;
        height: 20px !important;
    }

    .checkout-submit-12345 {
        font-size: 15px;
        padding: 14px;
    }

    /* Footer */
    .footer-grid-exact {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

/* === MOBILE BREAKPOINT (768px) === */
@media (max-width: 768px) {
    /* Show Mobile Menu Toggle */
    .mobile-menu-toggle-12345 {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-menu-overlay-12345 {
        display: flex;
        flex-direction: column;
    }

    /* Hide Desktop Navigation */
    .nav-exact {
        display: none !important;
    }

    /* Hide Utility Bar */
    .utility-bar-exact {
        display: none;
    }

    /* Top Announcement - kompakter */
    .top-announcement-exact {
        padding: 6px 0;
        font-size: 11px;
    }

    .top-announcement-exact .material-icons {
        font-size: 14px;
    }

    /* Header Mobile Layout */
    .header-exact {
        padding: 10px 0;
        position: sticky;
        top: 0;
        z-index: 1000;
        background: #bf0;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }

    .header-exact .container-exact {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
        padding: 0 12px;
    }

    .logo-exact {
        order: 2;
        flex: 1;
        display: flex;
        justify-content: center;
        flex: 0 0 auto;
    }

    .logo-image-exact {
        max-height: 28px;
    }

    /* Hide Icon Bar on Mobile */
    .icon-bar-exact {
        display: none !important;
    }

    /* Search - Icon only on mobile, expandable */
    .search-exact {
        display: none;
    }

    .mobile-search-toggle-12345 {
        display: flex;
        order: 1;
        flex: 0 0 auto;
        min-width: 48px;
        min-height: 48px;
        align-items: center;
        justify-content: center;
    }

    /* Header Actions - Touch Optimized */
    .header-actions-exact {
        order: 3;
        gap: 4px;
        display: flex;
        align-items: center;
    }

    .icon-action-exact {
        min-width: 48px;
        min-height: 48px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2px;
        padding: 4px;
        border-radius: 8px;
        transition: background 0.2s;
    }

    .icon-action-exact:active {
        background: rgba(0, 0, 0, 0.1);
    }

    /* Support Chat Fullscreen on Mobile */
    #sk24-support-chat-window-12345 {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        height: 100% !important;
        max-height: 100% !important;
        border-radius: 0 !important;
        z-index: 100000 !important;
    }

    #sk24-support-chat-toggle-12345 {
        bottom: 16px;
        right: 16px;
    }

    /* Admin Toolbar - Hide on Mobile */
    #admin-toolbar-98765 {
        display: none !important;
    }

    .icon-action-exact span:not(.material-icons):not(.cart-badge-exact):not(.cart-badge-value-12345):not(.cart-badge-ping-12345) {
        display: none;
    }

    .icon-action-exact .material-icons {
        font-size: 28px;
        line-height: 1;
    }

    .cart-badge-exact {
        top: 2px;
        right: 2px;
        min-width: 20px;
        height: 20px;
        font-size: 11px;
        font-weight: 600;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 5px;
        border-radius: 10px;
    }

    /* Hero Section */
    .hero-exact,
    .hero-main-exact {
        min-height: 280px;
    }

    .hero-content-exact {
        padding: 20px;
        text-align: center;
    }

    .hero-content-exact h1 {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .hero-content-exact h2 {
        font-size: 20px;
        line-height: 1.3;
    }

    .btn-hero-exact {
        padding: 12px 24px;
        font-size: 14px;
        width: 100%;
        max-width: 280px;
    }

    .hero-badge-exact {
        font-size: 11px;
        padding: 4px 10px;
    }

    /* Icon Bar - 2x2 Grid */
    .icon-bar-exact {
        padding: 20px 0;
    }

    .icon-bar-grid-exact {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .icon-item-exact {
        flex-direction: column;
        text-align: center;
        padding: 16px 12px;
        gap: 8px;
    }

    .icon-item-exact .material-icons {
        font-size: 32px;
    }

    .icon-item-exact strong {
        font-size: 12px;
    }

    .icon-item-exact p {
        font-size: 10px;
        display: none;
    }

    /* Products Section */
    .products-section-exact {
        padding: 24px 0;
    }

    .section-header-exact h2 {
        font-size: 18px;
    }

    /* Product Grids - 2 columns */
    .product-grid-exact,
    .products-grid-exact,
    .woo-products-grid-12345.woo-view-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px;
    }

    .product-card-exact {
        padding: 10px;
    }

    .product-card-exact img {
        height: 261px;
    }

    .product-card-exact h3 {
        font-size: 12px;
        line-height: 1.3;
        -webkit-line-clamp: 2;
    }

    .product-card-exact .price {
        font-size: 14px;
    }

    .btn-cart-exact {
        padding: 8px 12px;
        font-size: 12px;
    }

    /* New Arrivals Slider */
    .new-arrivals-exact,
    .new-arrivals-5678 {
        padding: 24px 0;
    }

    .new-arrivals-exact h2 {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .slider-nav-exact,
    .slider-nav-5678 {
        display: none !important;
    }

    /* Reviews Section Mobile */
    .reviews-exact {
        padding: 32px 0;
    }

    .reviews-header-exact {
        margin-bottom: 20px;
    }

    .reviews-header-exact .btn-secondary-exact {
        display: none !important;
    }

    .arrivals-track-exact,
    .products-track-5678 {
        display: flex;
        gap: 12px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 8px 0;
    }

    .arrival-card-exact,
    .products-track-5678 .product-card-exact {
        scroll-snap-align: start;
        min-width: 160px;
        max-width: 160px;
        flex: 0 0 160px;
    }

    .arrival-card-exact h3,
    .arrival-card-exact h4 {
        font-size: 13px;
        min-height: 50px;
    }

    .arrival-card-exact picture {
        margin-bottom: 8px;
    }

    .arrival-card-exact img {
        height: 120px;
    }

    .arrival-card-exact .product-rating-exact {
        margin: 4px auto;
    }

    .arrival-card-exact .product-rating-exact .star-exact {
        font-size: 14px;
    }

    .arrival-card-exact .price-exact {
        font-size: 14px;
        margin: 6px 0;
    }

    .arrival-card-exact .btn-cart-exact {
        padding: 8px 12px;
        font-size: 12px;
    }

    /* Category Page - Complete Mobile Redesign */
    .container-12345 {
        padding: 0 12px;
    }

    .woo-categories-page-12345,
    .woo-products-page-12345 {
        padding: 12px 0;
    }
    
    .woo-category-select-12345 {
        width: 100%;
    }

    /* Category Header */
    .downloads-header-12345 {
        padding: 16px 0;
    }

    .downloads-header-content-12345 h1 {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .downloads-header-content-12345 p {
        font-size: 13px;
        line-height: 1.5;
    }

    /* Subcategories */
    .woo-subcategories-12345 {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 16px !important;
    }

    .subcategory-card-woo-12345 {
        padding: 10px 14px;
        font-size: 13px;
        flex: 0 0 auto;
    }

    .subcategory-card-woo-12345 .material-icons {
        font-size: 18px;
    }

    /* Toolbar */
    .woo-toolbar-12345 {
        flex-direction: column;
        gap: 12px;
        padding: 12px;
        margin-bottom: 16px;
    }

    .woo-toolbar-left-12345,
    .woo-toolbar-right-12345 {
        width: 100%;
        flex-direction: column;
        gap: 10px;
    }

    .woo-results-count-12345 {
        font-size: 12px;
        text-align: center;
    }

    .woo-sort-12345,
    .woo-limit-12345 {
        width: 100%;
        justify-content: space-between;
    }

    .woo-sort-12345 label,
    .woo-limit-12345 label {
        font-size: 12px;
    }

    .woo-select-12345 {
        flex: 1;
        padding: 10px 12px;
        font-size: 14px;
        min-height: 44px;
    }

    /* View Toggle */
    .woo-view-toggle-12345 {
        display: none;
    }

    /* Filter Button */
    .woo-filter-btn-12345 {
        width: 100%;
        justify-content: center;
        padding: 10px 14px;
        font-size: 14px;
        min-height: 44px;
    }

    .woo-filter-menu-12345 {
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        max-height: 60vh;
        overflow-y: auto;
        border-radius: 16px 16px 0 0;
        padding: 20px;
        z-index: 10000;
    }

    /* Category Grid */
    .woo-categories-grid-12345.woo-view-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px;
    }

    /* Category Card */
    .woo-category-card-12345 {
        padding: 12px;
    }

    .woo-category-card-12345 img {
        height: 100px;
    }

    .woo-category-card-12345 h3 {
        font-size: 13px;
    }

    /* Pagination */
    .woo-pagination-12345 {
        flex-wrap: wrap;
        gap: 6px;
        padding: 16px 0;
    }

    .woo-pagination-12345 a,
    .woo-pagination-12345 span {
        min-width: 40px;
        height: 40px;
        font-size: 13px;
    }

    .woo-pagination-12345 .prev-12345,
    .woo-pagination-12345 .next-12345 {
        padding: 0 12px;
    }

    /* No Products Message */
    .woo-no-products-12345 {
        padding: 40px 20px;
    }

    .woo-no-products-12345 .material-icons {
        font-size: 48px;
    }

    .woo-no-products-12345 p {
        font-size: 14px;
    }

    /* Product Detail Page - Complete Mobile Redesign */
    .product-detail-page-12345 {
        padding: 12px 0;
    }

    .product-header-row-12345 {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
        padding-bottom: 12px;
        margin-bottom: 16px;
    }

    .product-header-left-12345 {
        width: 100%;
    }

    .product-header-meta-12345 {
        width: 100%;
        align-items: flex-start;
    }

    .product-title-12345 {
        font-size: 20px;
        line-height: 1.3;
    }

    .product-header-price-12345,
    .price-value-12345 {
        font-size: 28px !important;
    }

    .product-header-price-12345 {
        justify-content: flex-start;
    }

    .product-liveinfo-12345 {
        font-size: 10px;
    }

    /* Main Layout Mobile */
    .product-detail-12345 {
        grid-template-columns: 1fr !important;
        gap: 16px;
        padding: 0;
        border: none;
    }

    .product-cta-row-12345 {
        grid-template-columns: 1fr !important;
        padding: 0;
    }

    .product-main-grid-12345,
    .product-main-row-12345 {
        grid-template-columns: 1fr !important;
        gap: 16px;
    }

    .product-main-image-12345,
    .product-media-12345 {
        width: 100%;
        border-right: none;
        padding-right: 0;
    }

    /* Main Image Mobile */
    .main-image-wrapper-12345 {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 4/3;
        max-height: 350px;
    }

    .main-image-wrapper-12345 img,
    .main-image-12345 {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    /* Product Info Row Mobile */
    .product-info-row-12345 {
        grid-template-columns: 1fr !important;
        gap: 16px;
        padding: 12px;
    }

    /* Thumbnails Mobile - Horizontal Scroll */
    .thumbnails-12345 {
        position: relative !important;
        left: auto !important;
        bottom: auto !important;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding: 10px 4px;
        margin-top: 8px;
        background: #f5f5f5;
        border-radius: 4px;
        justify-content: flex-start;
        flex-wrap: nowrap;
    }

    .thumbnails-12345::-webkit-scrollbar {
        height: 4px;
    }

    .thumbnails-12345::-webkit-scrollbar-thumb {
        background: #ccc;
        border-radius: 2px;
    }

    .thumbnail-12345 {
        flex: 0 0 65px;
        width: 65px;
        height: 65px;
    }

    /* Short Description Mobile */
    .short-description-modern {
        min-height: auto;
        padding: 12px;
        font-size: 14px;
    }

    .product-main-short-12345 {
        font-size: 14px;
    }

    /* Product Price Bar Mobile */
    .product-price-bar-12345 {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
        justify-content: flex-start;
        margin-bottom: 12px;
    }

    .product-cta-inline-12345 {
        flex-direction: column;
        width: 100%;
    }

    .product-cta-right-12345 {
        justify-content: center;
    }

    .add-to-cart-form-12345 {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .product-actions-wrapper-12345 {
        width: 100%;
    }

    .qty-wrapper-12345 {
        width: 100%;
        justify-content: center;
    }

    .qty-btn-12345 {
        width: 44px;
        height: 44px;
    }

    .qty-input-12345 {
        width: 60px;
        height: 44px;
        font-size: 16px;
    }

    .btn-add-cart-12345,
    #add-to-cart-btn-12345 {
        width: 100%;
        padding: 16px 20px;
        font-size: 16px;
        min-height: 52px;
    }

    /* Variant Select Mobile */
    .variant-wrapper-12345 {
        width: 100%;
    }

    .variant-select-12345 {
        width: 100%;
        padding: 14px 12px;
        font-size: 16px;
        min-height: 48px;
    }

    /* Bundle Content Mobile */
    .bundle-content-12345 {
        margin-top: 16px;
    }

    .bundle-header-12345 {
        font-size: 14px;
    }

    .bundle-items-compact-12345 {
        gap: 8px;
    }

    .bundle-item-compact-12345 {
        font-size: 13px;
        padding: 8px;
    }

    .bundle-savings-compact-12345 {
        padding: 12px;
    }

    /* Trust Checklist Mobile */
    .product-trust-checklist-12345 {
        margin: 16px 0;
    }

    .trust-checklist-list-12345 {
        gap: 8px;
    }

    .trust-checklist-item-12345 {
        font-size: 13px;
        padding: 8px 10px;
    }

    .trust-icon-12345 {
        font-size: 18px !important;
    }

    /* Product Gallery Mobile */
    .product-gallery-12345 {
        position: relative;
    }

    .product-gallery-main-12345 {
        width: 100%;
        aspect-ratio: 4/3;
    }

    .product-gallery-thumbs-12345 {
        display: flex;
        gap: 8px;
        overflow-x: auto;
        padding: 12px 0;
        -webkit-overflow-scrolling: touch;
    }

    .product-gallery-thumb-12345 {
        flex: 0 0 60px;
        width: 60px;
        height: 60px;
    }

    /* Product Info Mobile */
    .product-info-12345 {
        padding: 0;
    }

    .price-value-12345 {
        font-size: 26px;
    }

    .price-old-12345 {
        font-size: 14px !important;
    }

    .price-badge-12345 {
        font-size: 12px !important;
        padding: 3px 8px !important;
    }

    .price-tax-12345 {
        font-size: 11px;
    }

    /* Product Tabs Mobile */
    .product-tabs-wrapper-12345,
    .tab-container-12345 {
        margin-top: 20px;
    }

    .tab-nav-12345 {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        gap: 0;
        border-bottom: 1px solid #e0e0e0;
    }

    .tab-btn-12345 {
        flex: 0 0 auto;
        white-space: nowrap;
        padding: 12px 16px;
        font-size: 13px;
    }

    .tab-content-12345 {
        padding: 16px 0;
    }

    .tab-panel-12345 {
        font-size: 14px;
        line-height: 1.6;
    }

    /* Related Products Mobile */
    .product-related-12345 {
        margin-top: 24px;
    }

    .product-related-12345 h2 {
        font-size: 18px;
        margin-bottom: 16px;
    }

    .product-related-12345 .product-grid-exact {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px;
    }

    /* Sticky Add to Cart on Mobile */
    .product-add-to-cart-12345 {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: #fff;
        padding: 12px 16px;
        box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
        z-index: 999;
        display: flex;
        gap: 12px;
        align-items: center;
    }

    .product-add-to-cart-12345 .btn-add-cart-12345 {
        flex: 1;
        padding: 14px 20px;
        font-size: 15px;
    }

    /* Product Tabs Mobile - Accordion Style */
    .product-tabs-12345 .tab-nav-12345 {
        display: none;
    }

    .product-tabs-12345 .tab-panel-12345 {
        display: block;
        border-top: 1px solid #e5e5e5;
        padding: 16px 0;
    }

    .product-tabs-12345 .tab-panel-12345::before {
        content: attr(data-title);
        display: block;
        font-weight: 600;
        font-size: 14px;
        margin-bottom: 12px;
        color: #333;
    }

    /* Cart Page Mobile */
    .cart-page-12345 {
        padding: 16px 0;
    }

    .cart-content-12345 {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .cart-item-12345 {
        grid-template-columns: 70px 1fr;
        grid-template-rows: auto auto auto;
        gap: 8px;
        padding: 12px;
        position: relative;
    }

    .cart-item-details-12345 {
        grid-column: 2;
        grid-row: 1;
    }

    .cart-item-details-12345 h3 {
        font-size: 13px;
        padding-right: 60px;
    }

    .cart-item-actions-12345 {
        position: absolute;
        top: 12px;
        right: 12px;
    }

    .cart-item-image-12345 {
        grid-row: 1 / 3;
    }

    .cart-item-info-12345 {
        grid-column: 2;
    }

    .cart-item-quantity-12345 {
        grid-column: 1 / -1;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: 12px;
        border-top: 1px solid #f0f0f0;
    }

    .cart-item-price-12345 {
        grid-column: 2;
        text-align: right;
    }

    .cart-item-remove-12345 {
        position: absolute;
        top: 8px;
        right: 8px;
    }

    /* Cart Summary - nicht mehr sticky */
    .cart-summary-12345 {
        position: relative;
        background: #fff;
        padding: 0;
        box-shadow: none;
        margin: 0;
        border-radius: 0;
    }

    .btn-checkout-12345 {
        width: 100%;
        padding: 16px;
        font-size: 16px;
    }

    /* Checkout Page Mobile - Complete Responsive */
    .checkout-page-12345 {
        padding: 0;
        background: #f9fafb;
        margin-top: 0;
    }

    .checkout-page-12345 .container-exact {
        padding: 0;
    }

    .checkout-shell-12345 {
        padding: 0;
        border-radius: 0;
        box-shadow: none;
        background: transparent;
    }

    .checkout-page-12345 .checkout-title-12345 {
        font-size: 20px;
        margin: 16px 0;
        text-align: left;
        padding: 0 16px;
    }

    /* Alert Error */
    .alert-error-12345 {
        margin: 0 16px 16px 16px;
        padding: 12px;
        font-size: 13px;
        border-radius: 8px;
    }

    /* Checkout Form Grid - Stack Mobile */
    .checkout-form-12345 {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .checkout-main-row-12345 {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .checkout-left-12345,
    .checkout-right-12345 {
        display: flex;
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    /* Checkout Sections */
    .checkout-section-12345 {
        padding: 16px;
        border-radius: 0;
        margin-bottom: 8px;
        background: #fff;
        border-left: none;
        border-right: none;
    }

    .checkout-section-12345:first-of-type {
        border-top: none;
    }

    .checkout-section-12345 h2,
    .checkout-section-12345 h3 {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 14px;
        color: #111;
    }

    /* Form Rows Stack */
    .form-row-12345 {
        flex-direction: column;
        gap: 12px;
    }

    .form-group-12345 {
        width: 100%;
        margin-bottom: 0;
    }

    .form-group-12345 label {
        font-size: 13px;
        margin-bottom: 6px;
        font-weight: 600;
    }

    .form-group-12345 input,
    .form-group-12345 select,
    .form-group-12345 textarea {
        padding: 14px 12px;
        font-size: 16px;
        border-radius: 6px;
        min-height: 48px;
        -webkit-appearance: none;
    }

    .form-group-12345 textarea {
        min-height: 80px;
    }

    .form-group-12345 select {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 12px center;
        background-size: 12px;
        padding-right: 36px;
    }

    /* Payment Methods Mobile */
    #checkout-payment-methods-98765 {
        gap: 8px;
    }

    #checkout-payment-methods-98765 .form-group-12345 {
        padding: 0;
        background: transparent;
        border: none;
        box-shadow: none;
        border-radius: 0;
        margin-bottom: 0;
    }

    .payment-method-label-12345 {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 16px;
        background: #fff;
        border: 2px solid #e5e5e5;
        border-radius: 10px;
        cursor: pointer;
        min-height: 60px;
        transition: all 0.2s;
    }

    .payment-method-label-12345:active {
        background: #f9fafb;
        border-color: #111;
    }

    input[type="radio"]:checked + .payment-method-label-12345,
    .payment-method-label-12345:has(input[type="radio"]:checked) {
        border-color: #111;
        background: #fafbfc;
    }

    .payment-method-label-12345 input[type="radio"],
    .checkout-section-12345 input[type="radio"] {
        width: 22px !important;
        height: 22px !important;
        flex-shrink: 0;
        accent-color: #000 !important;
        -webkit-appearance: auto !important;
        appearance: auto !important;
        opacity: 1 !important;
        cursor: pointer;
    }

    .payment-icon-12345 {
        width: 40px;
        height: 32px;
        flex-shrink: 0;
    }

    .payment-text-12345 {
        font-size: 14px;
        font-weight: 500;
        flex: 1;
        line-height: 1.4;
    }

    .payment-description-12345 {
        font-size: 12px;
        color: #666;
        margin-top: 8px;
        padding-left: 0;
        margin-left: 74px;
        line-height: 1.5;
    }

    /* Checkout Summary Mobile */
    .checkout-summary-12345 {
        position: relative;
        margin: 0;
        padding: 16px;
        border-radius: 0;
        background: #fff;
        order: 2;
        border-left: none;
        border-right: none;
    }

    .checkout-summary-12345 h3 {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 14px;
    }

    .checkout-item-12345 {
        padding: 10px 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .checkout-item-12345:last-of-type {
        border-bottom: none;
    }

    .checkout-item-image-12345 {
        width: 50px;
        height: 50px;
    }

    .checkout-item-image-12345 img {
        width: 50px;
        height: 50px;
        object-fit: cover;
        border-radius: 4px;
    }

    .checkout-item-info-12345 h4 {
        font-size: 13px;
        margin-bottom: 4px;
    }

    .checkout-item-qty-12345,
    .checkout-item-sku-12345 {
        font-size: 11px;
        color: #888;
    }

    .summary-row-12345 {
        display: flex;
        justify-content: space-between;
        font-size: 14px;
        padding: 10px 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .summary-total-12345 {
        font-size: 18px;
        font-weight: 700;
        padding-top: 12px;
        margin-top: 8px;
        border-top: 2px solid #e5e5e5;
        border-bottom: none;
    }

    /* Checkout Buttons */
    .checkout-submit-12345,
    .btn-checkout-primary-12345,
    .checkout-section-12345 button[type="submit"] {
        width: 100%;
        padding: 16px;
        font-size: 16px;
        font-weight: 600;
        margin-top: 16px;
        border-radius: 8px;
        min-height: 52px;
    }

    /* Checkbox Labels */
    .checkout-checkbox-label-12345 {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        font-size: 13px;
        line-height: 1.6;
        cursor: pointer;
        padding: 8px 0;
    }

    .checkout-checkbox-label-12345 input[type="checkbox"],
    .checkout-section-12345 input[type="checkbox"],
    .checkout-summary-12345 input[type="checkbox"] {
        min-height: auto !important;
        width: 22px !important;
        height: 22px !important;
        margin-top: 2px;
        flex-shrink: 0;
        cursor: pointer;
        accent-color: #000 !important;
        -webkit-appearance: auto !important;
        appearance: auto !important;
        opacity: 1 !important;
        position: relative !important;
        border: 2px solid #666 !important;
        border-radius: 4px !important;
        background-color: #fff !important;
    }

    .checkout-checkbox-label-12345 input[type="checkbox"]:checked,
    .checkout-section-12345 input[type="checkbox"]:checked,
    .checkout-summary-12345 input[type="checkbox"]:checked {
        background-color: #000 !important;
        border-color: #000 !important;
    }

    .checkout-checkbox-label-12345 a {
        color: #0066cc;
        text-decoration: underline;
    }

    /* AGB Checkbox - spezielle Behandlung für langen Text */
    .checkout-section-12345 .form-group-12345:has(input[name="rechtstext"]) {
        background: #f9fafb;
        padding: 12px;
        border-radius: 8px;
        margin-bottom: 16px;
    }

    /* Currency Notice Mobile */
    .checkout-currency-notice-12345 {
        margin-top: 12px !important;
        padding: 12px !important;
        border-radius: 8px !important;
    }

    .checkout-currency-notice-12345 .material-icons {
        font-size: 18px !important;
    }

    .checkout-currency-notice-12345 div {
        font-size: 12px !important;
    }

    /* USt-ID Feedback */
    .ustid-feedback-12345 {
        font-size: 12px;
        margin-top: 6px;
        padding: 8px;
        border-radius: 6px;
    }

    /* Password Fields Container */
    #password_fields_container {
        margin-left: 0 !important;
        padding: 12px !important;
    }

    /* Create Account Checkbox hint */
    .checkout-section-12345 small {
        margin-left: 32px !important;
    }

    /* Account Pages Mobile */
    .account-page-12345 {
        padding: 12px 0;
    }

    .account-shell-12345 {
        grid-template-columns: 1fr;
        padding: 12px;
        gap: 12px;
    }

    .account-title-12345 {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .account-tabs-12345 {
        grid-row: auto;
        grid-column: 1;
        flex-direction: row;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        border-right: none;
        border-bottom: 1px solid #e1e4e8;
        padding: 0 0 10px;
        margin-bottom: 16px;
        gap: 8px;
    }

    .account-sidebar-group-12345 {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 6px;
    }

    .account-sidebar-title-12345 {
        display: none;
    }

    .account-tab-12345 {
        white-space: nowrap;
        padding: 8px 14px;
        font-size: 13px;
    }

    .account-form-12345 {
        grid-row: auto;
        grid-column: 1;
    }

    .account-sidebar-12345 {
        display: none;
    }

    .account-content-12345 {
        width: 100%;
    }

    .account-dashboard-grid-12345 {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .account-dashboard-card-12345 {
        padding: 14px;
    }

    .account-dashboard-label-12345 {
        font-size: 12px;
    }

    .account-dashboard-value-12345 {
        font-size: 16px;
    }

    .account-stats-grid-12345 {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .account-stat-card-12345 {
        padding: 16px;
    }

    /* Account Tables Mobile - Horizontal Scroll */
    .account-table-wrapper-12345 {
        margin: 0 -12px;
        padding: 0 12px;
    }

    .account-table-12345 {
        font-size: 11px;
        min-width: 600px;
    }

    .account-table-12345 th,
    .account-table-12345 td {
        padding: 8px 6px;
    }

    /* Account Form Mobile */
    .account-form-12345 .form-row-12345 {
        flex-direction: column;
        gap: 12px;
    }

    .account-form-12345 .form-group-12345 {
        width: 100%;
    }

    .account-form-12345 input,
    .account-form-12345 select {
        padding: 12px;
        font-size: 16px;
    }

    .account-form-12345 .btn-12345 {
        width: 100%;
        padding: 14px;
        font-size: 15px;
    }

    /* Login/Register Mobile */
    .auth-page-12345 {
        padding: 20px 16px;
        min-height: calc(100vh - 120px);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .auth-shell-12345 {
        max-width: 100%;
        padding: 24px 20px;
        border-radius: 8px;
    }

    .auth-tabs-12345 {
        flex-direction: row;
        gap: 0;
        margin-bottom: 20px;
    }

    .auth-tab-12345 {
        flex: 1;
        text-align: center;
        padding: 12px 16px;
        font-size: 14px;
    }

    .auth-intro-12345 {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .auth-form-12345 .form-group-12345 {
        margin-bottom: 16px;
    }

    .auth-form-12345 input {
        padding: 14px 12px;
        font-size: 16px;
    }

    .auth-password-row-12345 {
        position: relative;
    }

    .auth-password-toggle-12345 {
        position: absolute;
        right: 12px;
        top: 50%;
        transform: translateY(-50%);
    }

    .auth-remember-row-12345 {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }

    .auth-submit-12345 {
        width: 100%;
        padding: 16px;
        font-size: 16px;
        margin-top: 8px;
    }

    .auth-card-12345 {
        padding: 24px 20px;
        max-width: 100%;
    }

    .auth-card-12345 h1 {
        font-size: 22px;
    }

    /* Footer Mobile */
    .footer-exact {
        padding: 32px 0 24px;
    }

    .footer-grid-exact {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-grid-exact > div {
        text-align: center;
    }

    .footer-grid-exact h3 {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .footer-grid-exact ul {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .footer-grid-exact a {
        font-size: 13px;
    }

    .footer-bottom-exact {
        flex-direction: column;
        gap: 16px;
        text-align: center;
        padding-top: 20px;
    }

    /* Breadcrumbs Mobile - Horizontal Scroll */
    .downloads-breadcrumb-12345,
    .breadcrumb-nav-12345 {
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
        padding: 12px 16px;
    }

    .breadcrumb-nav-12345::-webkit-scrollbar {
        display: none;
    }

    /* Support Chat Mobile */
    #sk24-support-chat-12345 {
        bottom: 70px;
        right: 12px;
    }

    #sk24-support-chat-window-12345 {
        width: calc(100vw - 24px);
        max-width: 360px;
        right: 0;
        bottom: 60px;
    }

    /* Purchase Notification Mobile - ausblenden */
    .purchase-notification-container-12345,
    .purchase-notification-12345 {
        display: none !important;
    }

    .purchase-notification-12345 {
        min-width: auto;
        max-width: none;
    }

    /* Touch Target Optimization */
    button,
    a,
    input[type="submit"],
    input[type="button"],
    .clickable {
        min-height: 44px;
    }

    /* Hide desktop-only elements */
    .desktop-only {
        display: none !important;
    }
}

/* === SMALL MOBILE (480px) === */
@media (max-width: 480px) {
    .container-exact {
        padding: 0 12px;
    }

    /* Even smaller header */
    .logo-image-exact {
        max-height: 24px;
    }

    .icon-action-exact {
        min-width: 44px;
        min-height: 44px;
    }

    .icon-action-exact .material-icons {
        font-size: 26px;
    }

    .cart-badge-exact {
        min-width: 18px;
        height: 18px;
        font-size: 10px;
    }

    /* Hero smaller */
    .hero-exact,
    .hero-main-exact {
        min-height: 240px;
    }

    .hero-content-exact h2 {
        font-size: 18px;
    }

    .btn-hero-exact {
        padding: 10px 20px;
        font-size: 13px;
    }

    /* 2 columns for small screens */
    .product-grid-exact,
    .products-grid-exact,
    .woo-products-grid-12345.woo-view-grid,
    .woo-categories-grid-12345.woo-view-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px;
    }

    .product-card-exact img {
        height: 160px;
    }

    /* Product Detail */
    .product-title-12345 {
        font-size: 16px;
    }

    .price-value-12345 {
        font-size: 22px;
    }

    /* Cart Item Small Mobile */
    .cart-item-12345 {
        grid-template-columns: 60px 1fr;
    }

    /* New Arrivals Small Mobile */
    .new-arrivals-exact h2 {
        font-size: 18px;
    }

    .arrival-card-exact {
        min-width: 140px;
        max-width: 140px;
        flex: 0 0 140px;
    }

    .arrival-card-exact h3,
    .arrival-card-exact h4 {
        font-size: 12px;
        min-height: 45px;
    }

    .arrival-card-exact img {
        height: 100px;
    }

    /* Checkout Small Mobile */
    .checkout-page-12345 .checkout-title-12345 {
        font-size: 18px;
        padding: 0 12px;
    }

    .checkout-section-12345 {
        padding: 14px 12px;
    }

    .checkout-section-12345 h2,
    .checkout-section-12345 h3 {
        font-size: 15px;
        margin-bottom: 12px;
    }

    .form-group-12345 input,
    .form-group-12345 select,
    .form-group-12345 textarea {
        padding: 12px 10px;
        font-size: 16px;
        min-height: 46px;
    }

    .payment-method-label-12345 {
        padding: 14px 12px;
        min-height: 56px;
        gap: 10px;
    }

    .payment-icon-12345 {
        width: 36px;
        height: 28px;
    }

    .payment-text-12345 {
        font-size: 13px;
    }

    .payment-description-12345 {
        font-size: 11px;
        margin-left: 68px;
    }

    .checkout-checkbox-label-12345 {
        font-size: 12px;
    }

    .checkout-checkbox-label-12345 input[type="checkbox"],
    .checkout-section-12345 input[type="checkbox"],
    .checkout-summary-12345 input[type="checkbox"] {
        width: 20px !important;
        height: 20px !important;
    }

    .checkout-submit-12345 {
        font-size: 15px;
        padding: 14px;
    }

    /* Footer */
    .footer-grid-exact {
        gap: 20px;
    }
}

/* === LANDSCAPE PHONE === */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-exact,
    .hero-main-exact {
        min-height: 200px;
    }

    .hero-content-exact {
        padding: 16px;
    }

    .hero-content-exact h2 {
        font-size: 18px;
    }

    /* 3 column grid in landscape */
    .products-grid-exact,
    .woo-products-grid-12345.woo-view-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

/* === ADDITIONAL COMPONENT STYLES === */
@media (max-width: 768px) {
    /* Wiki/Knowledge Base Mobile */
    .wiki-page-12345,
    .kb-page-12345 {
        padding: 16px 0;
    }

    .wiki-header-12345 h1,
    .kb-header-12345 h1 {
        font-size: 22px;
    }

    .wiki-categories-grid-12345,
    .kb-categories-12345 {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .wiki-article-12345,
    .kb-article-12345 {
        padding: 16px;
    }

    /* FAQ Mobile */
    .faq-page-12345 {
        padding: 16px 0;
    }

    .faq-item-12345 {
        padding: 14px;
    }

    .faq-question-12345 {
        font-size: 14px;
    }

    /* Static Pages (Imprint, Privacy, etc.) Mobile */
    .static-page-12345,
    .legal-page-12345 {
        padding: 20px 16px;
    }

    .static-page-12345 h1,
    .legal-page-12345 h1 {
        font-size: 22px;
        margin-bottom: 16px;
    }

    .static-page-12345 h2,
    .legal-page-12345 h2 {
        font-size: 18px;
    }

    .static-page-12345 p,
    .legal-page-12345 p {
        font-size: 14px;
        line-height: 1.6;
    }

    /* Contact Form Mobile */
    .contact-form-12345 {
        padding: 20px;
    }

    .contact-form-12345 .form-group-12345 {
        margin-bottom: 16px;
    }

    .contact-form-12345 textarea {
        min-height: 120px;
    }

    /* Search Results Mobile */
    .search-results-12345 {
        padding: 16px 0;
    }

    .search-input-wrapper-12345 {
        flex-direction: column;
        gap: 12px;
    }

    .search-input-wrapper-12345 input {
        width: 100%;
        padding: 14px;
        font-size: 16px;
    }

    .search-input-wrapper-12345 button {
        width: 100%;
        padding: 14px;
    }

    /* Downloads Page Mobile */
    .downloads-page-12345 {
        padding: 16px 0;
    }

    .download-card-12345 {
        padding: 14px;
    }

    .download-card-12345 h3 {
        font-size: 14px;
    }

    /* Mobile-specific utilities */
    .mobile-hidden {
        display: none !important;
    }

    .mobile-full-width {
        width: 100% !important;
    }

    .mobile-text-center {
        text-align: center !important;
    }

    /* Ensure proper spacing for sticky elements */
    body {
        padding-bottom: 60px;
    }

    /* Fix for input zoom on iOS */
    input[type="text"],
    input[type="email"],
    input[type="password"],
    input[type="tel"],
    input[type="number"],
    input[type="search"],
    input[type="url"],
    select,
    textarea {
        font-size: 16px !important;
    }
}

/* === TABLET ADDITIONAL STYLES === */
@media (min-width: 769px) and (max-width: 1024px) {
    /* Tablet-specific adjustments */
    .mobile-menu-toggle-12345 {
        display: none;
    }

    .nav-exact {
        display: block;
    }

    /* Slightly smaller mega menu on tablet */
    .mega-menu-exact {
        max-width: 85vw;
    }
}

/* === PRINT STYLES === */
@media print {
    .mobile-menu-toggle-12345,
    .mobile-menu-overlay-12345,
    .nav-exact,
    .utility-bar-exact,
    #sk24-support-chat-12345,
    .purchase-notification-container-12345 {
        display: none !important;
    }

    .header-exact {
        position: static;
        box-shadow: none;
    }
}
