﻿/* =============================================================================
 * RD-Hobby — konsolidiertes Stylesheet
 *
 * Zusammengefuehrt aus den frueheren Dateien base.css, main.min.css und site.css.
 * Die Reihenfolge der drei Abschnitte entspricht exakt der frueheren
 * Ladereihenfolge in _Layout/_ErrorLayout — die Kaskade ist damit unveraendert.
 *
 *   1. BASIS        (ehemals wwwroot/css/base.css)
 *      10px-Wurzel, Grundtypografie, Containerbreiten. Muss vorn stehen.
 *   2. SHOP-LEGACY  (ehemals wwwroot/Content/main.min.css)
 *      Historisches Shop-Theme. Kam aus main.scss; es gibt keine funktionierende
 *      SCSS-Pipeline mehr, diese Datei ist die Quelle. Hier direkt editieren.
 *   3. APP          (ehemals wwwroot/css/site.css)
 *      Alles, was im Rahmen des UI-Reworks dazugekommen ist.
 *
 * Nicht enthalten und weiterhin separat verlinkt: font-awesome (eigene
 * @font-face-Pfade) und fancybox. Utilities kommen aus tailwind.css, das
 * bewusst ZULETZT laedt.
 * ========================================================================== */
@import url(https://fonts.googleapis.com/css?family=Roboto:400,300,400italic,500,700,100);
@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,800,300,600,700);
@import url(https://fonts.googleapis.com/css?family=Abel);

/* ===========================================================================
 * 1. BASIS — ehemals wwwroot/css/base.css
 * ======================================================================== */

/*
 * base.css
 * ----------------------------------------------------------------------------
 * Basis-Schicht der Website: Wurzelschriftgröße, Grundtypografie,
 * Container-Breiten, Formular-Label und das Validierungs-Sicherheitsnetz.
 *
 * Ladereihenfolge: als ERSTES Stylesheet, VOR font-awesome, main*.css,
 * site.css und tailwind.css. Alles hier ist bewusst niedrig spezifiziert
 * (Typselektoren bzw. einzelne Klassen), damit Theme- und Utility-Regeln
 * darüber gewinnen.
 */

/* ===========================================================================
 * 1. Wurzel und Grundtypografie
 * ======================================================================== */

/* 10px Wurzelschriftgröße: sämtliches rem-basierte Site-CSS (main.css,
   View-Styles, Produktkarten) ist gegen diesen Wert geschrieben. Ohne die
   Regel wachsen alle rem-Abstände um den Faktor 1,6.
   Tailwind-Tokens sind deshalb in Styles/tailwind.css in px gepinnt. */
html {
    font-size: 10px;
}

body {
    margin: 0;
    font-size: 14px;
    line-height: 1.42857143;
    color: #333;
    background-color: #fff;
}

/* Links ohne Unterstreichung, Unterstreichung erst bei Hover/Fokus.
   Die Farben übersteuert das Theme (main.css) an vielen Stellen. */
a {
    color: #337ab7;
    text-decoration: none;
}
a:hover,
a:focus {
    color: #23527c;
    text-decoration: underline;
}

/* Trennlinie mit 20px Außenabstand — bestimmt den vertikalen Fluss auf
   nahezu allen Content-Seiten. */
hr {
    margin-top: 20px;
    margin-bottom: 20px;
    border: 0;
    border-top: 1px solid #eee;
    opacity: 1;
}

h1, .h1 { font-size: 36px; }
h2, .h2 { font-size: 30px; }
h3, .h3 { font-size: 24px; }
h4, .h4 { font-size: 18px; }
h5, .h5 { font-size: 14px; }
h6, .h6 { font-size: 12px; }
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 500;
    line-height: 1.1;
}
h4, h5, h6, .h4, .h5, .h6 { margin-top: 10px; }

p { margin: 0 0 10px; }

/* Listeneinzug in px statt des UA-Defaults (2rem wären mit der 10px-Wurzel
   nur 20px statt der gewohnten 40px). */
ul, ol {
    margin-top: 0;
    margin-bottom: 10px;
    padding-left: 40px;
}
ul ul, ol ul, ul ol, ol ol { margin-bottom: 0; }

/* ===========================================================================
 * 2. Container
 *    Feste Breiten je Breakpoint plus seitliches 15px-Padding. Das Padding
 *    gilt auch für .container-fluid: Zeilen, die darin per -mx-[15px]
 *    eingezogen werden (z. B. der mobile Navigations-Header), liefen sonst
 *    15px über den Viewport hinaus.
 *    Breakpoints identisch zu Styles/tailwind.css (768/992/1200/1600).
 * ======================================================================== */
.container,
.container-fluid {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}
@media (min-width: 768px) {
    .container { width: 750px; max-width: 750px; }
}
@media (min-width: 992px) {
    .container { width: 970px; max-width: 970px; }
}
@media (min-width: 1200px) {
    .container { width: 1170px; max-width: 1170px; }
}
/* Theme-Override aus main.css beibehalten (dort .container = 1570px ab 1600px). */
@media (min-width: 1600px) {
    .container { width: 1570px; max-width: 1570px; }
}

/* ===========================================================================
 * 3. Formulare
 * ======================================================================== */

/* Globales Label: 67 nackte <label> im Markup plus die LabelFor-Helper
   hängen an dieser Regel (fett, 5px Abstand nach unten).
   Die rdh-Komponenten setzen ihre Labels selbst (rdh-components.css). */
label {
    display: inline-block;
    max-width: 100%;
    margin-bottom: 5px;
    font-weight: 700;
}

/* Seitenblättern: Schriftgröße festpinnen, damit sie nicht an der
   10px-Wurzel hängt. Optik liefert site.css. */
.pagination {
    font-size: 14px;
}

/* Validierungs-Sicherheitsnetz für Formulare, die (noch) nicht auf
   rdh-field migriert sind. Auf rdh-Seiten stylt rdh-components.css die
   Fehler (höhere Spezifität + spätere Ladereihenfolge gewinnen dort). */
