:root {
    --wine-red: #a5163d;
    --wine-red-dark: #7f0f2f;
    --wine-dark: #2c2c2c;
    --wine-light-bg: #f9f5f0;
}


/* PROGRESSBAR */
ul.progressbar {
    display: flex;
    justify-content: space-between;
    padding: 0;
    margin-bottom: 30px;
    list-style: none;
}

ul.progressbar li {
    width: 30%;
    position: relative;
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 2px solid #e0d4cf; /* leicht warmes Grau */
    color: var(--wine-dark);
}

ul.progressbar li.active {
    font-weight: bold;
    color: var(--wine-red);
    border-bottom: 2px solid var(--wine-red);
}

ul.progressbar li::before {
    content: '';
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #e0d4cf;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
}

ul.progressbar li.active::before {
    background-color: var(--wine-red);
}

/* FOOTER-LINKS */
.footer-link {
    color: #ffffff !important;
    text-decoration: none;
}

.footer-link:hover {
    color: var(--wine-red);
    text-decoration: none;
}

/* PRODUKTBILDER IN KARTEN */
.card-img-top {
    width: 55% !important;
    margin-left: auto;
    margin-right: auto;
    display: block;
    border-top-left-radius: calc(.25rem - 1px);
    border-top-right-radius: calc(.25rem - 1px);
}

/* Dashboard */
.avatar-circle {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.1rem;
    background: var(--wine-red);
    color: #fff;
}

.tile {
    text-decoration: none;
    background: #fff;
}

.tile .tile-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--wine-light-bg);
    margin-bottom: .5rem;
    font-size: 1.25rem;
    color: var(--wine-red);
}

.lift {
    transition: transform .15s ease, box-shadow .15s ease;
}

.lift:hover {
    transform: translateY(-2px);
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.08);
}

/* Account – kleinere Avatare, gleiche Farben */
.avatar-circle {
    width: 46px;
    height: 46px;
    font-size: 1rem;
}

.small-info dt {
    color: #6c757d;
    font-weight: 500;
}

.small-info dd {
    margin-bottom: .75rem;
}

.address-box {
    background: var(--wine-light-bg);
}

/* Bestellungen */
.orders .order-dot {
    width: 34px;
    height: 34px;
    font-size: 1rem;
    color: var(--wine-red);
    border-radius: 50%;
    border: 2px solid var(--wine-red);
    display: flex;
    align-items: center;
    justify-content: center;
}

.orders .order-link {
    font-weight: 600;
    text-decoration: none;
    color: inherit;
}

.orders .order-link:hover {
    text-decoration: underline;
}

.order-details .table td,
.order-details .table th {
    vertical-align: middle;
}


.btn-primary {
  color: #fff;
  background-color: #C19D60;
  border-color: #C19D60;
}

.btn-primary:hover {
  color: #fff;
  background-color: #343534;
  border-color: #343534;
}

.bg-dark {
  background-color: #1b1b1b !important;
  border-top: solid 5px #C19D60;
}