/* =========== GLOBAL STYLES =========== */
body {
    font-family: 'Lato', 'Arial', sans-serif;
    background-color: #faf8f5;
    color: #1b1b1b;
    margin: 0;
    padding: 0;
}

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

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

.navbar-nav .btn:hover {
  color: #fff;
  background-color: #a98344;
  border-color: #a98344;
}

/* =========== NAVIGATION =========== */
.navbar {
    background-color: #1b1b1b;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.4);
}

.navbar-brand {
    font-size: 22px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.navbar-brand:hover {
    color: #C19D60;
}

.navbar-nav .nav-link {
    color: #fff;
    font-size: 16px;
    margin-right: 20px;
    transition: color 0.3s;
}

.navbar-nav .nav-link:hover {
    color: #C19D60;
}

.navbar-nav .btn {
    background-color: #C19D60;
    color: #1b1b1b;
    border-radius: 25px;
    font-weight: 600;
    padding: 8px 20px;
    transition: background 0.3s, color 0.3s;
}

.navbar-nav .btn:hover {
    background-color: #fff;
    color: #1b1b1b;
}

/* =========== HERO SECTION =========== */
.hero {
    background: url('hero-bg.jpg') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 100px 20px;
    background-color: #1b1b1b;
    position: relative;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #C19D60;
}

.hero-content p {
    font-size: 1.3rem;
    color: #f5f5f5;
}

/* =========== PRODUKTÜBERSICHT =========== */
.product-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s;
    text-align: center;
    margin-bottom: 30px;
}

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-bottom: 3px solid #C19D60;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 15px rgba(0,0,0,0.2);
}

.product-info {
    padding: 20px;
}

.product-info h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1b1b1b;
}

.product-info p {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.product-price span {
    font-size: 18px;
    font-weight: bold;
    color: #C19D60;
}

.no-products {
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: #777;
    margin-top: 30px;
}

/* =========== WARENKORB STYLES =========== */
.cart-summary {
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.cart-summary h4 {
    font-size: 22px;
    font-weight: bold;
    color: #1b1b1b;
}

.cart-summary .price {
    font-size: 20px;
    font-weight: bold;
    color: #C19D60;
}

/* =========== FOOTER =========== */
.footer {
    background-color: #1b1b1b;
    color: #ddd;
    padding: 40px 0;
    text-align: center;
}

.footer h5 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #C19D60;
}

.footer a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer a:hover {
    color: #C19D60;
}

.footer .payment-icons img {
    width: 45px;
    margin: 10px;
    filter: grayscale(100%) brightness(200%);
}

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

ul.progressbar li {
    width: 30%;
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 2px solid #ccc;
    color: #999;
    font-weight: 500;
    position: relative;
}

ul.progressbar li.active {
    font-weight: bold;
    color: #C19D60;
    border-bottom: 2px solid #C19D60;
}

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

ul.progressbar li.active::before {
    background-color: #C19D60;
}

.navbar-light .navbar-nav .nav-link {
  color: #FFFFFF !important;
}

/* =========== RESPONSIVE DESIGN =========== */
@media (max-width: 768px) {
    .navbar-nav {
        text-align: center;
    }

    .footer .payment-icons img {
        width: 35px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }
}