.field-validation-error { color: #a94442; }
input.input-validation-error,
select.input-validation-error,
textarea.input-validation-error { border-color: #a94442; }

/* ===========================================================================
 * 2. SHOP-LEGACY — ehemals wwwroot/Content/main.min.css (entminifiziert)
 * ======================================================================== */

@media print {
    a[href]:after {
        content:none;
    }
    header,.youarehere,.rdh-sidebar,.addToCartDiv,.pagination,.filter {
        display:none !important;
    }
}
#do_action .total_area,
#do_action .chose_area {
    border:1px solid #e6e4df;
    color:#696763;
    padding:30px 25px 30px 0;
    margin-bottom:80px;
}
select,
textarea {
    background:#f0f0e9;
    border:0;
    color:#696763;
    padding:5px;
    width:100%;
    border-radius:0;
    resize:none;
}
.recommended-item-control i,
a,
.btn {
    -moz-transition:300ms;
    -o-transition:300ms;
    -webkit-transition:300ms;
    transition:300ms;
}
.update,
.check_out,
.btn-important,
.recommended-item-control i,
.cart {
    background:#fe980f;
    border-radius:0;
    color:#fff;
    border:1px solid #797979 !important;
}
.step-one .heading {
    background:none repeat scroll 0 0 #f0f0e9;
    color:#363432;
    font-size:20px;
    margin-bottom:35px;
    padding:10px 25px;
    font-family:Roboto,sans-serif;
}
.bill-to p {
    color:#696763;
    font-size:20px;
    font-weight:300;
}
.login-form h2,
.signup-form h2 {
    color:#696763;
    font-family:Roboto,sans-serif;
    font-size:20px;
    font-weight:300;
    margin-bottom:30px;
}
.login-form form input,
.signup-form form input {
    background:#f0f0e9;
    border:medium none;
    color:#696763;
    display:block;
    font-family:Roboto,sans-serif;
    font-size:14px;
    font-weight:300;
    height:40px;
    margin-bottom:10px;
    outline:medium none;
    padding-left:10px;
    width:100%;
}
.login-form form button,
.signup-form form button {
    background:#fe980f;
    border:medium none;
    border-radius:0;
    color:#fff;
    display:block;
    font-family:Roboto,sans-serif;
}
.new,
.sale {
    position:absolute;
    top:0;
    right:0;
}
div .pagination ul li:first-child a,
div .pagination ul li:first-child span {
    border-bottom-left-radius:0;
    border-top-left-radius:0;
    margin-left:0;
}
div .pagination ul .active a,
div .pagination ul .active a:hover,
div .pagination ul .active a:focus,
div .pagination ul .active span,
div .pagination ul .active span:hover,
div .pagination ul .active span:focus {
    background-color:#fe980f;
    border-color:#fe980f;
    color:#fff;
    cursor:default;
    z-index:2;
}
div .pagination ul li a,
div .pagination ul li span {
    background-color:#ebebeb;
    border:0;
    float:left;
    line-height:1.42857;
    margin-left:-1px;
    padding:6px 12px;
    position:relative;
    text-decoration:none;
    margin-right:5px;
    color:#000;
}
.siglee-post-meta li i:after {
    content:"";
    position:absolute;
    width:auto;
    height:auto;
    border-color:transparent transparent transparent #fe980f;
    border-width:4px;
    border-style:solid;
    top:6px;
    left:24px;
}
#do_action {
    margin-bottom:50px;
}
#do_action .total_area {
    padding-bottom:18px !important;
}
.col-max {
    width:160px;
    height:160px;
}
.tableItem {
    display:table !important;
    border:1px #000;
}
.tableItem .tableContent {
    display:table-cell !important;
    vertical-align:middle;
    text-align:center;
}
@media screen and (min-width:1600px) {
    .tableItem .tableContent {
        width:500px !important;
        height:500px !important;
    }
}
@media screen and (min-width:1200px) and (max-width:1599px) {
    .tableItem .tableContent {
        width:450px !important;
        height:450px !important;
    }
}
@media screen and (min-width:992px) and (max-width:1199px) {
    .tableItem .tableContent {
        width:400px !important;
        height:400px !important;
    }
}
@media screen and (min-width:768px) and (max-width:991px) {
    .tableItem .tableContent {
        width:300px !important;
        height:300px !important;
    }
}
@media(max-width:767px) {
    .tableItem .tableContent {
        width:250px !important;
        height:250px !important;
    }
}
@media(max-width:480px) {
    .tableItem .tableContent {
        width:200px !important;
        height:200px !important;
    }
}
#content {
    padding-top:10px;
    padding-bottom:10px;
}
p.appsBigTitle {
    font-family:Segoe UI,Arial,Helvetica,Sans-serif;
    font-size:22px;
    line-height:27px;
    color:#000;
    font-weight:bold;
}
p.appsMiddleTitle {
    font-family:Segoe UI,Arial,Helvetica,Sans-serif;
    font-size:17px;
    line-height:25px;
    color:#000;
    font-weight:bold;
}
p.appsTitle {
    font-family:Segoe UI,Arial,Helvetica,Sans-serif;
    font-size:16px;
    color:#000;
    font-weight:bold;
}
p.appsLinkText {
    font-family:Segoe UI,Arial,Helvetica,Sans-serif;
    font-size:11px;
    font-weight:bold;
}
p.appsText {
    font-family:Segoe UI,Arial,Helvetica,Sans-serif;
    font-size:14px;
}
.cart_quantity_input {
    color:#696763;
    font-size:16px;
    text-align:center;
    font-family:Roboto,sans-serif;
}
.cart_button {
    display:block;
    margin-right:-12px;
    overflow:hidden;
}
.cart_button a {
    background:#e2e2d9;
    color:#fff;
    padding:5px 7px;
    font-size:16px;
}
.cart_button a:hover {
    background:#fe980f;
}
.update {
    margin-left:40px;
}
.check_out {
    margin-left:20px;
}
.step-one {
    margin-bottom:-10px;
}
#slider-carousel {
    padding-top:20px;
}
.contact-info .heading {
    text-transform:capitalize;
}
.contact-info .social-networks ul li a i {
    background:none;
}
.contact-info .social-networks ul li a:hover {
    color:#fe980f;
}
.contact-form .heading {
    text-transform:capitalize;
}
.social-networks {
    overflow:hidden;
    text-align:center;
}
.social-networks ul {
    margin-top:-5px;
    padding:0;
    display:inline-block;
}
.social-networks ul li {
    float:left;
    text-decoration:none;
    list-style:none;
    margin-right:20px;
}
.social-networks ul li:last-child {
    margin-right:0;
}
.social-networks ul li a {
    color:#999;
    font-size:25px;
}
#footer {
    background:#f0f0e9;
}
.footer-top .container {
    border-bottom:1px solid #e0e0da;
    padding-bottom:20px;
}
.address {
    margin-top:30px;
    position:relative;
    overflow:hidden;
}
.address img {
    width:100%;
}
.address p {
    color:#696763;
    font-family:Roboto,sans-serif;
    font-size:14px;
    font-weight:300;
    left:25px;
    position:absolute;
    top:50px;
}
.footer-widget {
    margin-bottom:68px;
}
.footer-widget .container {
    border-top:1px solid #fff;
    padding-top:15px;
}
#ajaxloader {
    height:286px;
}
#ajaxloader img {
    margin-top:140px;
}
.single-widget h2 {
    color:#696763;
    font-family:Roboto,sans-serif;
    font-size:16px;
    font-weight:500;
    margin-bottom:22px;
    text-transform:uppercase;
}
.single-widget h2 i {
    margin-right:15px;
}
.single-widget ul li a {
    /* inline-block, damit das vertikale Padding überhaupt wirkt: bei einem
       inline-<a> vergrößert padding-top/-bottom die Zeilenbox nicht, wodurch
       die Footer-Links direkt aufeinander klebten. */
    display:inline-block;
    color:#8c8c88;
    font-family:Roboto,sans-serif;
    font-size:14px;
    font-weight:300;
    padding:5px 0;
}
.single-widget ul li a i {
    margin-right:18px;
}
.single-widget ul li a:hover {
    background:none;
    color:#fe980f;
}
.searchform input {
    border:1px solid #ddd;
    color:#ccccc6;
    font-family:Roboto,sans-serif;
    font-size:14px;
    margin-top:0;
    outline:medium none;
    padding:7px;
    width:212px;
}
.searchform button {
    background:#fe980f;
    border:medium none;
    border-radius:0;
    margin-left:-5px;
    margin-top:-3px;
    padding:7px 17px;
}
.searchform button i {
    color:#fff;
    font-size:20px;
}
.searchform button:hover {
    background-color:#fe980f;
}
.searchform button:focus {
    background-color:#fe980f;
}
.searchform p {
    color:#8c8c88;
    font-family:Roboto,sans-serif;
    font-size:14px;
    font-weight:300;
    margin-top:25px;
}
.footer-bottom {
    background:#cb181d;
    padding-top:10px;
}
.footer-bottom p {
    color:#fff;
    font-family:Roboto,sans-serif;
    font-weight:300;
    margin-left:15px;
}
.footer-bottom p span a {
    color:#fe980f;
    font-style:italic;
    text-decoration:underline;
}
.header_top {
    background:none repeat scroll 0 0 #da866f;
}
.header-middle {
    background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAMAAABVCAYAAACM/15VAAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH3wMdCAwFGKMb8wAAAB1pVFh0Q29tbWVudAAAAAAAQ3JlYXRlZCB3aXRoIEdJTVBkLmUHAAAAIklEQVQ4y2M8IyH7nwEKmBiQwChnlDPKGeXAAAtfXhARygAuTQN6WHt0pQAAAABJRU5ErkJggg==");
}
.header-bottom {
    background:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAA/CAIAAACuBzUDAAAAAXNSR0IArs4c6QAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9gKDAw5LAeZi8YAAAAZdEVYdENvbW1lbnQAQ3JlYXRlZCB3aXRoIEdJTVBXgQ4XAAAAQ0lEQVQI172MsQ3AMAzDaF3RJf8/05+YwW7yQQcDgkST91kBfj0hYLQCTiYWQSMV9LISq5nrsHscH2d3fpmt+/Hix2w3CipaQFGAYAAAAABJRU5ErkJggg==") repeat-x;
    box-shadow:0 6px 12px rgba(0,0,0,.23);
}
ul.sub-menu {
    position:absolute;
    top:30px;
    left:0;
    background:#fff;
    list-style:none;
    padding:0;
    margin:0;
    width:220px;
    box-shadow:0 0 2px rgba(0,0,0,.5);
    display:none;
    z-index:800;
}
.fa-angle-down {
    padding-left:5px;
}
.cartImg {
    position:relative;
    text-align:center;
    float:left;
    margin-top:4px;
}
.cartItemCount {
    left:3px;
    position:absolute;
    top:1px;
    width:100%;
}
.login-form form span {
    line-height:25px;
}
.login-form form span input {
    width:15px;
    float:left;
    height:15px;
    margin-right:5px;
}
.login-form form button {
    margin-top:-5px;
}
.login-form label input {
    border:medium none;
    display:inline-block;
    height:0;
    margin-bottom:0;
    outline:medium none;
    padding-left:0;
}
.or {
    background:#fe980f;
    border-radius:40px;
    color:#fff;
    font-family:Roboto,sans-serif;
    font-size:16px;
    height:50px;
    line-height:50px;
    margin-top:75px;
    text-align:center;
    width:50px;
}
#slider {
    padding-bottom:45px;
}
.item {
    padding-left:100px;
}
.item h1 {
    color:#b4b1ab;
    font-family:abel;
    font-size:48px;
    margin-top:115px;
}
.item h1 span {
    color:#fe980f;
}
.item h2 {
    color:#363432;
    font-family:Roboto,sans-serif;
    font-size:28px;
    font-weight:700;
    margin-bottom:22px;
    margin-top:10px;
}
.item p {
    color:#363432;
    font-size:16px;
    font-weight:300;
    font-family:Roboto,sans-serif;
}
.item button:hover {
    background:#fe980f;
}
.pricing {
    position:absolute;
    right:40%;
    top:52%;
}
.get {
    background:#fe980f;
    border:0 none;
    border-radius:0;
    color:#fff;
    font-family:Roboto,sans-serif;
    font-size:16px;
    font-weight:300;
    margin-top:23px;
}
.control-carousel {
    position:absolute;
    top:50%;
    font-size:60px;
    color:#c2c2c1;
}
.control-carousel:hover {
    color:#fe980f;
}
.right {
    right:0;
}
.category-products {
    border:1px solid #f7f7f0;
    margin-bottom:35px;
    padding-bottom:20px;
}
.category-products .badge {
    background:none;
    border-radius:10px;
    color:#696763;
    display:inline-block;
    font-size:12px;
    font-weight:bold;
    line-height:1;
    min-width:10px;
    padding:3px 7px;
    text-align:center;
    vertical-align:baseline;
    white-space:nowrap;
}
.brands-name {
    border:1px solid #f7f7f0;
    padding-bottom:20px;
    padding-top:15px;
}
.shipping {
    background-color:#f2f2f2;
    margin-top:40px;
    overflow:hidden;
    padding-top:20px;
    position:relative;
}
.price-range {
    margin-top:30px;
}
.padding-right {
    padding-right:0;
}
.features_items {
    overflow:hidden;
}
.product-image-wrapper {
    border:1px solid #f7f7f5;
    overflow:hidden;
}
.single-products {
    position:relative;
}
.single-products:hover .product-overlay {
    display:block;
    height:100%;
}
.productinfo {
    height:270px;
    position:relative;
}
.productinfo h2 {
    color:#fe980f;
    font-family:Roboto,sans-serif;
    font-size:24px;
    font-weight:700;
}
.productinfo p {
    font-family:Roboto,sans-serif;
    font-size:14px;
    font-weight:400;
    color:#696763;
}
.productinfo img {
    vertical-align:middle;
    max-height:140px;
    max-width:230px;
}
.product-overlay {
    background:#fe980f;
    top:0;
    display:none;
    height:0;
    position:absolute;
    transition:height 500ms ease 0s;
    width:100%;
    display:block;
}
.product-overlay h2 {
    color:#fff;
    font-family:Roboto,sans-serif;
    font-size:24px;
    font-weight:700;
}
.product-overlay .overlay-content {
    position:absolute;
    bottom:0;
    text-align:center;
    width:100%;
}
.product-overlay .add-to-cart {
    background:#fff;
    border:0 none;
    border-radius:0;
    color:#fe980f;
    font-family:Roboto,sans-serif;
    font-size:15px;
    margin-bottom:25px;
}
.product-overlay .add-to-cart:hover {
    background:#fff;
    color:#fe980f;
}
.product-overlay p {
    font-family:Roboto,sans-serif;
    font-size:14px;
    font-weight:400;
    color:#fff;
}
.productinfo-helperframe {
    height:140px;
    width:100%;
    white-space:nowrap;
    text-align:center;
    margin:1em 0;
}
.productinfo-helper {
    display:inline-block;
    height:140px;
    vertical-align:middle;
}
.add-to-cart {
    background:#f5f5ed;
    border:0 none;
    border-radius:0;
    color:#696763;
    font-family:Roboto,sans-serif;
    font-size:15px;
    margin-bottom:25px;
}
.add-to-cart:hover {
    border:0 none;
    border-radius:0;
    background:#fe980f;
    color:#fff;
}
.add-to-cart i {
    margin-right:5px;
}
.add-to {
    margin-bottom:10px;
}
.choose {
    border-top:1px solid #f7f7f0;
}
.choose ul li a {
    color:#b3afa8;
    font-family:Roboto,sans-serif;
    font-size:13px;
    padding-left:0;
    padding-right:0;
}
.choose ul li a i {
    margin-right:5px;
}
.choose ul li a:hover {
    background:none;
    color:#fe980f;
}
.category-tab {
    overflow:hidden;
}
.category-tab ul {
    background:#40403e;
    border-bottom:1px solid #fe980f;
    list-style:none outside none;
    margin:0 0 30px;
    padding:0;
    width:100%;
}
.category-tab ul li a {
    border:0 none;
    border-radius:0;
    color:#b3afa8;
    display:block;
    font-family:Roboto,sans-serif;
    font-size:14px;
    text-transform:uppercase;
}
.category-tab ul li a:hover {
    background:#fe980f;
    color:#fff;
}
.bundlePanel .bundle {
    display:table;
    height:150px;
}
.bundlePanel .bundle div {
    display:table-cell;
    vertical-align:middle;
}
.bundlePanel .bundle .plus {
    font-size:x-large;
    color:#2f4f4f;
}
.bundlePanel .bundle img {
    max-width:150px;
    max-height:110px;
    text-align:center;
    margin:auto;
}
.bundlePanel .bundle .price {
    color:#fe980f;
    font-family:Roboto,sans-serif;
    font-size:20px;
    font-weight:600;
}
.bundlePanel .bundle button {
    font-size:12px;
}
.bundlePanel .bundle .bundleActionContainer {
    width:200px;
}
.bundlePanel .productName {
    padding-left:15px;
    font-size:smaller;
    line-height:.7em;
}
.recommended_items {
    overflow:hidden;
}
.recommended-item-control {
    position:absolute;
    top:50%;
    transform:translateY(-50%);
}
.recommended-item-control.left {
    left:0;
}
.recommended-item-control i {
    font-size:20px;
    padding:6px 12px;
    border:1px solid #5b5959;
}
.recommended-item-control i:hover {
    background:#dbd8d8;
    color:#000;
}
.our_partners {
    overflow:hidden;
}
.our_partners ul {
    background:#f7f7f0;
    margin-bottom:50px;
}
.our_partners ul li a:hover {
    background:none;
}
.filter {
    text-align:right;
}
.filter span {
    margin-left:30px;
    float:right;
}
.product-details {
    margin-bottom:40px;
    overflow:hidden;
    margin-top:10px;
}
#similar-product {
    margin-top:40px;
}
#reviews {
    padding-left:25px;
    padding-right:25px;
}
#reviews ul {
    background:#fff;
    border:0 none;
    list-style:none outside none;
    margin:0 0 20px;
    padding:0;
}
#reviews ul li {
    display:inline-block;
}
#reviews ul li a {
    color:#696763;
    display:block;
    font-family:Roboto,sans-serif;
    font-size:14px;
    padding-right:15px;
}
#reviews ul li a i {
    color:#fe980f;
    padding-right:8px;
}
#reviews ul li a:hover {
    background:#fff;
    color:#fe980f;
}
#reviews p {
    color:#363432;
}
#reviews textarea {
    background:#f0f0e9;
    border:medium none;
    color:#a6a6a1;
    height:195px;
    margin-bottom:25px;
    margin-top:15px;
    outline:medium none;
    padding-left:10px;
    padding-top:15px;
    resize:none;
    width:99.5%;
}
#reviews button {
    background:#fe980f;
    border:0 none;
    border-radius:0;
    color:#fff;
    font-family:Roboto,sans-serif;
    font-size:14px;
}
#reviews form span {
    display:block;
}
#reviews form span input {
    background:#f0f0e9;
    border:0 none;
    color:#a6a6a1;
    font-family:Roboto,sans-serif;
    font-size:14px;
    outline:medium none;
    padding:8px;
    width:48%;
}
#reviews form span input:last-child {
    margin-left:3%;
}
.item-control {
    position:absolute;
    top:35%;
}
.item-control i {
    background:#fe980f;
    color:#fff;
    font-size:20px;
    padding:5px 10px;
}
.item-control i:hover {
    background:#ccccc6;
}
.product-information {
    border:1px solid #f5e8d6;
    overflow:hidden;
    padding:20px;
    position:relative;
}
.product-information h2 {
    color:#363432;
    font-family:Roboto,sans-serif;
    font-size:20px;
    margin-top:0;
}
.product-information p {
    color:#696763;
    font-family:Roboto,sans-serif;
    margin-bottom:5px;
}
.product-information .uvp {
    color:#696763;
    font-family:Roboto,sans-serif;
    margin-right:5px;
    margin-bottom:12px;
}
.product-information .price {
    color:#fe980f;
    font-family:Roboto,sans-serif;
    font-size:30px;
    font-weight:700;
    margin-right:20px;
    margin-top:0;
}
.product-information .onSale {
    margin-left:10px;
    margin-top:7px;
    text-decoration:line-through;
    font-size:20px;
    font-weight:700;
}
.product-information input {
    border:1px solid #dededc;
    color:#696763;
    font-family:Roboto,sans-serif;
    font-size:20px;
    font-weight:700;
    height:33px;
    outline:medium none;
    text-align:center;
    width:50px;
}
.product-information label {
    color:#696763;
    font-family:Roboto,sans-serif;
    font-weight:700;
    margin-right:5px;
}
.product-information .availability-red {
    font-weight:bold;
    color:#f00;
}
.product-information .availability-green {
    font-weight:bold;
    color:#008000;
}
.newarrival {
    position:absolute;
    top:0;
    left:0;
}
.share {
    margin-top:15px;
}
.priceInclVat {
    color:#808080;
    font-size:10px;
}
.cart {
    margin-bottom:10px;
    margin-left:20px;
}
.shop-details-tab {
    margin-left:15px;
    margin-right:15px;
}
@media screen and (min-width:1600px) {
    .container {
        width:1570px;
    }
    .col-xl-1 {
        float:left;
        width:8.33333333%;
    }
    .col-xl-2 {
        float:left;
        width:16.66666667%;
    }
    .col-xl-3 {
        float:left;
        width:25%;
    }
    .col-xl-4 {
        float:left;
        width:33.33333333%;
    }
    .col-xl-5 {
        float:left;
        width:41.66666667%;
    }
    .col-xl-6 {
        float:left;
        width:50%;
    }
    .col-xl-7 {
        float:left;
        width:58.33333333%;
    }
    .col-xl-8 {
        float:left;
        width:66.66666667%;
    }
    .col-xl-9 {
        float:left;
        width:75%;
    }
    .col-xl-10 {
        float:left;
        width:83.33333333%;
    }
    .col-xl-11 {
        float:left;
        width:91.66666667%;
    }
    .col-xl-12 {
        float:left;
        width:100%;
    }
    .col-xl-pull-12 {
        right:100%;
    }
    .col-xl-pull-11 {
        right:91.66666667%;
    }
    .col-xl-pull-10 {
        right:83.33333333%;
    }
    .col-xl-pull-9 {
        right:75%;
    }
    .col-xl-pull-8 {
        right:66.66666667%;
    }
    .col-xl-pull-7 {
        right:58.33333333%;
    }
    .col-xl-pull-6 {
        right:50%;
    }
    .col-xl-pull-5 {
        right:41.66666667%;
    }
    .col-xl-pull-4 {
        right:33.33333333%;
    }
    .col-xl-pull-3 {
        right:25%;
    }
    .col-xl-pull-2 {
        right:16.66666667%;
    }
    .col-xl-pull-1 {
        right:8.33333333%;
    }
    .col-xl-pull-0 {
        right:auto;
    }
    .col-xl-push-12 {
        left:100%;
    }
    .col-xl-push-11 {
        left:91.66666667%;
    }
    .col-xl-push-10 {
        left:83.33333333%;
    }
    .col-xl-push-9 {
        left:75%;
    }
    .col-xl-push-8 {
        left:66.66666667%;
    }
    .col-xl-push-7 {
        left:58.33333333%;
    }
    .col-xl-push-6 {
        left:50%;
    }
    .col-xl-push-5 {
        left:41.66666667%;
    }
    .col-xl-push-4 {
        left:33.33333333%;
    }
    .col-xl-push-3 {
        left:25%;
    }
    .col-xl-push-2 {
        left:16.66666667%;
    }
    .col-xl-push-1 {
        left:8.33333333%;
    }
    .col-xl-push-0 {
        left:auto;
    }
    .col-xl-offset-12 {
        margin-left:100%;
    }
    .col-xl-offset-11 {
        margin-left:91.66666667%;
    }
    .col-xl-offset-10 {
        margin-left:83.33333333%;
    }
    .col-xl-offset-9 {
        margin-left:75%;
    }
    .col-xl-offset-8 {
        margin-left:66.66666667%;
    }
    .col-xl-offset-7 {
        margin-left:58.33333333%;
    }
    .col-xl-offset-6 {
        margin-left:50%;
    }
    .col-xl-offset-5 {
        margin-left:41.66666667%;
    }
    .col-xl-offset-4 {
        margin-left:33.33333333%;
    }
    .col-xl-offset-3 {
        margin-left:25%;
    }
    .col-xl-offset-2 {
        margin-left:16.66666667%;
    }
    .col-xl-offset-1 {
        margin-left:8.33333333%;
    }
    .col-xl-offset-0 {
        margin-left:0;
    }
}
@media screen and (min-width:992px) and (max-width:1199px) {
    .shipping img {
        width:100%;
    }
    .searchform input {
        width:160px;
    }
    .product-information span span {
        width:100%;
    }
    #cart_items .cart_info .cart_description h4 {
        text-align:center;
    }
    #cart_items .cart_info .cart_description p {
        text-align:center;
    }
}
@media screen and (min-width:768px) and (max-width:991px) {
    .header-middle {
        background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAMAAABVCAYAAACM/15VAAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH3wMdCAwFGKMb8wAAAB1pVFh0Q29tbWVudAAAAAAAQ3JlYXRlZCB3aXRoIEdJTVBkLmUHAAAAIklEQVQ4y2M8IyH7nwEKmBiQwChnlDPKGeXAAAtfXhARygAuTQN6WHt0pQAAAABJRU5ErkJggg==");
        background-position:bottom;
    }
    .girl {
        margin-left:0;
    }
    .pricing {
        width:100px;
    }
    .product-information .cart {
        margin-left:0;
        margin-top:15px;
    }
    .product-information span span {
        display:block;
        width:100%;
    }
    .address {
        margin-top:48px;
        margin-left:20px;
    }
    .address p {
        font-size:12px;
        top:5px;
    }
    .shop-menu ul li a {
        padding-left:0;
    }
    #slider-carousel .item {
        padding-left:30px;
    }
    .item h2 {
        font-size:24px;
    }
    .shipping img {
        width:100%;
    }
    .slider.slider-horizontal {
        width:100% !important;
    }
    .item-control i {
        font-size:12px;
        padding:5px 6px;
    }
    #cart_items .cart_info .cart_description h4 {
        text-align:center;
    }
    #cart_items .cart_info .cart_description p {
        text-align:center;
    }
    .companyinfo h2 {
        font-size:20px;
    }
    #searchBar {
        margin-top:-10px;
    }
}
@media(max-width:767px) {
    .shipping {
        margin-bottom:25px;
    }
    .pricing {
        width:100px;
    }
    .companyinfo {
        text-align:center;
    }
    #similar-product {
        margin-bottom:40px;
    }
    .social-icons ul li a i {
        padding:8px 10px;
    }
    .rdh-dropdown .fa-angle-down {
        display:none;
    }
    ul.sub-menu {
        position:relative;
        width:auto;
        display:block;
        background:transparent;
        box-shadow:none;
        top:0;
    }
    .sub-menu li {
        background:transparent;
    }
    #slider-carousel .item {
        padding-left:0;
    }
    .product-information span {
        display:block;
    }
    .phone-menu-item {
        display:none !important;
        visibility:hidden !important;
    }
}
@media(max-width:480px) {
    .contactinfo {
        text-align:center;
    }
    .contactinfo ul li a {
        padding-right:15px;
        padding-left:0;
    }
    .pricing {
        width:70px;
    }
    .category-tab ul li a {
        font-size:12px;
    }
    .companyinfo h2 {
        text-align:center;
    }
    .companyinfo p {
        text-align:center;
    }
    .shipping {
        margin-bottom:20px;
    }
    .content-404 h1 {
        font-size:30px;
    }
    .content-404 h2 a {
        font-size:20px;
    }
    .rdh-dropdown .fa-angle-down {
        display:none;
    }
    ul.sub-menu {
        position:relative;
        width:auto;
        display:block;
        background:transparent;
        box-shadow:none;
        top:0;
    }
    .response-area .media img {
        width:auto;
    }
    .sinlge-post-meta li {
        margin-bottom:10px;
    }
}
div .pagination {
    margin-top:10px;
    margin-bottom:0;
    float:right;
    text-align:right;
}
div .pagination li {
    list-style:none;
    display:inline;
}
div .pagination li a {
    background:#f0f0e9;
    border:0 none;
    border-radius:0;
    color:#696763;
    margin-right:5px;
    padding:4px 12px;
}
div .pagination li a:hover {
    background:#fe980f;
    color:#fff;
}
div .pagination li .active {
    background:#fe980f;
    color:#fff;
}
div .pagination ul li:last-child a {
    border-bottom-right-radius:0;
    border-top-right-radius:0;
}
div .pagination ul li:last-child span {
    border-bottom-right-radius:0;
    border-top-right-radius:0;
}
div .pagination ul li a:hover {
    background:#fe980f;
    color:#fff;
}
.topsellerInfo {
    margin-bottom:15px;
}
.topsellerInfo .label {
    background-color:#fe980f;
    font-size:small;
}
.topsellerInfo .scale {
    padding-left:5px;
    font-size:small;
    color:GrayText;
}
.table td {
    text-align:center;
}
body {
    font-family:Roboto,sans-serif;
    position:relative;
    font-weight:400px;
}
a {
    color:#cb181d;
}
a:hover {
    outline:none;
    text-decoration:none;
    color:#000;
}
a:focus {
    outline:none;
    outline-offset:0;
    color:#cb181d;
    text-decoration:none;
}
a#scrollUp {
    bottom:0;
    right:10px;
    padding:5px 10px;
    background:#fe980f;
    color:#fff;
}
a#scrollUp i {
    font-size:30px;
}
h1 {
    font-family:Roboto,sans-serif;
}
h3 {
    font-family:Roboto,sans-serif;
}
h4 {
    font-family:Roboto,sans-serif;
}
h5 {
    font-family:Roboto,sans-serif;
}
h6 {
    font-family:Roboto,sans-serif;
}
.btn:hover {
    outline:none;
    box-shadow:none;
}
.btn:focus {
    outline:none;
    box-shadow:none;
}
.media-heading {
    color:#363432;
    font-size:14px;
    font-weight:700;
    font-family:Roboto,sans-serif;
    margin-bottom:15px;
}
.blog-socials {
    margin-bottom:-9px;
    margin-top:14px;
}
.blog-socials ul {
    padding-left:0;
    overflow:hidden;
    float:left;
}
.blog-socials ul li {
    float:left;
    height:17px;
    margin-right:5px;
    text-align:center;
    width:17px;
}
.blog-socials ul li a {
    color:#393b3b;
    display:block;
    font-size:10px;
    padding:1px;
    background:#f0f0e9;
}
.blog-socials ul li a:hover {
    color:#fff;
    background:#fe980f;
}
.text-area {
    margin-top:66px;
}
.text-area textarea:hover {
    border:1px solid #fe980f;
}
.blank-arrow {
    position:relative;
}
.blank-arrow label:after {
    content:"";
    position:absolute;
    width:auto;
    height:auto;
    border-style:solid;
    border-width:8px;
    border-color:#fe980f transparent transparent transparent;
    top:25px;
    left:5px;
}
.AddedToCartMessage {
    padding-left:24px;
    padding-right:0;
    display:none;
    min-height:16px;
}
.AddedToWatchListMessage {
    display:none;
    min-height:16px;
    background:#fff6bf url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAACXBIWXMAAAsTAAALEwEAmpwYAAAABGdBTUEAALGOfPtRkwAAACBjSFJNAAB6JQAAgIMAAPn/AACA6QAAdTAAAOpgAAA6mAAAF2+SX8VGAAAC10lEQVR42qyTS2hUdxjFf/fOo3qbjGPMPC5Jk6CN0/FBTFsNxpbSJpqISkG7KHYQt4ogGLduFNzYOxQamO5CH6tSjVKMZBZdDpSWSGJ0ZEY0TTOdGTMziSZO7vvvwoy4r9/y8J3zfXDOkYQQvDkjF0YOAUNAPxBfh7NABpjUklr6zX2pITByYaQLOLelNXSmrb1DiURVNgdbAFharlEuFSkszNerlcUUMKoltbnXAuvkK93b44munZ1UWuaYk2Z56v6DbTu0Wp2obKPd+IDCbIF8LvsLcElLanPe9U/OdW+PJ97rizK1YYLH9gzCEtiOi23ZVO0qu7t6aZIlwt5WIJ7I57Jl4KJn5fnKoS2toW9je2O+u0qax+YMtuVimjaWYWGaNoo/QH9okM/UYVIPr9ET6mO1trrn5vj43zIw1NbeoZQCeR4ZdzFNE0M3MXQDQzcRQjAQOcbnkSPMPPuLqUKGnHuPtvYOBRiSgf5IVOWJMYthvCJbuomt21iWQ0/oAN9sPYvpGly+fZXKWpWpSoZIVAXol4H45mAL/+p5EDJe2U9dX6O4WuGFZPBJeAAJiYn/rnO/Ns2KqHPv+XTDobjc8NNFYrjjBN/13iBAJ2s4DKtf8UX0KJaw+OHOj7gb6ng9LrLHeZ0DGcguLdfwewIcDH5NuCnM2OFf2agH+VjdhxCCdGmcR2v3sX0v8L4DsU07WVquAWRlIFMuFelydnHyzjFM10DxNHF58Mqr667J97fGEM2reP0uPgV6gwcol4oAGRmYLCzM13dYewm9G2b/2Ic4wmFIPY4ETBR/I29O41EMfAr0BQ4Sl3opLMzXgUlZS2rpamUx9TRX5sumU7Q1q+wajWE4On9UbpP6/WfklhV8G6EvMMCwkqCcL1GtLKa0pJZuJHE0n8tGuoknTr9/nmnlT47+NMiC8QR/s2BfaD89yqfEzI8oPyg1ojz69sr0f+r8cgAhrWTCLwS44wAAAABJRU5ErkJggg==") center no-repeat;
    background-position:10px 50%;
    text-align:left;
    margin:5px 0 0 0;
    padding:5px 5px 5px 30px;
    border:2px solid #ffd324;
    z-index:999 !important;
}
.AlreadyInWatchListMessage {
    display:none;
    min-height:16px;
    background:#ffe0d3 url("../Images/general/Error16b.png") center no-repeat;
    background-position:10px 50%;
    text-align:left;
    margin:5px 0 0 0;
    padding:5px 5px 5px 30px;
    border:2px solid #cb181d;
    z-index:999 !important;
}
.rdhalert {
    background:#fff6bf url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAACXBIWXMAAAsTAAALEwEAmpwYAAAABGdBTUEAALGOfPtRkwAAACBjSFJNAAB6JQAAgIMAAPn/AACA6QAAdTAAAOpgAAA6mAAAF2+SX8VGAAAC10lEQVR42qyTS2hUdxjFf/fOo3qbjGPMPC5Jk6CN0/FBTFsNxpbSJpqISkG7KHYQt4ogGLduFNzYOxQamO5CH6tSjVKMZBZdDpSWSGJ0ZEY0TTOdGTMziSZO7vvvwoy4r9/y8J3zfXDOkYQQvDkjF0YOAUNAPxBfh7NABpjUklr6zX2pITByYaQLOLelNXSmrb1DiURVNgdbAFharlEuFSkszNerlcUUMKoltbnXAuvkK93b44munZ1UWuaYk2Z56v6DbTu0Wp2obKPd+IDCbIF8LvsLcElLanPe9U/OdW+PJ97rizK1YYLH9gzCEtiOi23ZVO0qu7t6aZIlwt5WIJ7I57Jl4KJn5fnKoS2toW9je2O+u0qax+YMtuVimjaWYWGaNoo/QH9okM/UYVIPr9ET6mO1trrn5vj43zIw1NbeoZQCeR4ZdzFNE0M3MXQDQzcRQjAQOcbnkSPMPPuLqUKGnHuPtvYOBRiSgf5IVOWJMYthvCJbuomt21iWQ0/oAN9sPYvpGly+fZXKWpWpSoZIVAXol4H45mAL/+p5EDJe2U9dX6O4WuGFZPBJeAAJiYn/rnO/Ns2KqHPv+XTDobjc8NNFYrjjBN/13iBAJ2s4DKtf8UX0KJaw+OHOj7gb6ng9LrLHeZ0DGcguLdfwewIcDH5NuCnM2OFf2agH+VjdhxCCdGmcR2v3sX0v8L4DsU07WVquAWRlIFMuFelydnHyzjFM10DxNHF58Mqr667J97fGEM2reP0uPgV6gwcol4oAGRmYLCzM13dYewm9G2b/2Ic4wmFIPY4ETBR/I29O41EMfAr0BQ4Sl3opLMzXgUlZS2rpamUx9TRX5sumU7Q1q+wajWE4On9UbpP6/WfklhV8G6EvMMCwkqCcL1GtLKa0pJZuJHE0n8tGuoknTr9/nmnlT47+NMiC8QR/s2BfaD89yqfEzI8oPyg1ojz69sr0f+r8cgAhrWTCLwS44wAAAABJRU5ErkJggg==") center no-repeat;
    background-position:15px 50%;
    text-align:left;
    padding:5px 20px 5px 45px;
    border:2px solid #ffd324;
    z-index:999 !important;
}
#cart_items {
    margin-top:10px;
}
#cart_items .cart_info {
    border:1px solid #e6e4df;
}
#cart_items .cart_info .cart_menu {
    background:#fe980f;
    color:#fff;
    font-size:16px;
    font-family:Roboto,sans-serif;
    font-weight:normal;
}
#cart_items .cart_info .cart_description p a {
    color:#363432;
    font-family:Roboto,sans-serif;
    font-size:18px;
}
#cart_items .cart_info p {
    color:#696763;
    font-size:18px;
}
#cart_items .cart_info .cart_total_price {
    color:#696763;
    font-size:18px;
}
#cart_items .cart_info .cart_price p {
    color:#696763;
    font-size:18px;
}
.cart_info table tr td {
    border-top:0 none;
    vertical-align:middle;
}
.cart_quantity_button a {
    background:#f0f0e9;
    color:#696763;
    display:inline-block;
    font-size:16px;
    height:28px;
    overflow:hidden;
    text-align:center;
    width:35px;
    float:left;
}
.bg h2.title {
    margin-right:0;
    margin-left:0;
    margin-top:0;
}
.user_option label {
    color:#696763;
    font-weight:normal;
    margin-left:10px;
}
.chose_area .update {
    margin-left:40px;
}
.review-payment h2 {
    color:#696763;
    font-size:20px;
    font-weight:300;
    margin-top:45px;
    margin-bottom:20px;
}
.contactinfo ul li:first-child {
    margin-left:-15px;
}
.contactinfo ul li a {
    font-size:12px;
    color:rgba(0,0,0,.75);
    font-family:Roboto,sans-serif;
}
.contactinfo ul li a:hover {
    background:inherit;
}
.flags {
    padding-top:5px;
}
.flags a {
    padding:3px;
}
.social-icons ul li a {
    border:0 none;
    border-radius:0;
    color:rgba(0,0,0,.75);
    padding:2px;
    padding-left:10px;
}
.social-icons ul li a i {
    padding:11px 15px;
    transition:all .9s ease 0s;
}
.social-icons ul li a i:hover {
    color:#fff;
    transition:all .9s ease 0s;
}
.fa-facebook:hover {
    background:#0083c9;
}
.fa-twitter:hover {
    background:#5bbcec;
}
.fa-linkedin:hover {
    background:#ff4518;
}
.fa-dribbble:hover {
    background:#90c9dc;
}
.fa-google-plus:hover {
    background:#ce3c2d;
}
#searchBar a {
    background:transparent !important;
    color:#fc6;
}
#searchBar a:hover {
    color:#fff;
    background:transparent;
}
#searchBar a.active {
    background:transparent;
}
.shop-menu ul li {
    padding-left:15px;
    padding-right:15px;
    margin-top:15px;
}
.shop-menu ul li:last-child {
    padding-right:0;
}
.shop-menu ul li a {
    background:transparent !important;
    color:#fc6;
    font-family:Roboto,sans-serif;
    font-size:14px;
    font-weight:300;
    padding:0;
    padding-right:0;
    margin-top:10px;
}
.shop-menu ul li a i {
    margin-right:3px;
}
.shop-menu ul li a:hover {
    color:#fff;
    background:transparent;
}
.shop-menu ul li a.active {
    background:transparent;
}
.shop-menu ul li ul.sub-menu {
    margin-top:20px !important;
}
.shop-menu ul li ul.sub-menu img {
    margin-right:5px;
}
.shop-menu ul li ul.sub-menu li {
    margin:0;
}
.mainmenu ul li {
    padding-right:5px;
    padding-left:5px;
    padding-top:13px;
}
.mainmenu ul li:first-child {
    padding-left:0;
}
.mainmenu ul li a.normal {
    background:transparent;
    margin-top:6px;
    color:#fc6;
    font-family:Roboto,sans-serif;
    font-size:17px;
    font-weight:300;
    padding:0;
}
.mainmenu ul li a.normal:hover {
    background:transparent;
    color:#fff;
}
.mainmenu ul li a.normal.active {
    background:transparent;
    color:#fdb45e;
}
.mainmenu ul li a.walthers {
    width:103px;
    background:url("/Images/walthersDefault.png") no-repeat;
}
.mainmenu ul li a.walthers:hover {
    background:url("/Images/walthersActive.png") no-repeat;
}
.mainmenu ul li a.specials {
    background:transparent;
    color:#fc6;
    font-family:Roboto,sans-serif;
    font-style:italic;
    text-transform:uppercase;
    font-size:13px;
    font-weight:600;
    margin:-12px;
}
.mainmenu ul li a.specials:hover {
    background:transparent;
    color:#fff;
}
.mainmenu ul li a.specials.active {
    background:transparent;
    color:#fdb45e;
}
.mainmenu ul li a.topseller {
    background:transparent;
    color:#fc6;
    font-family:Roboto,sans-serif;
    font-style:italic;
    text-transform:uppercase;
    font-size:13px;
    font-weight:600;
    margin-top:-10px;
    margin-left:-10px;
    margin-right:-10px;
}
.mainmenu ul li a.topseller:hover {
    background:transparent;
    color:#fff;
}
.mainmenu ul li a.topseller.active {
    background:transparent;
    color:#fdb45e;
}
.mainmenu ul li a.topseller img {
    padding-right:6px;
}
.search_box {
    margin-top:20px;
}
.search_box input,
.search_box button {
    background:#ffddc2;
    border-color:rgba(0,0,0,.75);
    border-radius:6px;
    color:rgba(0,0,0,.75);
    font-family:roboto;
    font-size:14px;
    font-weight:400;
    height:35px;
    padding-left:10px;
    padding-right:10px;
}
.search_box input {
    border-width:1px 0 1px 1px;
}
.search_box button {
    color:rgba(0,0,0,.5);
    border-width:1px 1px 1px 0;
}
h2.title {
    color:#fe980f;
    font-family:Roboto,sans-serif;
    font-size:18px;
    font-weight:700;
    margin:0 15px;
    text-transform:uppercase;
    margin-bottom:30px;
    position:relative;
}
#recommended-item-carousel .carousel-inner .item {
    padding-left:0;
}
.siglee-post-meta li {
    background:#f0f0e9;
    color:#363432;
    float:left;
    font-size:10px;
    font-weight:700;
    margin-right:10px;
    padding:0 10px 0 0;
    position:relative;
    text-transform:uppercase;
}
.siglee-post-meta li i:after {
    top:7px;
    border-width:6px;
    left:27px;
}
.post-meta span {
    float:right;
}
.post-meta span i {
    color:#fe980f;
}
div#cart-animation {
    background:none repeat scroll 0 0 #333 !important;
    border:1px solid #fff;
    border-radius:50% 50% 50% 50%;
    color:#fff !important;
    display:none;
    font-size:16px;
    font-weight:bold;
    height:35px;
    line-height:35px;
    position:absolute;
    text-align:center;
    width:35px;
    z-index:980 !important;
}
.text-link {
    cursor:pointer;
    color:#cb181d;
}
p.product-info {
    font-weight:bold;
    color:#f00;
}

/* ===========================================================================
 * 3. APP — ehemals wwwroot/css/site.css
 * ======================================================================== */

/* Wrapping element */
/* Set some basic padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

/* Carousel */
.carousel-caption p {
    font-size: 20px;
    line-height: 1.4;
}

/* Make .svg files in the carousel display properly in older browsers */
.carousel-inner .item img[src$=".svg"] {
    width: 100%;
}

/* QR code generator */
#qrCode {
    margin: 15px;
}

/* Hide/rearrange for smaller screens */
@media screen and (max-width: 767px) {
    /* Hide captions */
    .carousel-caption {
        display: none;
    }
}

/* ===== Product Listing: Toolbar ===== */
/* Eine ruhige Zeile statt eines gefuellten Kastens: die Leiste soll die Trennlinie zwischen
   Ueberschrift und Raster sein, kein Bedienfeld. Abschluss ist eine Haarlinie, kein Rahmen. */
.listing-toolbar {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 14px;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid #f0ece3;
    flex-wrap: wrap;
}

.listing-toolbar__filters {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Was man einstellt, steht rechts - unabhaengig davon, wie viel links steht. */
.listing-toolbar__controls {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
    flex-wrap: wrap;
}

.listing-toolbar__control {
    display: flex;
    align-items: center;
    gap: 8px;
}

.listing-toolbar__label {
    font-family: Roboto, sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #696763;
    white-space: nowrap;
    margin-bottom: 0;
}

.listing-toolbar__select {
    font-family: Roboto, sans-serif;
    font-size: 13px;
    color: #363432;
    /* 34px hoch, Radius 6, Rahmen #ccc - dieselbe Metrik wie die uebrigen Bedienelemente. */
    height: 34px;
    /* ⚠ Ausdruecklich: das Theme setzt `select, textarea { width: 100% }`. Solange das Feld in
       einem schmalen Container stand, fiel das nicht auf; als direktes Flex-Element der rechten
       Gruppe zog es sich auf deren volle Breite und brach die Zeile dreifach um. */
    width: auto;
    padding: 0 28px 0 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    background: #fff 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='%23696763' d='M6 8L1 3h10z'/%3E%3C/svg%3E") no-repeat right 8px center;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    min-width: 80px;
    transition: border-color 0.2s ease;
}

.listing-toolbar__select:hover {
    border-color: #fe980f;
}

.listing-toolbar__select:focus {
    outline: none;
    border-color: #fe980f;
    box-shadow: 0 0 0 2px rgba(254, 152, 15, 0.15);
}

/* "Filter zurücksetzen" — Metrik bewusst identisch zu .listing-toolbar__select
   (13px/6px/4px Radius, gleiche Rahmenfarbe und Orange beim Hover), damit der
   Link in der Leiste wie ein gleichwertiges Bedienelement sitzt. */
.listing-toolbar__reset {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: Roboto, sans-serif;
    font-size: 13px;
    color: #696763;
    padding: 6px 10px;
    border: 1px solid #d4d1ca;
    border-radius: 4px;
    background: #fff;
    white-space: nowrap;
    text-decoration: none;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.listing-toolbar__reset:hover,
.listing-toolbar__reset:focus {
    border-color: #fe980f;
    color: #fe980f;
    text-decoration: none;
}

/* Das Feld fuer die Seitengroesse zeigt nur eine Zahl - es braucht die Mindestbreite nicht. */
.listing-toolbar__select--narrow {
    min-width: 0;
    padding-right: 26px;
}

/* Zwei zusammengesetzte Knoepfe, kein Abstand dazwischen: sie sind eine Entscheidung. */
.listing-toolbar__view-toggle {
    display: inline-flex;
}

/* ===== Product Listing: View Toggle ===== */
.view-toggle__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 1px solid #ccc;
    background: #fff;
    color: #696763;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.view-toggle__btn:first-child {
    border-radius: 6px 0 0 6px;
}

/* Die gemeinsame Kante wird nur einmal gezeichnet. */
.view-toggle__btn:last-child {
    border-left: 0;
    border-radius: 0 6px 6px 0;
}

.view-toggle__btn:hover {
    border-color: #fe980f;
    color: #fe980f;
    text-decoration: none;
}

.view-toggle__btn--active {
    background: #fe980f;
    border-color: #fe980f;
    color: #fff;
}

.view-toggle__btn--active:hover {
    background: #e88a0d;
    border-color: #e88a0d;
    color: #fff;
}

@media (max-width: 767px) {
    .listing-toolbar {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .listing-toolbar__filters {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    .listing-toolbar__control {
        justify-content: space-between;
    }

    .listing-toolbar__select {
        flex: 1;
    }

    .listing-toolbar__reset {
        flex: 1;
        justify-content: center;
    }

    .listing-toolbar__view-toggle {
        justify-content: flex-end;
    }
}

/* ===========================================================================
 * Seitenleiste (Variante A: klare Karten)
 *
 * Loest die frueheren .left-sidebar / .sidebarbox / .tri-down-Regeln ab, die
 * als einziger Teil des Shops noch auf dem alten Cremeton (#fff3db, olivgruener
 * Rahmen, 3px Radius) und einer Kopfzeile aus einem 30px-Verlaufs-PNG standen.
 *
 * Alle Metriken stammen aus dem bestehenden System: 8px Radius, ring-1 statt
 * Rahmen und shadow-xs wie .rdh-card (Styles/rdh-components.css), warme
 * Haarlinien und Bildrahmen wie .product-card weiter unten. Der Akzent ist das
 * Token --primary; ink/tint werden per color-mix daraus abgeleitet, damit ein
 * Wechsel der Markenfarbe die ganze Leiste mitzieht statt an sechs Stellen
 * nachgepflegt zu werden.
 * ======================================================================== */
.rdh-sidebar {
    --rdh-sb-accent: var(--primary, #fe980f);
    /* Dunkler Markenton (48 % Richtung #241800, aufgeloest #8a5900) fuer die
       Beschriftungen der Zeilen. War frueher auch der Kopfbalken - der traegt
       jetzt --rdh-sb-head. */
    --rdh-sb-ink: color-mix(in oklch, var(--rdh-sb-accent), #241800 48%);
    /* Der Kopfbalken traegt jetzt das Rot des Headers, damit Leiste und Kopf des
       Shops dieselbe Markenfarbe zeigen. Weiss darauf ergibt 5,6:1 - ausreichend
       fuer die 12,5px-Versalien der Ueberschrift. Nur der Balken uebernimmt das
       Rot; --rdh-sb-ink bleibt der Textton der Zeilen darunter. */
    --rdh-sb-head: #cc181d;
    --rdh-sb-tint: color-mix(in oklch, var(--rdh-sb-accent), #fff 88%);
    --rdh-sb-tint-strong: color-mix(in oklch, var(--rdh-sb-accent), #fff 80%);
    padding-top: 20px;
    padding-bottom: 10px;
}

.rdh-sidebar__card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 0 1px rgba(51, 51, 51, .10), 0 1px 2px 0 rgba(0, 0, 0, .05);
    overflow: hidden;
}

.rdh-sidebar__card + .rdh-sidebar__card {
    margin-top: 14px;
}

.rdh-sidebar__head {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 8px 12px;
    /* Gefuellter Balken statt Haarlinie: die Kopfzeile ist wieder der Deckel des
       Kastens, nicht nur ein Trennstrich. Der Ton ist das Header-Rot
       (--rdh-sb-head). Bewusst NICHT --rdh-sb-accent gefuellt: weisse Schrift auf
       #fe980f kaeme nur auf 2,1:1 Kontrast. */
    background: var(--rdh-sb-head);
}

.rdh-sidebar__head h2 {
    margin: 0;
    font-family: Roboto, sans-serif;
    font-size: 12.5px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: #fff;
}

.rdh-sidebar__head > .fa {
    flex: 0 0 auto;
    font-size: 13px;
    color: rgba(255, 255, 255, .72);
}

/* Live-Punkt: zeigt an, dass der Block sich von selbst nachfuehrt. Anders als
   der Slide-Effekt der Karussells (bewusst ohne Reduced-Motion-Ausnahme, siehe
   .rdh-carousel__slide) ist das eine dauerlaufende Animation - die gehoert
   abschaltbar. */
.rdh-sidebar__pulse {
    flex: 0 0 auto;
    margin-left: auto;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    /* Helleres Gruen als in der Produktkarte (#2e7d32): auf dem dunklen
       Kopfbalken verschwaende der dunkle Ton. */
    background: #86d992;
    box-shadow: 0 0 0 0 rgba(134, 217, 146, .5);
    animation: rdh-sidebar-pulse 2.2s infinite;
}

@keyframes rdh-sidebar-pulse {
    70% { box-shadow: 0 0 0 6px rgba(134, 217, 146, 0); }
    100% { box-shadow: 0 0 0 0 rgba(134, 217, 146, 0); }
}

@media (prefers-reduced-motion: reduce) {
    .rdh-sidebar__pulse { animation: none; }
}

/* --- Zeilenliste (Kategorien, Information) ------------------------------- */
.rdh-sidebar__list {
    display: flex;
    flex-direction: column;
    padding: 5px;
}

.rdh-sidebar__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    min-height: 30px;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 13px;
    line-height: 1.25;
    color: #363432;
    text-decoration: none;
    transition: background-color .12s ease, color .12s ease;
}

.rdh-sidebar__row:hover,
.rdh-sidebar__row:focus-visible {
    background: var(--rdh-sb-tint);
    color: var(--rdh-sb-ink);
    text-decoration: none;
}

/* Der Pfeil erscheint erst bei Hover/Fokus - in Ruhe soll die Liste ruhig sein. */
.rdh-sidebar__row > .fa {
    flex: 0 0 auto;
    font-size: 13px;
    opacity: 0;
    transition: opacity .12s ease;
}

.rdh-sidebar__row:hover > .fa,
.rdh-sidebar__row:focus-visible > .fa {
    opacity: .55;
}

.rdh-sidebar__row--info {
    min-height: 26px;
    font-size: 12px;
    color: #5a5754;
}

/* --- Karussell-Kaesten (Live bei RD-Hobby + Topseller) -------------------- */
.rdh-sidebar__slider {
    padding: 10px 10px 8px;
}

.rdh-sidebar__slide-link {
    display: block;
    text-decoration: none;
}

.rdh-sidebar__slide-link:hover,
.rdh-sidebar__slide-link:focus-visible {
    text-decoration: none;
}

.rdh-sidebar__slide-img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    /* 4:3 statt quadratisch. Gemessen an 14 echten Thumbnails liegt das
       Seitenverhaeltnis im Median bei 1,23, zehn von vierzehn sind breiter als
       hoch, der groesste Cluster bei 1,40-1,45 (200x138). In einer quadratischen
       Flaeche blieben dadurch im Schnitt rund 25px Hoehe ungenutzt; bei 4:3 sind
       es noch etwa 4px. Hoehere Bilder schrumpfen weiterhin per object-fit. */
    aspect-ratio: 4 / 3;
    margin-bottom: 8px;
    padding: 8px;
    border: 1px solid #f5e8d6;
    border-radius: 6px;
    background: #fff;
    overflow: hidden;
}

.rdh-sidebar__slide-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Feste Mindesthoehe fuer den Namen: sonst springt die Karussellhoehe zwischen
   ein- und zweizeiligen Artikelnamen. */
.rdh-sidebar__ts-name {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 33px;
    margin: 0 0 5px;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.35;
    color: #363432;
}

.rdh-sidebar__slide-link:hover .rdh-sidebar__ts-name {
    color: var(--rdh-sb-ink);
}

/* Meldungstext im Live-Kasten. Feste Mindesthoehe wie beim Artikelnamen:
   sonst springt die Karussellhoehe zwischen zwei- und dreizeiligen Meldungen.
   Drei Zeilen zu 11,5px * 1,35 ergeben rund 47px. */
.rdh-sidebar__live-text {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 47px;
    font-size: 11.5px;
    line-height: 1.35;
    color: #6b6863;
}

.rdh-sidebar__live-text b {
    color: #363432;
    font-weight: 500;
}

.rdh-sidebar__slide-link:hover .rdh-sidebar__live-text b,
.rdh-sidebar__slide-link:focus-visible .rdh-sidebar__live-text b {
    color: var(--rdh-sb-ink);
}

.rdh-sidebar__ts-price {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 6px;
}

/* Gleiche Preisfarbe wie .product-card__price-current - die Seitenleiste hatte
   mit #e39328 bisher einen Orangeton, den es sonst nirgends im Shop gibt. */
.rdh-sidebar__ts-now {
    font-family: Roboto, sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--rdh-sb-accent);
}

.rdh-sidebar__ts-was {
    font-family: Roboto, sans-serif;
    font-size: 11px;
    color: #696763;
    text-decoration: line-through;
}

.rdh-sidebar__slider-nav {
    display: flex;
    justify-content: center;
    gap: 6px;
    padding-top: 9px;
}

.rdh-sidebar__slider-nav button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    padding: 0;
    border: 1px solid #ece7dd;
    border-radius: 999px;
    background: #fff;
    color: #6f6a65;
    cursor: pointer;
    transition: background-color .12s ease, color .12s ease, border-color .12s ease;
}

.rdh-sidebar__slider-nav button:hover,
.rdh-sidebar__slider-nav button:focus-visible {
    background: var(--rdh-sb-tint);
    border-color: var(--rdh-sb-tint-strong);
    color: var(--rdh-sb-ink);
}

/* --- News-Kasten (nur Startseite) ---------------------------------------- */
.rdh-sidebar__news {
    display: flex;
    flex-direction: column;
    padding: 4px 12px 10px;
}

.rdh-sidebar__news-item {
    display: block;
    padding: 8px 0;
    color: #363432;
    text-decoration: none;
}

/* Haarlinie zwischen den Meldungen - der Kasten traegt nur zwei, ein Rahmen je
   Eintrag waere lauter als der Inhalt. */
.rdh-sidebar__news-item + .rdh-sidebar__news-item {
    border-top: 1px solid #efece6;
}

.rdh-sidebar__news-item:hover .rdh-sidebar__news-title,
.rdh-sidebar__news-item:focus-visible .rdh-sidebar__news-title {
    color: var(--rdh-sb-ink);
}

.rdh-sidebar__news-title {
    display: block;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    transition: color .12s ease;
}

.rdh-sidebar__news-date {
    display: block;
    margin-top: 2px;
    font-size: 12px;
    color: #696763;
}

.rdh-sidebar__news-all {
    margin-top: 6px;
    padding-top: 8px;
    border-top: 1px solid #efece6;
    font-size: 12px;
    font-weight: 700;
    color: var(--rdh-sb-ink);
    text-decoration: none;
}

/* --- Kategoriezweig (nur Katalog) ---------------------------------------- */
/* Der Rueckspruch traegt seinen Pfeil links und dauerhaft: er ist die Richtung,
   nicht die Verzierung, und faellt damit nicht unter die Hover-Regel von
   .rdh-sidebar__row > .fa. */
.rdh-sidebar__row--up {
    justify-content: flex-start;
    margin-bottom: 4px;
    padding-bottom: 8px;
    border-bottom: 1px solid #efece6;
    border-radius: 0;
    font-weight: 700;
    color: var(--rdh-sb-ink);
}

.rdh-sidebar__row--up > .fa {
    opacity: .55;
}

.rdh-sidebar__row--up:hover,
.rdh-sidebar__row--up:focus-visible {
    background: transparent;
    text-decoration: underline;
}

/* Die Kategorie, auf der man steht: kein Link, deshalb auch kein Hover-Wechsel. */
.rdh-sidebar__row--current {
    background: #fdf0dd;
    color: #8a5900;
    font-weight: 700;
    cursor: default;
}

.rdh-sidebar__row--more {
    margin-top: 2px;
    font-size: 12px;
    font-weight: 700;
    color: var(--rdh-sb-ink);
}

/* Ueberschrift der Kategorie und ihre Trefferzahl auf einer Grundlinie. */
.listing-head {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 12px;
}

.listing-head h2 {
    margin: 0;
}

/* Der Einleitungstext unter der Ueberschrift (Flohmarkt, Letzte Chance). Ohne eigenen Abstand
   klebte er an ihr: das globale p tragt nur margin-bottom. */
.listing-intro {
    margin-top: 10px;
    max-width: 70ch;
}

.listing-head__count {
    font-size: 14px;
    color: #696763;
}

/* ===== Katalogfilter: Karte in der Spalte, Chips, mobile Schublade ===== */
.rdh-filters {
    padding: 6px 12px 12px;
}

.rdh-filters__group + .rdh-filters__group {
    margin-top: 10px;
    padding-top: 10px;
    /* Haarlinien statt Rahmen: die Gruppen gehoeren zusammen, sie sind nur getrennt. */
    border-top: 1px solid #efece6;
}

.rdh-filters__title {
    margin-bottom: 4px;
    color: #8a5900;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.rdh-filters__option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    /* 30px in der Spalte, 44px in der Schublade (siehe unten) - mit dem Finger muss man treffen. */
    min-height: 30px;
    padding: 3px 6px;
    border-radius: 6px;
    color: #363432;
    font-size: 13px;
    line-height: 1.25;
    text-decoration: none;
}

a.rdh-filters__option:hover,
a.rdh-filters__option:focus-visible {
    background: var(--rdh-sb-tint, #fff6e8);
    color: #8a5900;
    text-decoration: none;
}

.rdh-filters__option--on {
    background: #fdf0dd;
    color: #8a5900;
    font-weight: 700;
}

/* Optionen ohne Treffer bleiben stehen, aber grau: verschwaenden sie, spraengen die Zeilen bei
   jeder Auswahl umher. */
.rdh-filters__option--empty {
    color: #a8a49d;
    cursor: default;
}

.rdh-filters__option-label {
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rdh-filters__option-count {
    flex: 0 0 auto;
    color: #696763;
    font-size: 11.5px;
    font-variant-numeric: tabular-nums;
}

.rdh-filters__more {
    margin-top: 2px;
    padding: 4px 6px;
    border: 0;
    background: none;
    color: #8a5900;
    font-size: 12px;
    font-weight: 700;
    text-align: left;
}

.rdh-filters__more:hover {
    text-decoration: underline;
}

.rdh-filters__price {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    margin-top: 6px;
}

.rdh-filters__price-input {
    /* Beide Felder teilen sich die Breite; 34px hoch und Radius 6 wie alle Bedienelemente. */
    flex: 1 1 60px;
    min-width: 0;
    height: 34px;
    padding: 0 9px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 13px;
}

.rdh-filters__price-dash {
    flex: 0 0 auto;
    color: #696763;
}

/* Preisregler: zwei Bahnen uebereinander, damit sich beide Griffe unabhaengig ziehen lassen.
   ⚠ Die Bahnen liegen deckungsgleich — ohne pointer-events:none auf dem Element und :auto auf dem
   Griff bekaeme immer nur die obere Bahn den Klick, und der untere Griff waere unerreichbar. */
.rdh-price {
    margin-top: 8px;
}

.rdh-price__value {
    display: block;
    margin-bottom: 4px;
    color: #363432;
    font-size: 13px;
    font-weight: 700;
}

.rdh-price__track {
    position: relative;
    height: 24px;
}

/* Die Bahn selbst und der eingefaerbte Ausschnitt dazwischen. */
.rdh-price__track::before,
.rdh-price__fill {
    content: "";
    position: absolute;
    top: 11px;
    height: 3px;
    border-radius: 999px;
}

.rdh-price__track::before {
    left: 0;
    right: 0;
    background: #e2e2d9;
}

.rdh-price__fill {
    background: #fe980f;
}

.rdh-price__handle {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 24px;
    margin: 0;
    padding: 0;
    background: none;
    border: 0;
    pointer-events: none;
    -webkit-appearance: none;
    appearance: none;
}

.rdh-price__handle:focus {
    outline: none;
}

.rdh-price__handle::-webkit-slider-thumb {
    pointer-events: auto;
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    border: 2px solid #fe980f;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .2);
    cursor: pointer;
}

.rdh-price__handle::-moz-range-thumb {
    pointer-events: auto;
    width: 16px;
    height: 16px;
    border: 2px solid #fe980f;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .2);
    cursor: pointer;
}

.rdh-price__handle:focus-visible::-webkit-slider-thumb {
    box-shadow: 0 0 0 3px rgba(254, 152, 15, .35);
}

.rdh-price__handle:focus-visible::-moz-range-thumb {
    box-shadow: 0 0 0 3px rgba(254, 152, 15, .35);
}

/* Firefox zeichnet ohne diese Regel eine eigene graue Bahn ueber die eigene. */
.rdh-price__handle::-moz-range-track {
    background: transparent;
    border: 0;
}

.rdh-filters__price-apply {
    margin-top: 10px;
}

.rdh-filters__reset {
    display: block;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #efece6;
    color: #8a5900;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
}

.rdh-filters__reset:hover {
    text-decoration: underline;
}

/* --- Aktive Filter als Chips ------------------------------------------------------- */
.listing-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 0 0 10px;
}

.listing-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border: 1px solid #f6dcb4;
    border-radius: 999px;
    background: #fdf0dd;
    color: #8a5900;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

.listing-chip:hover,
.listing-chip:focus-visible {
    border-color: #fe980f;
    color: #8a5900;
    text-decoration: none;
}

/* „Alle Filter entfernen" steht neben den Chips, ist aber kein Filter: deshalb ohne Fuellung und
   in Grau — sonst liest sich die Aktion wie eine weitere aktive Auswahl. */
.listing-chip--reset {
    border-color: #d8d3cc;
    background: transparent;
    color: #6b6560;
    font-weight: 500;
}

.listing-chip--reset:hover,
.listing-chip--reset:focus-visible {
    border-color: #b3ada6;
    color: #363432;
}

/* Die Ueberschrift darf in die Werkzeugleiste ziehen, wenn dort links nichts steht (Suche ohne
   aktiven Filter). Dort ist sie ein Element unter anderen: kein eigener Abstand, und sie darf
   schrumpfen, damit ein langer Suchbegriff die Bedienelemente rechts nicht wegdrueckt. */
/* Die Ueberschrift in der Werkzeugleiste (Suche ohne aktiven Filter): dort ist sie ein Element unter
   anderen und bringt keinen eigenen Abstand mit. */
.listing-toolbar .listing-head {
    margin: 0;
    min-width: 0;
}

/* Ab 768px stehen Ueberschrift und Bedienelemente in EINER Zeile. Ein langer Suchbegriff wird dann
   gekuerzt, statt die Bedienelemente rechts in eine zweite Zeile zu schieben — ganz steht er
   weiterhin im Suchfeld der Kopfzeile.

   ⚠ flex-basis MUSS 0 sein, nicht auto: bei auto meldet der Behaelter die volle Textbreite an, und
   die Leiste bricht um, bevor ueberhaupt gekuerzt wird. Und beide Behaelter darueber brauchen
   min-width: 0 — ein Flex-Element ist von sich aus so breit wie sein Inhalt.

   Darunter (Handy) stehen die Teile der Leiste ohnehin untereinander: dort darf die Ueberschrift
   ganz gewoehnlich umbrechen, sonst laeuft sie aus dem Bildschirm. */
@media (min-width: 768px) {
    .listing-toolbar__filters:has(.listing-head) {
        flex: 1 1 0;
        min-width: 0;
    }

    .listing-toolbar .listing-head {
        flex: 1 1 auto;
        flex-wrap: nowrap;
    }

    .listing-toolbar .listing-head h2 {
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .listing-toolbar .listing-head__count {
        white-space: nowrap;
    }
}

.listing-toolbar__count {
    align-self: center;
    margin-right: 6px;
    font-size: 13px;
    font-weight: 700;
    color: #363432;
}

/* --- Mobile Leiste und Schublade ---------------------------------------------------- */
.listing-mobilebar {
    position: sticky;
    top: 0;
    z-index: 700;
    margin: 0 -15px 10px;
    padding: 8px 15px;
    background: #fff;
    box-shadow: 0 1px 0 rgba(0, 0, 0, .08);
}

.listing-mobilebar__row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.listing-mobilebar__filter {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 14px;
    border: 1px solid #e8e5de;
    border-radius: 8px;
    background: #fff;
    color: #363432;
    font-size: 14px;
    font-weight: 700;
}

.listing-mobilebar__sort {
    flex: 1 1 auto;
    min-width: 0;
}

.listing-mobilebar__sort .listing-toolbar__select {
    width: 100%;
    min-height: 44px;
}

/* Die Chips laufen waagerecht weiter, statt die Leiste in die Hoehe zu treiben. */
.listing-chips--scroll {
    margin-top: 8px;
    margin-bottom: 0;
    flex-wrap: nowrap;
    overflow-x: auto;
}

.listing-drawer {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: flex;
    flex-direction: column;
    background: #fff;
}

.listing-drawer__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    background: var(--rdh-sb-head, #cc181d);
    color: #fff;
}

.listing-drawer__title {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.listing-drawer__close {
    width: 44px;
    height: 44px;
    border: 0;
    background: none;
    color: #fff;
    font-size: 20px;
}

.listing-drawer__body {
    flex: 1 1 auto;
    overflow-y: auto;
}

/* In der Schublade sind alle Bedienflaechen 44px hoch - Finger statt Mauszeiger. */
.listing-drawer .rdh-filters__option,
.listing-drawer .rdh-filters__more {
    min-height: 44px;
}

.listing-drawer .rdh-filters__price-input {
    height: 44px;
}

.listing-drawer .rdh-price__track {
    height: 34px;
}

.listing-drawer .rdh-price__track::before,
.listing-drawer .rdh-price__fill {
    top: 16px;
}

.listing-drawer .rdh-price__handle {
    height: 34px;
}

.listing-drawer .rdh-price__handle::-webkit-slider-thumb {
    width: 22px;
    height: 22px;
}

.listing-drawer .rdh-price__handle::-moz-range-thumb {
    width: 22px;
    height: 22px;
}

/* Die Fusszeile bleibt sichtbar: rechts steht, wie viele Artikel die Auswahl uebrig laesst. */
.listing-drawer__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 15px;
    border-top: 1px solid #efece6;
    background: #f7f7f7;
}

.listing-drawer__foot .rdh-btn {
    min-height: 44px;
}

.listing-drawer__reset {
    color: #8a5900;
    font-size: 13px;
    font-weight: 700;
}

/* Ab 768px gibt es die linke Spalte wieder - Leiste und Schublade verschwinden dann ganz. */
@media (min-width: 768px) {
    .listing-mobilebar,
    .listing-drawer {
        display: none !important;
    }
}

@media (max-width: 767px) {
    /* Die Chips ueber dem Raster stehen mobil schon in der Leiste. */
    .listing-chips--desktop {
        display: none;
    }
}

/* ===== Product Listing: Grid View ===== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    padding: 1rem 0;
}

.product-card {
    display: flex;
    flex-direction: column;
    border: 1px solid #f5e8d6;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.product-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.product-card__image-link {
    display: block;
    text-decoration: none;
}

.product-card__image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    overflow: hidden;
    padding: 10px;
}

.product-card__image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.product-card__artikelnr {
    font-size: x-small;
}

/* Ecken-Badges auf dem Produktbild (Auf Lager / Bestseller / Neuheit / Coming Soon / Release) */
.product-card__corner-badge {
    position: absolute;
    top: 8px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: Roboto, sans-serif;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 9px;
    border-radius: 999px;
    z-index: 2;
    white-space: nowrap;
}

/* Container zum vertikalen Stapeln mehrerer linker Ecken-Badges (z. B. Coming Soon + Release).
   Die enthaltenen Badges werden hier per Flex angeordnet statt absolut positioniert. */
.product-card__corner-badges {
    position: absolute;
    top: 8px;
    left: 8px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    z-index: 2;
    max-width: calc(100% - 16px);
}

.product-card__corner-badges .product-card__corner-badge {
    position: static;
    top: auto;
    left: auto;
    right: auto;
    max-width: 100%;
}

.product-card__corner-badge--stock {
    left: 8px;
    background: #e6f4ea;
    color: #2e7d32;
    border: 1px solid #cfe8d6;
}

.product-card__corner-badge--bestseller {
    right: 8px;
    background: #ffb703;
    color: #3d2b00;
}

.product-card__corner-badge--new {
    left: 8px;
    background: #fe980f;
    color: #fff;
}

.product-card__corner-badge--comingsoon {
    left: 8px;
    background: #fff3e0;
    color: #b25b00;
    border: 1px solid #ffe0b2;
}

/* Eigenes Badge für das voraussichtliche Erscheinungsdatum (unabhängig von "Coming Soon"). */
.product-card__corner-badge--release {
    left: 8px;
    background: #eef2f7;
    color: #3a4a5e;
    border: 1px solid #d9e1ec;
}

/* Spezifikations-Tags unterhalb des Preises (Spur, Sound, DCC) */
.spec-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding-top: 8px;
}

.spec-badges .spec-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #f7f4ee;
    color: #363432;
    border: 1px solid #e8e5de;
    border-radius: 4px;
    font-family: Roboto, sans-serif;
    font-size: 12px;
    font-weight: 500;
    padding: 2px 8px;
}

.product-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 12px 14px 8px;
    border-top: 1px solid #f5e8d6;
}

.product-card__name {
    color: #363432;
    font-family: Roboto, sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card__name a {
    color: #363432;
    text-decoration: none;
}

.product-card__name a:hover {
    color: #fe980f;
}

.product-card__rating {
    margin-bottom: 6px;
    font-size: 13px;
}

.product-card__rating-text {
    color: #696763;
    margin-left: 3px;
    font-size: 12px;
}

.product-card__price {
    margin-top: auto;
    margin-bottom: 8px;
}

.product-card__price-current {
    color: #fe980f;
    font-family: Roboto, sans-serif;
    font-size: 22px;
    font-weight: 700;
}

/* Eigene Zeile: der alte Preis steht ueber dem Sonderpreis, nicht daneben. Alle drei Angaben
   nebeneinander passen in eine schmale Karte nicht (auf der Startseite 201px). */
.product-card__price-old {
    display: block;
    color: #696763;
    font-family: Roboto, sans-serif;
    font-size: 14px;
    line-height: 1.2;
    text-decoration: line-through;
}

/* Sonderpreis und Rabatt-Marke gehoeren zusammen und bleiben deshalb in einer Zeile - notfalls
   ueberschreiten sie lieber die Kartenbreite, als sich zu trennen. */
.product-card__price-now {
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-card__price-discount {
    color: white;
    font-family: Roboto, sans-serif;
    font-size: 14px;
    font-weight: 700;
    background: #e53935;
    padding: 3px 8px;
    border-radius: 5px;
    white-space: nowrap;
    z-index: 1;
}

.product-card__availability {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-family: Roboto, sans-serif;
    margin-top: auto;
    margin-bottom: 4px;
}

.product-card__availability .availability-green {
    font-weight: bold;
    color: green;
}

.product-card__availability .availability-red {
    font-weight: bold;
    color: red;
}

.product-card__availability .availability-orange {
    font-weight: bold;
    color: #fb8c00;
}

.product-card__footer {
    padding: 8px 14px 14px;
}

.product-card__footer .cart {
    display: block;
    width: 100%;
    margin-left: 0;
    margin-bottom: 0;
}

.product-card__cart-message {
    font-size: 12px;
    margin-top: 4px;
}

/* ===== Product Listing: List View ===== */
.product-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
}

.product-list-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 16px 0;
    border-bottom: 1px solid #f5e8d6;
}

.product-list-item:first-child {
    border-top: 1px solid #f5e8d6;
}

.product-list-item:hover {
    background: #fefcf9;
}

.product-list-item__image-link {
    position: relative;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 180px;
}

.product-list-item__image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-list-item__info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.product-list-item__name {
    color: #363432;
    font-family: Roboto, sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

.product-list-item__name a {
    color: #363432;
    text-decoration: none;
}

.product-list-item__name a:hover {
    color: #fe980f;
    text-decoration: none;
}

.product-list-item__rating {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 14px;
    margin-top: 4px;
}

.product-list-item__rating-count {
    color: #696763;
    margin-left: 4px;
    font-size: 13px;
}

.product-list-item__price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-top: 8px;
}

.product-list-item__price-current {
    color: #fe980f;
    font-family: Roboto, sans-serif;
    font-size: 26px;
    font-weight: 700;
}

.product-list-item__price-old {
    color: #696763;
    font-family: Roboto, sans-serif;
    font-size: 16px;
    text-decoration: line-through;
}

.product-list-item__sale-badge {
    background: #e53935;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 3px;
}

.product-list-item__availability {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    font-family: Roboto, sans-serif;
    margin-top: 6px;
}

.product-list-item__availability .availability-green {
    font-weight: bold;
    color: green;
}

.product-list-item__availability .availability-red {
    font-weight: bold;
    color: red;
}

.product-list-item__availability .availability-orange {
    font-weight: bold;
    color: #fb8c00;
}

.product-list-item__cart {
    margin-top: 10px;
}

.product-list-item__cart .cart {
    margin-left: 0;
}

/* ===== RDH-UX: Bundle-Artikelnamen unter dem jeweiligen Bild anzeigen =====
   Jeder Bundle-Artikel ist eine Tabellenzelle (.bundleProduct). Bild und Name werden
   darin vertikal gestapelt, damit der Name direkt unter dem Bild steht und der Text
   nicht mehr in einer separaten Zeile umbricht. */
.bundlePanel .bundle .bundleProduct {
    text-align: center;
    max-width: 170px;
}

.bundlePanel .bundle .bundleProduct a {
    display: block;
}

.bundlePanel .bundle .bundleProduct img {
    margin: 0 auto 6px;
}

.bundlePanel .bundle .bundleProductName {
    display: block;
    font-size: 12px;
    line-height: 1.2;
    color: #333;
    white-space: normal;
    word-wrap: break-word;
}

/* ===== Hauptnavigation: Struktur-/Dropdown-Regeln für .rdh-mainnav =====
   Die Item-Optik (Farben, Sonder-Buttons) liefert weiterhin main.css über
   .mainmenu ul li a...; das Untermenü-Grundgerüst (position/hidden/220px)
   liefert weiterhin main.css ul.sub-menu. */
.rdh-mainnav {
    list-style: none;
    margin: 0;
    padding-left: 0;
    display: block;
}
.rdh-mainnav::before,
.rdh-mainnav::after { content: " "; display: table; }
.rdh-mainnav::after { clear: both; }
.rdh-mainnav > li {
    position: relative;
    display: block;
    float: left;
}
.rdh-mainnav > li > a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
}
/* 15px vertikales Padding ab dem sm-Breakpoint. Die .normal-Links überschreiben
   das auf padding:0 (main.css), aber Specials/Topseller haben keine
   Padding-Regel und brauchen es für die vertikale Ausrichtung (lg) bzw.
   ausreichende Höhe/Breite (sm). */
@media (min-width: 768px) {
    .rdh-mainnav > li > a {
        padding-top: 15px;
        padding-bottom: 15px;
    }
}
/* Untermenü-Dropdowns (Hauptnavigation UND Shop-Menü). Generisch auf ul.sub-menu
   gescoped — diese Klasse wird ausschließlich in den Nav-Dropdowns verwendet —,
   damit beide Menüs dieselben Regeln nutzen. */
li.rdh-dropdown:hover > ul.sub-menu {
    display: block;
    margin-top: 9px;
}
/* Scope `li.rdh-dropdown ul.sub-menu li` (Spezifität 0,2,3) — sonst gewinnt z. B.
   `.mainmenu ul li:first-child` (0,2,2) und nimmt dem ersten Untermenü-Eintrag
   das linke Padding. `li.rdh-dropdown` umfasst Haupt- und Shop-Menü gleichermaßen. */
li.rdh-dropdown ul.sub-menu li {
    padding: 0 10px;
}
li.rdh-dropdown ul.sub-menu li:last-child {
    box-shadow: 0 15px 24px rgba(0, 0, 0, 0.22);
}
li.rdh-dropdown ul.sub-menu li a {
    color: #000;
    font-size: 12px;
    line-height: 3em;
}
li.rdh-dropdown ul.sub-menu li:hover {
    background-color: #fe980f;
    border-color: #fe980f;
    color: #fff;
}

/* ===== "Alle Kategorien": hervorgehobener erster Menuepunkt + breites Klappmenue =====
   Der Eintrag ersetzt das frühere "Home" und ist der Einstieg in den Katalog, deshalb traegt er
   als einziger einen eigenen Grund. Die zwei Klassen im Selektor schlagen sowohl
   `.rdh-mainnav > li > a` als auch die Themenregel `.mainmenu ul li a`. */
.rdh-mainnav > li > a.rdh-mainnav__all {
    margin: 7px 4px;
    padding: 7px 14px;
    border-radius: 6px;
    background: rgba(0, 0, 0, .16);
    color: #fff;
    font-size: 17px;
    line-height: 1.2;
}

.rdh-mainnav > li > a.rdh-mainnav__all:hover,
.rdh-mainnav > li > a.rdh-mainnav__all:focus-visible {
    background: rgba(0, 0, 0, .28);
    color: #fff;
    text-decoration: none;
}

/* Das Klappmenue ist dreispaltig und damit viel breiter als die 220px, die ul.sub-menu
   vorgibt - `ul.sub-menu.rdh-megamenu` (0,2,1) schlaegt `ul.sub-menu` (0,1,1). */
ul.sub-menu.rdh-megamenu {
    width: 640px;
    padding: 0;
    box-shadow: 0 15px 24px rgba(0, 0, 0, .22);
}

/* Der eine Listeneintrag traegt den ganzen Inhalt. Die Regeln fuer gewoehnliche
   Untermenue-Eintraege - 10px Seitenpolster, Schlagschatten am letzten Kind und vor allem der
   orange Hover-Grund - haetten hier die komplette Flaeche eingefaerbt. */
li.rdh-dropdown ul.rdh-megamenu li.rdh-megamenu__inner,
li.rdh-dropdown ul.rdh-megamenu li.rdh-megamenu__inner:hover {
    padding: 16px 18px 12px;
    background: #fff;
    box-shadow: none;
}

.rdh-megamenu__cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px 18px;
}

.rdh-megamenu__title {
    margin-bottom: 6px;
    padding-bottom: 5px;
    border-bottom: 1px solid #f0ece4;
    color: #8a5900;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}

/* line-height ausdruecklich zurueckgeholt: `li.rdh-dropdown ul.sub-menu li a` setzt 3em, was in
   der Spalte zu Zeilen von 36px fuehrt. */
li.rdh-dropdown ul.rdh-megamenu a.rdh-megamenu__link {
    display: block;
    padding: 4px 6px;
    border-radius: 4px;
    color: #363432;
    font-size: 13px;
    line-height: 1.3;
    text-decoration: none;
}

li.rdh-dropdown ul.rdh-megamenu a.rdh-megamenu__link:hover,
li.rdh-dropdown ul.rdh-megamenu a.rdh-megamenu__link:focus-visible {
    background: #fdf0dd;
    color: #8a5900;
}

li.rdh-dropdown ul.rdh-megamenu a.rdh-megamenu__foot {
    display: block;
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid #f0ece4;
    color: #8a5900;
    font-size: 12.5px;
    font-weight: 700;
    line-height: 1.3;
    text-decoration: none;
}

li.rdh-dropdown ul.rdh-megamenu a.rdh-megamenu__foot:hover {
    text-decoration: underline;
}

/* ===== Uebersichtsseite "Alle Kategorien" ===== */
.cat-overview__group {
    margin: 0 0 28px;
}

.cat-overview__title {
    margin: 0 0 12px;
    padding-bottom: 6px;
    border-bottom: 1px solid #f0ece4;
    color: #8a5900;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.cat-overview__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

@media (max-width: 991px) {
    .cat-overview__grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 767px) {
    .cat-overview__grid { grid-template-columns: repeat(2, 1fr); }
}

.cat-overview__tile {
    display: block;
    border: 1px solid #f5e8d6;
    border-radius: 6px;
    background: #fff;
    color: #363432;
    text-align: center;
    text-decoration: none;
    transition: box-shadow .2s ease, transform .2s ease;
}

.cat-overview__tile:hover,
.cat-overview__tile:focus-visible {
    box-shadow: 0 4px 16px rgba(0, 0, 0, .1);
    transform: translateY(-2px);
    text-decoration: none;
}

.cat-overview__thumb {
    display: flex;
    align-items: center;
    justify-content: center;
    /* 4:3, damit die Kacheln unabhaengig vom Bild eine Zeile bilden. */
    aspect-ratio: 4 / 3;
    padding: 10px;
    overflow: hidden;
}

.cat-overview__thumb img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Ohne hinterlegtes Bild bleibt die Kachel einfarbig - der Name steht darunter ohnehin. */
.cat-overview__thumb--plain {
    background: #f7f4ee;
    color: #d8c9ae;
    font-size: 30px;
}

.cat-overview__name {
    display: block;
    padding: 8px 10px 12px;
    border-top: 1px solid #f5e8d6;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
}

.cat-overview__more {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 6px;
    font-size: 13px;
    font-weight: 700;
}

/* Generische Navigations-Liste (ersetzt .nav/.nav-pills/.navbar-nav für
   Kontaktinfo, Shop-Menü und Social-Icons). Farben/Padding-Overrides liefern
   weiterhin die Theme-Klassen (.contactinfo/.shop-menu ul li a); hier nur die
   Struktur (Reset, Position, Inline-Float). */
.rdh-navlist {
    list-style: none;
    margin: 0;
    padding-left: 0;
    display: block;
}
.rdh-navlist::before,
.rdh-navlist::after { content: " "; display: table; }
.rdh-navlist::after { clear: both; }
/* :where(li) hält die Spezifität bei (0,1,0), damit responsive Sichtbarkeits-
   Utilities (sm:max-md:hidden, max-sm:hidden …) per Ladereihenfolge gewinnen.
   Mit `> li` wäre die Regel (0,1,2) und würde die Utility schlagen — dadurch
   blieb z. B. "Meine Listen" im Kundenmenü auf sm sichtbar. */
.rdh-navlist > :where(li) { position: relative; display: block; }
.rdh-navlist > li > a { display: block; padding: 10px 15px; text-decoration: none; }
.rdh-navlist--inline > li { float: left; }

/* ===== RDH-UX: Hauptnavigation auf md/sm in einer Zeile halten =====
   Die .mainmenu ist eine gefloatete navbar-nav. Auf großen Bildschirmen (lg, >=1200px)
   bleibt das ursprüngliche Float-Layout unverändert erhalten. Nur an den engeren
   Breakpoints (md/sm) wird das Menü auf inline-block + white-space:nowrap umgestellt,
   damit die Links garantiert in einer Zeile bleiben, und Abstände/Schriftgröße werden
   progressiv reduziert. xs nutzt ein eigenes mobiles Menü und ist nicht betroffen. */

/* Gemeinsame Regel für md + sm: eine Zeile erzwingen (kein Float-Umbruch). */
@media (min-width: 768px) and (max-width: 1199px) {
    .mainmenu > ul.rdh-mainnav {
        white-space: nowrap;
    }

    .mainmenu > ul.rdh-mainnav > li {
        float: none;
        display: inline-block;
        vertical-align: middle;
        white-space: nowrap;
        /* Die ursprüngliche Float-Ausrichtung nutzt padding-top/margin-top, um Text
           auszurichten. Bei inline-block + vertical-align:middle würde das den Text
           nach unten schieben, daher hier zurücksetzen und alles mittig zentrieren. */
        padding-top: 0;
        margin-top: 0 !important; /* überschreibt inline margin-top der Trenner-<li> */
    }

    .mainmenu > ul.rdh-mainnav > li a.normal {
        margin-top: 0;
    }

    /* Der Topseller-Link trägt auf dem Desktop ein asymmetrisches margin-top:-10px
       (ohne Ausgleich unten). Im inline-block/vertical-align:middle-Layout der
       schmalen Breakpoints zieht das den Link nach oben. Vertikale Margins hier
       neutralisieren, damit er wie die übrigen Einträge mittig sitzt (specials hat
       ein symmetrisches margin:-12px und bleibt daher unberührt). */
    .mainmenu > ul.rdh-mainnav > li a.topseller {
        margin-top: 0;
        margin-bottom: 0;
    }

    /* Bilder (Trenner + Icons in Specials/Topseller) auf der Mittellinie ausrichten. */
    .mainmenu > ul.rdh-mainnav > li img,
    .mainmenu > ul.rdh-mainnav > li a img {
        vertical-align: middle;
    }

    /* Trenner-Grafiken dürfen schrumpfen, damit die Links Vorrang haben. */
    .mainmenu > ul.rdh-mainnav > li.sm\:max-md\:hidden > img {
        max-width: 100%;
    }
}

/* Grosser Desktop (lg und breiter) */
@media (min-width: 1200px) {
    /* Ab 1200px gilt wieder das urspruengliche Float-Layout der Navigation, das seine Eintraege
       ueber je eigene Polster ausrichtet: das <li> bekommt padding-top:13px, a.normal zusaetzlich
       margin-top:6px. Darunter (der Block oben) stellt inline-block + vertical-align:middle alles
       mittig - deshalb sitzt „Alle Kategorien" dort richtig und erst ab 1200px zu tief.

       Der Eintrag traegt statt der Theme-Polster sein eigenes, symmetrisches margin von 7px und
       folgte der 6px-Anhebung nicht: gemessen lag seine Mitte bei 216 statt 210. Die 6px wandern
       hier von oben nach unten - der Eintrag rueckt hoch, die Zeile bleibt gleich hoch. */
    .rdh-mainnav > li > a.rdh-mainnav__all {
        margin-top: 1px;
        margin-bottom: 13px;
    }
}

/* Tablet-Querformat / kleiner Desktop (md) */
@media (min-width: 992px) and (max-width: 1199px) {
    /* 2px statt 4px: auf md sind zusätzlich alle 10 Trenner-/Home-/Kontakt-Einträge
       sichtbar (auf sm sind sie ausgeblendet), sodass die Leiste mit 4px um ~24px
       über die Containerbreite hinauslief. Wegen white-space:nowrap wurde das nicht
       umgebrochen, sondern der letzte Eintrag ("Kontakt") ragte heraus. */
    .mainmenu ul li {
        padding-left: 2px;
        padding-right: 2px;
    }

    .mainmenu ul li a.normal {
        font-size: 14px;
    }
}

/* Tablet (sm) */
@media (min-width: 768px) and (max-width: 991px) {
    .mainmenu ul li {
        padding-left: 2px;
        padding-right: 2px;
    }

    .mainmenu ul li a.normal {
        font-size: 13px;
    }

    .mainmenu ul li a.specials,
    .mainmenu ul li a.topseller {
        font-size: 11px;
    }

    /* Die gemeinsame md/sm-Regel oben setzt display:inline-block mit (0,2,3) und
       schlägt damit die Utility .sm\:max-md\:hidden (0,1,0) — Trenner, "Home" und
       "Kontakt" blieben auf sm sichtbar, obwohl sie dort ausgeblendet gehören
       (die Leiste war dadurch überfüllt). Hier explizit wieder ausblenden. */
    .mainmenu > ul.rdh-mainnav > li.sm\:max-md\:hidden {
        display: none;
    }
}

/* ===== RDH-UX: Shop-/Kundenmenü auf md/sm in einer Zeile halten =====
   Angemeldete Kunden sehen vier Einträge (Mein Konto, Meine Listen, Warenkorb,
   Abmelden) statt drei — abgemeldet fällt das Problem daher nicht auf. Jeder
   Eintrag trägt 15px Innenabstand am <li> UND nochmals 15px am <a>, zusammen
   240px allein an Abständen. Auf md/sm ist die Spalte dafür zu schmal: der
   letzte Eintrag bricht in eine zweite Zeile um und die Kopfzeile wächst
   (85px → 102px), was die Suchleisten-Zeile zerreißt. Analog zur
   Hauptnavigation oben werden die Abstände hier nur an den engen Breakpoints
   reduziert; auf lg (>=1200px) bleibt das ursprüngliche Layout unverändert. */
@media (min-width: 768px) and (max-width: 1199px) {
    .shop-menu > ul {
        white-space: nowrap;
    }

    /* (0,1,2) wie main.css, aber site.css lädt später und gewinnt. */
    .shop-menu ul li {
        padding-left: 8px;
        padding-right: 8px;
    }

    /* (0,2,3) schlägt .rdh-navlist > li > a (0,1,2) aus dem Navlist-Rezept. */
    .shop-menu ul.rdh-navlist > li > a {
        padding-left: 8px;
        padding-right: 8px;
    }
}

/* ===== Responsive: Grid ===== */
@media (min-width: 992px) and (max-width: 1199px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .product-card__name {
        font-size: 12px;
    }

    .product-card__price-current {
        font-size: 16px;
    }

    .product-list-item {
        gap: 0.75rem;
    }

    .product-list-item__image-link {
        width: 120px;
        height: 120px;
    }

    .product-list-item__name {
        font-size: 14px;
    }

    .product-list-item__price-current {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== Suchergebnisse (Search/Results) ===== */
/* Ueber der Ueberschrift steht hier kein Brotkrumenpfad wie im Katalog - ohne etwas Luft klebte die
   erste Zeile am Kopf der Seite. */
#content.search-results {
    padding-top: 26px;
}


/* Die Ergebnisse selbst sind eine gewoehnliche Artikelliste (_ProductListing) und tragen deren
   Klassen. Eigen bleibt nur, was die Suche allein hat: der Hinweis auf die Grenze des Suchindex
   und der Vorschlag "Meinten Sie ...?". Suchfeld, Filterleiste und eigene Ergebnis-Werkzeugleiste
   gibt es hier nicht mehr - sie standen doppelt zur Kopfzeile und zur Filterkarte. */
.search-results__summary {
    font-family: Roboto, sans-serif;
    color: #363432;
    background: #fff;
    border: 1px solid #e8e5de;
    border-radius: 6px;
    padding: 16px 20px;
    margin-bottom: 16px;
    font-size: 16px;
}

.search-results__summary .search {
    color: #fe980f;
    font-weight: 700;
}

.search-results__suggestion {
    font-family: Roboto, sans-serif;
    margin-bottom: 12px;
}

.search-results__suggestion .search_suggestion {
    color: #fe980f;
    font-weight: 600;
}

/* =========================================================================
   Mobile UX (Teil A) — Breadcrumb, Suche, Sticky-Header, Warenkorb-Feedback,
   Pagination, mobiler Footer, Sprachwechsler, Hinweis-Banner, Cookie-Banner.
   Greift die Design-Tokens der Produktkarten auf: Akzent #fe980f, Roboto,
   Rahmen #e8e5de/#d4d1ca, Radius 4-6px.
   ========================================================================= */

/* M3: Breadcrumb mobil umbrechen statt überlaufen */
@media (max-width: 767px) {
    .btn-breadcrumb {
        display: flex;
        flex-wrap: wrap;
    }

    .btn-breadcrumb .btn {
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
}

/* M4: dauerhaft sichtbare Suche im mobilen Header */
.mobile-search {
    padding: 8px 10px;
}

/* Größeres Touch-Ziel für die mobile Suche (rdh-search ersetzt die BS-input-group). */
.mobile-search .rdh-search > input,
.mobile-search .rdh-search > button {
    height: 40px;
}

/* M6: mobiler Header bleibt beim Scrollen oben */
@media (max-width: 767px) {
    .rdh-mnav.sm\:hidden {
        position: sticky;
        top: 0;
        z-index: 1030;
        margin-bottom: 0;
        box-shadow: 0 2px 6px rgba(0, 0, 0, .08);
    }
}

/* ===== Mobiler Header: eigenständige Navigation unter rdh-mnav*-Klassen =====
   Ein-/Ausblenden des Menüs übernimmt .rdh-collapse (weiter unten) + der
   Vanilla-Toggle (main.js). */
.rdh-mnav {
    position: relative;
    min-height: 50px;
    margin-bottom: 20px;
    background-color: #f8f8f8;
    border: 1px solid transparent;
}
.rdh-mnav::before, .rdh-mnav::after,
.rdh-mnav__header::before, .rdh-mnav__header::after { content: " "; display: table; }
.rdh-mnav::after, .rdh-mnav__header::after { clear: both; }

.rdh-mnav__brand {
    float: left;
    height: 50px;
    padding: 15px;
    margin: 0;
    font-size: 18px;
    line-height: 20px;
    color: #777;
    text-decoration: none;
}

.rdh-mnav__toggle {
    position: relative;
    float: right;
    padding: 9px 10px;
    margin: 8px 15px 8px 0;
    background-color: #000;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
}
.rdh-mnav__toggle:focus { outline: 0; }
.rdh-mnav__bar {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 1px;
    background-color: #fff;
}
.rdh-mnav__bar + .rdh-mnav__bar { margin-top: 4px; }

.rdh-mnav__text {
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 15px;
    margin-bottom: 15px;
}
.rdh-mnav__link { color: #777; text-decoration: none; }
.rdh-mnav__link:hover { color: #333; }

/* Mobile-Menü-Liste (rdh-navlist, vertikal): Linkfarbe wie das frühere
   .navbar-default .navbar-nav > li > a. */
.rdh-mnav .rdh-navlist > li > a { color: #777; }
.rdh-mnav .rdh-navlist > li > a:hover,
.rdh-mnav .rdh-navlist > li > a:focus { color: #333; }

/* M7: Sprachwechsel im mobilen Menü */
.mobile-lang {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mobile-lang a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
}

/* RDH-UI-002: Hinweis-/Rabatt-Laufschrift ganz oben auf der Seite (Desktop und mobil dieselbe
   Leiste). Der Text steht viermal identisch im Gleis; die Animation schiebt ihn um genau eine
   Kopie (25 %), dadurch läuft er lückenlos in Schleife. Die Dauer liefert die View als
   --rdh-ticker-duration, damit lange Texte nicht schneller vorbeiziehen als kurze. */
.rdh-ticker {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 10px;
    background: #fff8ec;
    border-bottom: 1px solid #f5e8d6;
    overflow: hidden;
}

.rdh-ticker__link {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1 1 auto;
    min-width: 0;
    padding: 7px 0;
    color: #363432;
    font-weight: 600;
}

.rdh-ticker__link:hover,
.rdh-ticker__link:focus {
    color: #363432;
    text-decoration: none;
}

.rdh-ticker__icon {
    flex: 0 0 auto;
    color: var(--color-link, #337ab7); /* Informationsblau, siehe .rdh-notice__icon */
    font-size: 16px;
    line-height: 1;
}

.rdh-ticker__viewport {
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
}

.rdh-ticker__track {
    display: flex;
    width: max-content;
    white-space: nowrap;
    animation: rdh-ticker-scroll var(--rdh-ticker-duration, 30s) linear infinite;
    will-change: transform;
}

/* min-width hält jede Kopie mindestens halb so breit wie das Fenster: drei nachlaufende Kopien
   (150vw) füllen damit auch bei kurzen Texten immer die ganze Breite, es entsteht keine Lücke. */
.rdh-ticker__item {
    min-width: 50vw;
    padding-right: 60px;
}

@keyframes rdh-ticker-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-25%); }
}

/* Zum Lesen anhalten – auch für Tastaturnutzer, sobald der Link den Fokus hat. */
.rdh-ticker:hover .rdh-ticker__track,
.rdh-ticker:focus-within .rdh-ticker__track {
    animation-play-state: paused;
}

/* Ohne Bewegung: die Nachricht steht still und darf umbrechen, statt abgeschnitten zu werden. */
@media (prefers-reduced-motion: reduce) {
    .rdh-ticker__track {
        animation: none;
        width: auto;
        white-space: normal;
    }

    .rdh-ticker__item {
        padding-right: 0;
    }

    .rdh-ticker__item + .rdh-ticker__item {
        display: none;
    }
}

/* RDH-UI-001: Schließen-Button des Hinweises (mobil 44px-Touch-Ziel) */
.rdh-ticker__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    min-width: 32px;
    min-height: 32px;
    padding: 0;
    border: none;
    background: transparent;
    color: #696763;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
}

.rdh-ticker__close:hover,
.rdh-ticker__close:focus {
    color: #363432;
}

@media (max-width: 767px) {
    .rdh-ticker__close {
        min-width: 44px;
        min-height: 44px;
    }
}

/* RDH-UI-002: Inhalt des Hinweises (NoticeView). Gilt an beiden Stellen, an denen er gerendert
   wird — eingebettet auf der Startseite und im Overlay der Laufschrift. Deshalb keine
   Textausrichtung und kein Außenabstand hier: die Startseite zentriert ihren Block selbst. */
.rdh-notice__section + .rdh-notice__section {
    margin-top: 22px;
    padding-top: 22px;
    border-top: 1px solid var(--border, #dddddd);
}

.rdh-notice__title {
    margin: 0 0 10px;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 600;
    color: var(--foreground, #333333);
}

/* Symbol als rundes Abzeichen im Linkblau des Shops (--color-link): Blau steht für Information,
   das Marken-Orange läse sich hier wie eine Warnung. Löst die alten PNG-Kugeln ab.
   inline-flex statt flex: die Startseite zentriert ihren Text, ein Block-Flex-Container würde
   Symbol und Überschrift dort nach links ziehen. */
.rdh-notice__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    margin-right: 10px;
    vertical-align: middle;
    border-radius: 50%;
    background: rgba(51, 122, 183, 0.12); /* --color-link, 12 % */
    color: var(--color-link, #337ab7);
    font-size: 15px;
}

.rdh-notice__text {
    margin: 0;
    line-height: 1.65;
    white-space: pre-line; /* die Texte bringen ihre Zeilenumbrüche aus der Konfiguration mit */
}

.rdh-notice__code + .rdh-notice__code {
    margin-top: 16px;
}

.rdh-notice__code-image {
    display: block;
    max-width: 100%;
    max-height: 260px;
    border: 1px solid var(--border, #dddddd);
    border-radius: 6px;
}

/* Das Aktionsbild ist anklickbar (groß ansehen, siehe NoticePopup.cshtml). Der Hinweis dazu
   liegt in der Ecke des Bildes statt darunter, damit er die Karte nicht höher macht. */
.rdh-notice__code-image-link {
    position: relative;
    display: inline-block;
    max-width: 100%;
    margin-bottom: 10px;
    cursor: zoom-in;
}

.rdh-notice__code-image-hint {
    position: absolute;
    right: 6px;
    bottom: 6px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 3px 8px;
    font-size: 12px;
    line-height: 1.4;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.62);
    border-radius: 4px;
}

.rdh-notice__code-manufacturers {
    margin: 4px 0 0;
    font-size: 13px;
    line-height: 1.5;
    color: var(--muted-foreground, #737373);
}

/* Kartenlayout nur für das Overlay (NoticePopup). flow-root: siehe Kommentar in NoticePopup.cshtml. */
.rdh-notice-popup {
    display: flow-root;
    padding: 26px 30px 30px;
    text-align: left;
    font-size: 15px;
    color: var(--foreground, #333333);
    background: var(--background, #ffffff);
    border-top: 4px solid var(--color-link, #337ab7); /* dieselbe Informationsfarbe wie das Symbol */
}

/* Der Schließen-Knopf (44 px) liegt im Overlay über der rechten oberen Ecke — nur die erste
   Überschrift muss ihm ausweichen, die folgenden stehen weit darunter. */
.rdh-notice-popup .rdh-notice__section:first-child .rdh-notice__title {
    padding-right: 46px;
}

@media (max-width: 767px) {
    .rdh-notice-popup {
        padding: 20px 20px 24px;
    }
}

/* Rahmen des Overlays. Über baseClass auf diesen einen Aufruf begrenzt, damit die
   Bilder-Lightbox (data-fancybox="images") unverändert bleibt. */
.rdh-notice-lightbox .fancybox-bg {
    background: #201d1b;
}

.rdh-notice-lightbox.fancybox-is-open .fancybox-bg {
    opacity: 0.8;
}

/* Der Selektor führt .fancybox-slide--iframe mit, weil Fancybox dort selbst overflow: visible
   setzt — mit gleicher Spezifität würde die eigene Regel verlieren. */
.rdh-notice-lightbox .fancybox-slide--iframe .fancybox-content {
    overflow: hidden;
    background: var(--background, #ffffff);
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

/* Der iframe selbst bekommt denselben Radius: er malt über die Ecken der Hülle. */
.rdh-notice-lightbox .fancybox-iframe {
    border-radius: 10px;
}

/* Fancybox hängt den kleinen Schließen-Knopf mit top: -44px über die Karte. Auf hellem Grund
   ist sein Grau kaum zu sehen — er wandert in die Karte hinein und wird dunkler. */
.rdh-notice-lightbox .fancybox-close-small {
    top: 2px;
    right: 2px;
    color: var(--muted-foreground, #737373);
}

.rdh-notice-lightbox .fancybox-close-small:hover,
.rdh-notice-lightbox .fancybox-close-small:focus {
    color: var(--foreground, #333333);
}

/* RDH-UI-001: kondensierter mobiler Sticky-Header. Nach dem Runterscrollen bleiben nur
   Logo/Cart-Zeile (mit hineingezogenem Hamburger-Toggle) und die Suche stehen; Begrüßung und
   Kategorie-Schnelllinks werden ausgeblendet (Toggle-Logik in main.js). */
@media (max-width: 767px) {
    .rdh-mnav--condensed .rdh-mnav__header .rdh-mnav__brand,
    .rdh-mnav--condensed .rdh-mnav__text {
        display: none;
    }

    /* Toggle-Zeile kollabiert; der Hamburger wandert absolut in die Logo-Zeile,
       links neben das Warenkorb-Icon. right muss die Warenkorb-Breite (~48px) plus
       dessen Abstand vom rechten Rand freihalten, sonst überlappen Toggle und Cart. */
    .rdh-mnav--condensed .rdh-mnav__header {
        position: absolute;
        top: 6px;
        right: 96px;
        min-height: 0;
        margin: 0;
    }

    .rdh-mnav--condensed .rdh-mnav__header .rdh-mnav__toggle {
        margin: 0;
    }

    .rdh-mnav--condensed .mobile-search {
        padding-top: 0;
    }
}

/* M5: Warenkorb-Zähler am mobilen Cart-Icon */
.mobile-cart-link {
    position: relative;
    display: inline-block;
    line-height: 0;
}

/* Der ViewComponent-Output (img + Badge) wird in einen inline-block-Span gewickelt,
   damit das Badge relativ zum Icon (statt zur Spaltenbreite) positioniert wird. */
.mobile-cart-link #mobileShoppingCart {
    position: relative;
    display: inline-block;
    line-height: 0;
}

.mobile-cart-badge {
    position: absolute;
    /* Zentriert über dem Icon */
    left: 55%;
    transform: translateX(-50%);
    background: #fe980f;
    color: #fff;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    padding: 3px 6px;
    min-width: 18px;
    text-align: center;
}

/* M5/RDH-UX-002: Toast/Snackbar für die AJAX-Aktionen der Produktseite ("In den Warenkorb",
   Bundle-Kauf, "Artikel auf Merkliste") – oben zentriert, nahe den Warenkorb-/Merklisten-Icons.
   Die genaue top-Position wird per JS unter den sichtbaren Header gesetzt. Enthält einen
   klickbaren Aktionslink, daher pointer-events nur im sichtbaren Zustand aktiv.
   Varianten: success (default, grün) | info (neutral dunkel, z. B. "liegt bereits auf der Liste"). */
.rdh-toast {
    position: fixed;
    left: 50%;
    top: 16px;
    transform: translateX(-50%) translateY(-8px);
    display: flex;
    align-items: center;
    gap: 10px;
    background: #2e7d32;
    color: #fff;
    padding: 12px 20px;
    border-radius: 6px;
    font-family: Roboto, sans-serif;
    font-size: 14px;
    font-weight: 600;
    z-index: 10050;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .3);
    opacity: 0;
    transition: opacity .3s ease, transform .3s ease;
    pointer-events: none;
    max-width: 90vw;
    text-align: left;
}

.rdh-toast[data-variant="info"] {
    background: #37474f;
}

.rdh-toast--visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.rdh-toast__icon {
    font-size: 16px;
    flex-shrink: 0;
    opacity: .9;
}

.rdh-toast__link {
    color: #fff;
    text-decoration: underline;
    white-space: nowrap;
    padding: 6px 0;
    margin-left: 4px;
}

.rdh-toast__link:hover,
.rdh-toast__link:focus {
    color: #ffe082;
}

/* RDH-UX-002: kurzzeitiger "✓ Hinzugefügt"-Zustand des Add-to-Cart-Buttons */
.addToCartBtn--added,
.addToCartBtn--added:hover,
.addToCartBtn--added:focus,
.addToCartBtn--added[disabled] {
    background: #2e7d32 !important;
    border-color: #2e7d32 !important;
    color: #fff !important;
    /* !important: rdh-btn (tailwind.css, lädt nach site.css) setzt disabled:opacity-50 —
       der Hinzugefügt-Zustand muss voll deckend bleiben. */
    opacity: 1 !important;
}

/* M2: Warenkorb-CTA auf Mobilgeräten voll nutzbar */
@media (max-width: 767px) {
    .cart-continue-btn {
        width: 100%;
        white-space: normal;
    }

    .cart-continue-wrapper {
        float: none !important;
    }

    /* RDH-UX-011: "Weiter einkaufen" muss mobil dem gleichen Muster wie der Checkout-CTA
       folgen – volle Breite, umbruchfähig, ausreichende Touch-Höhe (>=44px) und Abstand,
       damit beide Buttons gestapelt sauber untereinander stehen statt links abgeschnitten. */
    .cart-continue-shopping-wrapper {
        float: none !important;
        margin-bottom: 10px;
    }

    .cart-continue-shopping-btn {
        width: 100%;
        white-space: normal;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
    }
}

/* M2: Warenkorb-Tabelle auf Mobilgeräten als gestapelte Karten statt horizontal scrollender
   Tabelle – so bleiben Menge und Gesamtbetrag ohne Querscrollen sichtbar. */
@media (max-width: 767px) {
    .cart-items-table thead {
        display: none;
    }

    .cart-items-table,
    .cart-items-table tbody,
    .cart-items-table tr,
    .cart-items-table td {
        display: block;
        width: 100%;
    }

    .cart-items-table tr {
        border: 1px solid #e8e5de;
        border-radius: 6px;
        margin-bottom: 12px;
        padding: 12px;
        background: #fff;
    }

    .cart-items-table td {
        border: none !important;
        padding: 4px 0 !important;
        text-align: left !important;
    }

    /* Menge- und Gesamt-Zeile: Label links, Wert rechts */
    .cart-items-table .cart-qty-cell,
    .cart-items-table .cart-total-cell {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
        margin-top: 6px;
    }

    .cart-items-table .cart-mobile-label {
        font-weight: 700;
        color: #696763;
    }

    .cart-items-table .cart-total-cell .cart-rowsum {
        font-size: 16px;
        font-weight: 700;
    }

    .cart-items-table .cart_button {
        margin-right: 0;
    }

    /* Gesamtsumme darf auf schmalen Screens umbrechen statt über den Rand zu laufen. */
    .cart-grand-total {
        float: none !important;
        text-align: right;
        /* Der umschließende .row hebt mit seinen negativen Margins das Padding der
           .col-Spalte auf; ohne Ausgleich läuft die Summe ~15px zu weit nach rechts. */
        padding-right: 15px;
        padding-left: 15px;
    }

    .cart-grand-total h4 {
        white-space: normal;
    }
}

/* M2: Auf Mobilgeräten das per .padding-right entfernte rechte Innenabstand der Content-Spalte
   wiederherstellen. Sonst laufen innere .row-Elemente (margin-right: -15px) 15px über den
   Viewport hinaus und erzeugen horizontales Scrollen. */
@media (max-width: 767px) {
    .padding-right {
        padding-right: 15px;
    }
}

/* Warenkorb-Mengensteuerung (+/-): ersetzt die früheren DevExtreme-dxButton-Widgets
   durch schlanke, native Buttons mit Font-Awesome-Icons. */
.cart-qty-controls {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.cart-qty-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    padding: 0;
    border: 1px solid #d0d0c8;
    border-radius: 3px;
    background: #e2e2d9;
    color: #ffffff;
    font-size: 14px;
    line-height: 1;
    cursor: pointer;
    transition: background .15s ease, border-color .15s ease;
}

.cart-qty-btn:hover:not(:disabled),
.cart-qty-btn:focus:not(:disabled) {
    background: #fe980f;
    border-color: #fe980f;
    color: #ffffff;
    outline: none;
}

.cart-qty-btn:disabled {
    opacity: .5;
    cursor: default;
}

/* Lade-Overlay für die Nachbestell-Artikel (ersetzt DevExtreme-dxLoadPanel). */
.cart-load-panel {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.6);
}

.cart-load-panel-pane {
    padding: 18px 22px;
    border-radius: 4px;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    color: #696763;
}

/* RDH-TRUST-002: AGB-Einwilligung im Checkout — verlinkte AGB/Widerrufsbelehrung,
   gesamte Zeile als mindestens 44px hohe Klickfläche. */
.agb-consent {
    display: inline-flex;
    align-items: flex-start;
    gap: 10px;
    min-height: 44px;
    padding: 10px 12px;
    text-align: left;
    max-width: 560px;
}

.agb-consent input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin: 1px 0 0;
    flex-shrink: 0;
    cursor: pointer;
    /* Markenfarbe wie bei .rdh-checkbox im Styleguide (accent-primary). */
    accent-color: var(--primary);
}

.agb-consent label {
    font-weight: normal;
    margin: 0;
    cursor: pointer;
    line-height: 1.5;
}

.agb-consent label a {
    text-decoration: underline;
}

/* RDH-UX-009: Der finale Bestell-CTA ("Jetzt kaufen") muss das prominenteste Element der
   Review-Seite sein: größer, mehr Padding und auf Mobilgeräten volle Breite mit >=48px Höhe. */
.checkout-final-cta-row {
    margin-top: 10px;
    width: 100%;
}

.checkout-final-cta {
    display: inline-block;
    min-height: 48px;
    padding: 12px 40px;
    font-size: 18px;
    font-weight: 700;
}

@media (max-width: 767px) {
    .checkout-final-cta {
        display: block;
        width: 100%;
        padding-left: 12px;
        padding-right: 12px;
    }
}

/* RDH-UI-002: Der Scroll-to-top-Button überlagert auf Mobilgeräten die vollbreiten
   "In den Warenkorb"-Buttons der Produktkarten (Fehltipp-Risiko). Da der kondensierte
   Sticky-Header (RDH-UI-001) Suche/Navigation ohnehin permanent erreichbar hält und
   Flick-Scrolling nativ ist, wird der Button auf Mobilgeräten ausgeblendet. */
@media (max-width: 767px) {
    a#scrollUp {
        display: none !important;
    }
}

/* M9: Pagination — Touch-Ziele und Umbruch */
@media (max-width: 767px) {
    .pagination {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 6px;
    }

    .pagination ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 6px;
        padding-left: 0;
    }

    .pagination ul > li > a,
    .pagination ul > li > span {
        min-width: 44px;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
}

/* M11: Cookie-Banner auf Mobilgeräten als fixierte Leiste unten */
@media (max-width: 767px) {
    #cookieConsent {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 10001;
        margin-bottom: 0;
    }

    #cookieConsent .accept-policy {
        min-height: 44px;
    }
}

/* M1: kompakter mobiler Footer (Desktop-Footer ist erst ab md sichtbar) */
.mobile-footer {
    background: #f8f8f5;
    border-top: 1px solid #e8e5de;
    padding: 16px 12px;
    margin-top: 24px;
}

.mobile-footer__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px 16px;
    padding: 0;
    margin: 0 0 12px;
    list-style: none;
}

.mobile-footer__links a {
    font-size: 13px;
    color: #696763;
    padding: 6px 4px;
    display: inline-block;
}

.mobile-footer__copyright {
    text-align: center;
    font-size: 11px;
    color: #9b9891;
    margin: 0;
}

/* RDH-UX-008: Checkout progress stepper (Warenkorb -> Zahlung -> Uebersicht) */
.checkout-stepper {
    margin: 0 auto 24px;
    max-width: 640px;
}

.checkout-stepper__list {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 0;
    margin: 0;
    list-style: none;
    counter-reset: none;
}

.checkout-stepper__step {
    position: relative;
    flex: 1 1 0;
    text-align: center;
    color: #9b9891;
    font-size: 13px;
}

/* Connector line between steps */
.checkout-stepper__step::before {
    content: "";
    position: absolute;
    top: 15px;
    left: -50%;
    width: 100%;
    height: 2px;
    background: #ddd;
    z-index: 0;
}

.checkout-stepper__step:first-child::before {
    display: none;
}

/* Inner wrapper (anchor for completed steps, span otherwise) */
.checkout-stepper__link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.checkout-stepper__step.is-completed .checkout-stepper__link {
    cursor: pointer;
}

.checkout-stepper__step.is-completed .checkout-stepper__link:hover,
.checkout-stepper__step.is-completed .checkout-stepper__link:focus {
    color: #fe980f;
    text-decoration: none;
}

.checkout-stepper__step.is-completed .checkout-stepper__link:hover .checkout-stepper__marker,
.checkout-stepper__step.is-completed .checkout-stepper__link:focus .checkout-stepper__marker {
    background: #e88a06;
    border-color: #e88a06;
}

.checkout-stepper__marker {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #ddd;
    color: #9b9891;
    font-weight: 600;
    line-height: 1;
}

.checkout-stepper__label {
    display: block;
    margin-top: 6px;
    word-break: break-word;
}

.checkout-stepper__step.is-current {
    color: #333;
    font-weight: 600;
}

.checkout-stepper__step.is-current .checkout-stepper__marker {
    border-color: #fe980f;
    color: #fe980f;
}

.checkout-stepper__step.is-completed {
    color: #333;
}

.checkout-stepper__step.is-completed .checkout-stepper__marker {
    background: #fe980f;
    border-color: #fe980f;
    color: #fff;
}

.checkout-stepper__step.is-completed::before {
    background: #fe980f;
}

/* RDH-UX-008: Zahlungsschritt-CTA auf Mobilgeräten volle Breite und >=48px Höhe,
   konsistent mit dem finalen "Jetzt kaufen"-Button auf der Übersichtsseite. */
@media (max-width: 767px) {
    .checkout-step-cta {
        display: block;
        width: 100%;
        min-height: 48px;
        padding: 12px 20px;
        font-size: 16px;
        font-weight: 700;
    }

    /* Stepper-Labels auf sehr schmalen Screens etwas kompakter, damit sie nicht umbrechen. */
    .checkout-stepper {
        margin-bottom: 18px;
    }

    .checkout-stepper__step {
        font-size: 12px;
    }

    .checkout-stepper__marker {
        width: 28px;
        height: 28px;
    }

    .checkout-stepper__step::before {
        top: 13px;
    }
}

/* Footer-Link-Listen: Reset (Link-Optik liefert weiterhin .single-widget ul li a). */
.footer-links {
    list-style: none;
    padding-left: 0;
    margin-bottom: 10px;
}

/* ===========================================================================
 * Ein-/Ausklappen, Dropdown-Anker und Karussell-Sichtbarkeit
 * ---------------------------------------------------------------------------
 * Markup und die Vanilla-Handler in main.js hängen an diesen Klassen — ohne
 * sie brechen mobiles Menü, Navigations-Dropdowns und Karussells.
 * ======================================================================== */

/* 1. Ein-/Ausklappen: mobiles Menü (_Layout/_ErrorLayout) und das
      Bewertungsformular (Catalog/_ProductReviews). main.js togglet nur
      .rdh-collapse--open, das Verbergen übernimmt diese Regel. */
.rdh-collapse:not(.rdh-collapse--open) {
    display: none;
}

/* 2. Bezugspunkt der Untermenüs: ul.sub-menu ist position:absolute mit
      top:30px/left:0 (main.css). Ohne position:relative auf dem li.rdh-dropdown
      verankert es sich am nächsten positionierten Vorfahren und landet über
      dem Header (Suchleiste). Betrifft Hauptnavigation und Shop-/Warenkorbmenü. */
.rdh-dropdown {
    position: relative;
}

/* 3. Karussell-Slides: Sidebar-Rotation sowie die Empfehlungs-Karussells auf
      Detail-/Herstellerseiten. main.js verschiebt nur .active; ohne diese
      Regeln werden alle Slides gleichzeitig untereinander angezeigt.
      overflow:hidden enthält zusätzlich die gefloateten Slide-Inhalte. */
/* Bezugsrahmen für die absolut positionierten Karussell-Pfeile
   (.recommended-item-control). Ohne position:relative klettern die Pfeile bis
   zum nächsten positionierten Vorfahren hoch und stehen dann deutlich über den
   Cards statt mittig daneben. */
.rdh-carousel {
    position: relative;
}

.carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* Slide-Effekt (früher von Bootstrap geliefert, beim BS-Ausbau verloren gegangen).
   float + width:100% + margin-right:-100%: aus- und einlaufender Slide belegen
   während der Animation denselben Platz, sonst rutscht der neue unter den alten.
   Der Float macht den Slide zugleich zum BFC-Root und fängt seine eigenen
   gefloateten Karten (SimilarProducts) ein. */
.rdh-carousel__slide {
    position: relative;
    display: none;
    float: left;
    width: 100%;
    margin-right: -100%;
    backface-visibility: hidden;
    transition: transform 0.6s ease-in-out;
}

/* Ein- und auslaufender Slide müssen beide sichtbar sein, solange animiert wird. */
.rdh-carousel__slide.active,
.rdh-carousel__slide--next,
.rdh-carousel__slide--prev {
    display: block;
}

/* Startposition des einlaufenden bzw. Zielposition des auslaufenden Slides.
   main.js setzt --start/--end erst nach einem erzwungenen Reflow; ab dann greift
   die :not()-Bedingung nicht mehr und der Slide fährt per transition auf 0. */
.rdh-carousel__slide--next:not(.rdh-carousel__slide--start),
.rdh-carousel__slide.active.rdh-carousel__slide--end {
    transform: translateX(100%);
}

.rdh-carousel__slide--prev:not(.rdh-carousel__slide--end),
.rdh-carousel__slide.active.rdh-carousel__slide--start {
    transform: translateX(-100%);
}

/* Bewusst KEIN `@media (prefers-reduced-motion: reduce){transition:none}`:
   Marc hat den Slide-Effekt ausdrücklich auf allen drei Karussells sichtbar
   gewollt (2026-07-28). Mit der Media-Query blieb er auf Systemen mit
   abgeschalteten Animationseffekten unsichtbar — genau der Fall, der die
   Fehlermeldung ausgelöst hat. Wieder aktivierbar, indem dieser Block durch
   die Regel oben ersetzt wird; main.js merkt das von selbst, weil es die
   berechnete transition-duration ausliest und bei 0 hart umschaltet. */


/* ===========================================================================
   Unser Geschäft (Views/Content/Store.cshtml)

   Die Seite trägt Galerie, Firmengeschichte und Anfahrt gemeinsam — die eigene
   Anfahrtsseite ist entfallen. Der Platz dafür entsteht in der Galerie: 40 Fotos
   untereinander wären mehrere tausend Pixel, Bühne plus Miniaturstreifen sind
   rund 700. Die Bühne bekommt eine feste HÖHE (nicht Breite), weil 34 der 40
   Fotos hochkant sind: über die Höhe nutzen Hoch- und Querformat gleich viel
   Fläche, über die Breite stünde jedes Hochformat als schmaler Streifen da.
   =========================================================================== */

.rdh-store {
    --rdh-store-line: #ddd;
    --rdh-store-muted: #737373;
    --rdh-store-ink: #333;
    --rdh-store-accent: #fe980f;
    --rdh-store-dark: #2b2b2b;
    display: flex;
    flex-direction: column;
    gap: 52px;
    padding-bottom: 48px;
}

/* Der Abstand sitzt am Kopf, nicht am Behälter: der trägt `id="content"`, und
   `#content { padding-top: 10px }` weiter oben in dieser Datei schlägt als
   ID-Selektor jede Klassenregel hier. 10 px + 20 px = 30 px über der Überschrift. */
.rdh-store__head {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.rdh-store__title {
    margin: 0;
    font-size: 36px;
    font-weight: 500;
    line-height: 1.1;
    color: var(--rdh-store-ink);
}

.rdh-store__tagline {
    margin: 0;
    max-width: 660px;
    font-size: 18px;
    line-height: 1.5;
    color: var(--rdh-store-muted);
    text-wrap: pretty;
}

.rdh-store__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
    font-size: 13px;
    color: var(--rdh-store-muted);
}

.rdh-store__dot {
    width: 4px;
    height: 4px;
    border-radius: 999px;
    background: var(--rdh-store-line);
}

.rdh-store__section {
    display: flex;
    flex-direction: column;
    gap: 24px;
    /* Anker für den Menüpunkt "Anfahrt": sonst verschwindet die Überschrift
       unter der Kopfzeile, wenn der Sprung aus dem Menü kommt. */
    scroll-margin-top: 20px;
}

.rdh-store__h2 {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    margin: 0;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--rdh-store-line);
    font-size: 24px;
    font-weight: 500;
    line-height: 1.1;
    color: var(--rdh-store-ink);
}

.rdh-store__h2-note {
    font-size: 13px;
    font-weight: 400;
    color: var(--rdh-store-muted);
}

/* --- Galerie -------------------------------------------------------------- */

.rdh-gallery {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rdh-gallery__stage {
    position: relative;
    height: clamp(320px, 58vh, 560px);
    background: #232323;
    border-radius: 6px;
    overflow: hidden;
}

.rdh-gallery__photo {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    cursor: zoom-in;
}

.rdh-gallery__nav {
    position: absolute;
    top: 50%;
    margin-top: -22px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(0, 0, 0, .45);
    color: #fff;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    transition: background .15s ease;
}

.rdh-gallery__nav:hover,
.rdh-gallery__nav:focus-visible {
    background: rgba(0, 0, 0, .7);
    color: #fff;
}

.rdh-gallery__nav--prev { left: 12px; }
.rdh-gallery__nav--next { right: 12px; }

.rdh-gallery__zoom {
    position: absolute;
    left: 14px;
    bottom: 14px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 12px;
    border: 0;
    border-radius: 6px;
    background: rgba(0, 0, 0, .55);
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: background .15s ease;
}

.rdh-gallery__zoom:hover,
.rdh-gallery__zoom:focus-visible {
    background: rgba(0, 0, 0, .78);
    color: #fff;
}

.rdh-gallery__count {
    position: absolute;
    right: 14px;
    bottom: 14px;
    margin: 0;
    padding: 5px 11px;
    border-radius: 999px;
    background: rgba(0, 0, 0, .55);
    color: #fff;
    font-size: 12px;
    letter-spacing: .03em;
}

.rdh-gallery__striprow {
    display: flex;
    align-items: stretch;
    gap: 10px;
}

.rdh-gallery__page {
    flex: 0 0 34px;
    padding: 0;
    border: 1px solid var(--rdh-store-line);
    border-radius: 6px;
    background: #fff;
    color: var(--rdh-store-muted);
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    transition: border-color .15s ease, color .15s ease;
}

.rdh-gallery__page:hover,
.rdh-gallery__page:focus-visible {
    border-color: var(--rdh-store-accent);
    color: var(--rdh-store-ink);
}

/* Der Streifen blättert über echtes Scrollen, nicht über gerechnete Seiten:
   damit wischt das Handy von selbst und die Pfeile müssen nur um eine
   Streifenbreite weiterschieben. */
.rdh-gallery__strip {
    flex: 1 1 auto;
    display: flex;
    gap: 8px;
    margin: 0;
    padding: 0 0 6px;
    list-style: none;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
    overscroll-behavior-x: contain;
}

.rdh-gallery__item {
    flex: 0 0 auto;
    scroll-snap-align: start;
}

.rdh-gallery__thumb {
    display: block;
    border-radius: 3px;
    overflow: hidden;
    outline: 0;
    box-shadow: inset 0 0 0 1px var(--rdh-store-line);
}

.rdh-gallery__thumb img {
    display: block;
    width: 88px;
    height: 88px;
    object-fit: cover;
    opacity: .78;
    transition: opacity .15s ease;
}

.rdh-gallery__thumb:hover img,
.rdh-gallery__thumb:focus-visible img,
.rdh-gallery__thumb--active img {
    opacity: 1;
}

.rdh-gallery__thumb--active {
    box-shadow: inset 0 0 0 3px var(--rdh-store-accent);
}

.rdh-gallery__thumb:focus-visible {
    box-shadow: inset 0 0 0 3px var(--rdh-store-ink);
}

.rdh-gallery__hint {
    margin: 0;
    font-size: 12px;
    color: var(--rdh-store-muted);
}

/* --- Unsere Geschichte ---------------------------------------------------- */

.rdh-story {
    display: flex;
    align-items: flex-start;
    gap: 32px;
}

.rdh-story + .rdh-story {
    margin-top: 6px;
}

.rdh-story__year {
    flex: 0 0 104px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 4px;
}

.rdh-story__number {
    font-family: Abel, Roboto, sans-serif;
    font-size: 34px;
    line-height: 1;
    color: var(--rdh-store-accent);
}

.rdh-story__label {
    font-size: 11px;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: var(--rdh-store-muted);
}

.rdh-story__text {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 640px;
}

.rdh-story__text p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: var(--rdh-store-ink);
    text-wrap: pretty;
}

/* --- 25 Jahre ------------------------------------------------------------- */

.rdh-jubilee {
    display: flex;
    align-items: flex-start;
    gap: 34px;
    padding: 34px 40px;
    border-radius: 8px;
    background: var(--rdh-store-dark, #2b2b2b);
}

.rdh-jubilee__mark {
    flex: 0 0 128px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.rdh-jubilee__number {
    font-family: Abel, Roboto, sans-serif;
    font-size: 82px;
    line-height: .88;
    color: #fe980f;
}

.rdh-jubilee__unit {
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .6);
}

.rdh-jubilee__text {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.rdh-jubilee__title {
    margin: 0;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.25;
    color: #fff;
}

.rdh-jubilee__text p {
    margin: 0;
    max-width: 620px;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .82);
    text-wrap: pretty;
}

.rdh-jubilee__text p.rdh-jubilee__punch {
    color: #fff;
    font-weight: 500;
}

/* --- Anfahrt -------------------------------------------------------------- */

.rdh-routes,
.rdh-maps {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
}

.rdh-routes__col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rdh-routes__title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.3;
    color: var(--rdh-store-ink);
}

.rdh-routes__title .fa {
    color: var(--rdh-store-accent);
}

.rdh-routes__steps {
    margin: 0;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.rdh-routes__steps li {
    font-size: 14px;
    line-height: 1.6;
    color: var(--rdh-store-ink);
}

.rdh-maps__item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0;
}

/* contain, nicht cover: die beiden Skizzen haben verschiedene Seitenverhältnisse
   (4:3 und 1,13:1), und eine beschnittene Anfahrtsskizze ist wertlos — es fehlt
   genau die Abzweigung am Rand. Die feste Höhe hält die beiden Kästen auf einer
   Linie, der helle Grund füllt den Rest. */
.rdh-maps__item img {
    display: block;
    width: 100%;
    height: 300px;
    object-fit: contain;
    background: #fff;
    border: 1px solid var(--rdh-store-line);
    border-radius: 6px;
    cursor: zoom-in;
}

.rdh-maps__item figcaption {
    font-size: 12px;
    color: var(--rdh-store-muted);
}

.rdh-visit {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
    padding: 24px 26px;
    border: 1px solid var(--rdh-store-line);
    border-radius: 8px;
    background: #f5f5f5;
}

.rdh-visit__col {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.rdh-visit__icon {
    flex: 0 0 auto;
    margin-top: 3px;
    font-size: 18px;
    color: var(--rdh-store-accent);
}

.rdh-visit__label {
    margin: 0 0 6px;
    font-size: 15px;
    font-weight: 500;
    color: var(--rdh-store-ink);
}

.rdh-visit p,
.rdh-visit .rdh-address {
    margin: 0;
    font-size: 14px;
    font-style: normal;
    line-height: 1.6;
    color: var(--rdh-store-ink);
}

/* --- schmale Fenster ------------------------------------------------------ */

@media (max-width: 767px) {
    .rdh-store {
        gap: 40px;
    }

    .rdh-store__title { font-size: 28px; }
    .rdh-store__tagline { font-size: 16px; }

    .rdh-store__h2 { font-size: 20px; }

    /* Auf dem Handy wird gewischt — die Seitenpfeile wären nur zwei Daumenfallen. */
    .rdh-gallery__page { display: none; }

    .rdh-story {
        flex-direction: column;
        gap: 12px;
    }

    .rdh-story__year {
        flex: 0 0 auto;
        flex-direction: row;
        align-items: baseline;
        gap: 10px;
        padding-top: 0;
    }

    .rdh-story__number { font-size: 30px; }

    .rdh-jubilee {
        flex-direction: column;
        gap: 14px;
        padding: 28px 22px;
    }

    .rdh-jubilee__mark {
        flex: 0 0 auto;
        flex-direction: row;
        align-items: baseline;
        gap: 10px;
    }

    .rdh-jubilee__number { font-size: 62px; }
    .rdh-jubilee__title { font-size: 20px; }

    .rdh-routes,
    .rdh-maps,
    .rdh-visit {
        grid-template-columns: minmax(0, 1fr);
        gap: 20px;
    }

    .rdh-maps__item img { height: 240px; }

    .rdh-visit { padding: 20px; }
}
