:root {
    --accent-color: #ffd500;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

/* Header Styles */
.header-main {
    background-color: #f8f8f8;
    position: relative;
    z-index: 1000;
}

.header-top-bar {
    background-color: #f8f8f8;
    padding: 20px 10vw;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    color: #777;
    font-size: 0.9rem;
    font-weight: 200;
}

.header-contact-info {
    display: flex;
    gap: 20px;
    margin-right: 20px;
}

.header-contact-info span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.header-language-selector {
    display: flex;
    align-items: center;
    gap: 5px;
}

.header-current-lang {
    font-weight: bold;
}

.header-main-nav {
    background-color: #f8f8f8;
    padding: 15px 11vw;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    font-size: 1.1rem;
    width: 100%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0);
    transition: box-shadow 0.3s ease;
}

.header-main-nav.fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 15px 11vw;
    background-color: #f8f8f8;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.header-main-nav-placeholder {
    display: none;
}

.header-main-nav-placeholder.active {
    display: block;
    height: 88px; /* Exakte Höhe des Headers */
}

.header-logo img {
    height: 50px;
    width: auto;
    min-height: 50px; /* Verhindert Schrumpfen */
}

.header-main-nav.fixed .header-logo img {
    height: 50px; /* Gleiche Höhe wie nicht-fixed */
    min-height: 50px;
    width: auto;
}

.header-nav-links {
    list-style: none;
    display: flex;
    padding-left: 150px;
    width: 100%;
    justify-content: space-between;
    margin-bottom: 2px;
}

.header-nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    white-space: nowrap;
    overflow: visible;
    text-overflow: clip;
}

.header-nav-links a:hover {
    color: var(--accent-color);
}

.header-nav-links .cart-link {
    display: flex;
    align-items: center;
    gap: 6px;
}

.header-nav-links .cart-link svg {
    margin-top: -2px;
}

.header-contact-link {
    text-decoration: none;
    color: #777;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    font-weight: 200;
}

.header-contact-link:hover {
    color: #555;
}

.header-contact-link svg {
    flex-shrink: 0;
}

.header-nav-links a.active {
    text-decoration: underline;
}

/* Home Styles */
.home-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.home-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
}

.home-intro {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

/* Home Hero Styles */
.home-hero {
    position: relative;
    height: 70vh;
    overflow: hidden;
}

.home-slideshow {
    position: relative;
    width: 100%;
    height: 100%;
}

.home-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.home-slide.active {
    opacity: 1;
}

.home-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-slide-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-slide-content .home-slide-text {
    background: rgba(51, 51, 51, 0.8);
    color: #eee !important;
    padding: 2rem;
    font-size: 2.5rem;
    font-weight: bold;
    position: relative;
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.home-slide-content .home-slide-text h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #eee !important;
}

.home-slide-content .home-slide-text p {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #eee !important;
}

.home-slide-content .home-slide-text img {
    max-width: 80%;
    height: auto;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

/* Entferne die alten Textelemente */
/* Diese Zeilen verhindern, dass der Text angezeigt wird */
/* .home-slide-content h2,
.home-slide-content p,
.home-slide-content .home-slide-tag,
.home-slide-content .home-slide-subtitle {
    display: none;
} */

.home-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.home-slide-prev,
.home-slide-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    color: white;
    padding: 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 2.5rem;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.home-slide-prev:hover,
.home-slide-next:hover {
    transform: translateY(-50%) scale(1.2);
}

.home-slide-prev {
    left: 0;
    width: 10%;
    height: 100%;
}

.home-slide-next {
    right: 0;
    width: 10%;
    height: 100%;
}

.home-slide-prev:hover,
.home-slide-next:hover {
    opacity: 1;
}

/* Entferne die Punktnavigation */
.home-slide-dots {
    display: none;
}

/* Produkte Styles */
.products-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 20px;
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.products-container h1 {
    font-size: 2rem;
    color: #111;
    margin: 0;
    position: relative;
    padding-left: 1.5rem;
}

.products-container h1:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0.5rem;
    height: 2rem;
    background-color: var(--accent-color);
}

.products-filters {
    display: flex;
    gap: 1rem;
}

.products-filters select {
    padding: 0.8rem 2rem 0.8rem 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    min-width: 200px;
    cursor: pointer;
    background-color: white;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.5rem center;
    background-size: 1.2em;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    font-size: 0.95rem;
    color: #333;
    transition: all 0.3s ease;
}

.products-filters select:hover {
    border-color: var(--accent-color);
}

.products-filters select:focus {
    outline: none;
    border-color: var(--accent-color);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    padding: 20px 0;
}

.product-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}

.product-card-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-image {
    position: relative;
    padding-top: 75%;
    overflow: hidden;
    background: #f8f8f8;
    border-radius: 12px 12px 0 0;
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 0;
    transition: transform 0.3s ease;
}

.product-card-link:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 1.5rem 1.5rem 0.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-title-wrapper {
    margin-bottom: 1rem;
}

.product-title {
    font-size: 1.3rem;
    color: #333;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
    transition: color 0.3s ease;
}


.product-subtitle {
    font-size: 0.9rem;
    color: #666;
    margin: 0.5rem 0 0 0;
    line-height: 1.4;
}

.product-details {
    margin: 1rem 0 0;
    flex-grow: 1;
}

.product-brand-model {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    margin-bottom: 0.5rem;
}

.product-brand, .product-model {
    color: #666;
    font-size: 0.9rem;
    background: #f5f5f5;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
}

.product-stock-info {
    margin-bottom: 0.5rem;
}

.in-stock {
    margin-top: 1.2rem;
    color: #28a745;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.in-stock::before {
    content: "•";
    color: #28a745;
}

.out-of-stock {
    color: #dc3545;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.out-of-stock::before {
    content: "●";
    color: #dc3545;
}

.product-purchase {
    margin-top: auto;
    border-top: 1px solid #eee;
    padding: 1.5rem;
    background: #fff;
}

.product-price {
    padding-right: 3px;
}

.price-shipping-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    width: 100%;
}

.shipping-cost {
    color: #333;
    font-size: 0.9rem;
    text-align: left;
}

.shipping-cost span {
    font-weight: bold;
}

.product-price {
    font-size: 1.5rem;
    font-weight: bold;
    text-align: right;
    color: #333;
}

.product-cart-actions {
    display: flex;
    width: 100%;
    height: 44px;
    border: none;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.quantity-selector {
    display: flex;
    align-items: center;
    background: #f5f5f5;
    border: none;
    border-radius: 4px 0 0 4px;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.05);
}

.quantity-btn {
    background: #f5f5f5;
    border: none;
    width: 28px; /* Schmaler */
    height: 44px;
    cursor: pointer;
    font-size: 1.2rem;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.quantity-btn:hover {
    background: #e9e9e9;
}


.quantity-input {
    width: 32px; /* Schmaler */
    text-align: center;
    border: none;
    padding: 0;
    height: 44px;
    font-size: 0.9rem;
    -moz-appearance: textfield;
    background: #f5f5f5;
    outline: none; /* Entfernt den blauen Fokus-Outline */
}

.quantity-input::-webkit-outer-spin-button,
.quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.cart-button {
    background: var(--accent-color);
    color: #111;
    border: none;
    padding: 0 1.5rem;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    font-weight: 600;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: background-color 0.3s ease;
    height: 44px;
    margin: 0;
}

.cart-button:hover {
    background: #e6c000;
    transform: none;
}

.cart-button svg {
    width: 16px;
    height: 16px;
}

@media (max-width: 768px) {
    .products-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .products-filters {
        width: 100%;
        flex-direction: column;
    }
    
    .products-filters select {
        width: 100%;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .product-cart-actions {
        flex-direction: row;
    }
    
    .quantity-selector {
        width: auto;
    }
    
    .cart-button {
        width: auto;
    }
}

/* Footer Styles */
.footer-main {
    background-color: #333;
    color: #fff;
    padding: 4rem 10vw 2rem 10vw;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-section {
    flex: 1;
}

.footer-section h4 {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.5rem;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer-section p {
    margin-bottom: 0.5rem;
    color: #ccc;
}

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

.footer-section a:hover {
    color: var(--accent-color);
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section.footer-logo {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.footer-section.footer-logo img {
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    margin-bottom: 1.5rem;
}

.footer-section.footer-logo .footer-slogan {
    color: #ccc;
    font-size: 1.1rem;
    line-height: 1.6;
    font-style: italic;
    margin: 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: #888;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #fff;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-section {
        margin-bottom: 2rem;
    }

    .footer-section.footer-logo {
        align-items: center;
    }

    .footer-section.footer-logo img {
        max-width: 150px;
        margin: 0 0 1rem 0;
    }
}

.home-overlay-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-overlay-content .home-slide-text {
    background: rgba(51, 51, 51, 0.85);
    color: #eee !important;
    padding: 2rem;
    font-size: 2.5rem;
    font-weight: normal;
    position: relative;
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.home-overlay-content .home-slide-text img {
    max-width: 80%;
    height: auto;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

.home-overlay-content .home-slide-text .slogan {
    font-size: 1.8rem;
    margin: 2rem 10px;;
    color: #eee !important;
    font-weight: normal;
    line-height: 1.4;
    transform: skew(-5deg);
    font-style: italic;
}

.home-overlay-content .home-slide-text .contact-info {
    margin-top: 2rem;
}

.home-overlay-content .home-slide-text .contact-info p {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #eee !important;
    font-weight: normal;
}

.home-overlay-content .home-slide-text .contact-info a {
    color: #eee;
    text-decoration: none;
}

.home-overlay-content .home-slide-text p {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #eee !important;
    font-weight: normal;
    line-height: 1.4;
}

.home-special-offers {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4rem 10vw;
    background-color: #f4f4f4;
}

.home-special-offers-image {
    flex: 0 0 30%;
    text-align: center;
}

.home-special-offers-image img {
    width: 100%;
    height: auto;
}

.home-special-offers-caption {
    margin-top: 1rem;
    font-style: italic;
    text-align: center;
    color: #777;
}

.home-special-offers-text {
    flex: 1;
    padding-left: 2rem;
    padding-right: 6rem;
}

.home-special-offers-text h2 {
    color: #111;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.home-special-offers-text h2:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0.5rem;
    height: 2rem;
    background-color: var(--accent-color);
}

.home-special-offers-text h3 {
    color: #111;
    font-size: 1.2rem;
    margin: 0.5rem 0 1.5rem 0;
    font-weight: normal;
}

.home-special-offers-text p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #666;
}

.home-special-offers-list {
    list-style-type: none;
    padding-left: 0;
    margin: 1rem 0 1.5rem 0;
    margin-left: 20px;
    width: auto;
}

.home-special-offers-list li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    color: #666;
}

.home-special-offers-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #666;
}

.home-consulting {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4rem 10vw 4rem calc(10vw + 30px);
    background-color: #fff;
}

.home-consulting-image {
    flex: 0 0 40%;
    text-align: center;
    position: relative;
}

.home-consulting-image:before {
    content: '';
    position: absolute;
    width: 100%;
    height: calc(100% - 10px);
    background-color: var(--accent-color);
    opacity: 0.9;
    top: -10px;
    left: -10px;
    z-index: 0;
}

.home-consulting-image img {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.home-consulting-text {
    flex: 1;
    padding-left: 4rem;
    padding-right: 2rem;
}

.home-consulting-text h2 {
    color: #111;
    font-size: 2rem;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

.home-consulting-text h2:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0.5rem;
    height: 2rem;
    background-color: var(--accent-color);
}

.home-consulting-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    white-space: pre-line;
}

.home-team {
    padding: 4rem 10vw;
    background-color: #f8f8f8;
}

.home-team-title {
    text-align: center;
    color: #111;
    font-size: 2rem;
    margin-bottom: 3rem;
}

.home-team-members {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.team-member {
    flex: 1;
    text-align: center;
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.team-member::before {
    display: none;
}

.team-member-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    overflow: hidden;
    z-index: 0;
}

.team-member-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.team-member-image {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    z-index: 1;
}

.team-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.team-member h3 {
    color: #111;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.team-role {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.team-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.contact-button {
    background-color: #f4f4f4;
    color: #666;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-button:hover {
    background-color: var(--accent-color);
    color: #fff;
}

/* Item Styles */
.item-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 20px;
}

.item-breadcrumb {
    margin-bottom: 2rem;
    color: #666;
    font-size: 0.9rem;
}

.item-breadcrumb a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.item-breadcrumb a:hover {
    color: var(--accent-color);
}

.item-breadcrumb-separator {
    margin: 0 0.5rem;
    color: #999;
}

.item-breadcrumb-current {
    color: #333;
    font-weight: 500;
}

.item-content {
    display: grid;
    grid-template-columns: minmax(300px, 600px) 1fr;
    gap: 2rem;
    align-items: start;
    padding: 0 2rem 2rem 0;
}

.item-gallery {
    width: 100%;
    max-width: 600px;
    position: relative;
    padding-top: 75%; /* 4:3 Verhältnis */
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.item-main-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.item-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.item-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.item-header {
    margin-bottom: 1rem;
}

.item-title {
    font-size: 2rem;
    color: #333;
    margin: 0;
    line-height: 1.3;
}

.item-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin: 0.5rem 0 0 0;
}

.item-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.item-brand-model {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.item-brand, .item-model {
    color: #666;
    font-size: 0.9rem;
    background: #f5f5f5;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
}

.item-stock {
    margin-left: auto;
    padding-right: 5px;
}

.item-stock-status {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.9rem;
}

.item-stock-status.in-stock {
    color: #28a745;
}

.item-stock-status.in-stock::before {
    content: "•";
    color: #28a745;
}

.item-stock-status.out-of-stock {
    color: #dc3545;
}

.item-stock-status.out-of-stock::before {
    content: "•";
    color: #dc3545;
}

.item-description {
    color: #444;
    line-height: 1.6;
    font-size: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.item-purchase-section {
    background: #f8f8f8;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 0;
}

.item-price-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    width: 100%;
}

.item-shipping {
    color: #333;
    font-size: 0.9rem;
    text-align: left;
}

.item-shipping span {
    font-weight: bold;
}

.item-price {
    font-size: 1.5rem;
    font-weight: bold;
    text-align: right;
    color: #333;
    padding-right: 3px;
}

.item-cart-section {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.item-quantity {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.item-quantity-btn {
    background: white;
    border: none;
    width: 40px;
    height: 44px;
    cursor: pointer;
    font-size: 1.2rem;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.item-quantity-btn:hover {
    background: #f5f5f5;
}

.item-quantity-input {
    width: 50px;
    text-align: center;
    border: none;
    padding: 0;
    height: 44px;
    font-size: 1rem;
    -moz-appearance: textfield;
    background: white;
}

.item-quantity-input::-webkit-outer-spin-button,
.item-quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.item-cart-button {
    background: var(--accent-color);
    color: #111;
    border: none;
    padding: 0 2rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: background-color 0.3s ease;
    height: 44px;
    font-size: 1rem;
}

.item-cart-button:hover {
    background: #e6c000;
}

.item-cart-button svg {
    width: 20px;
    height: 20px;
}

.item-specifications {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.item-specifications-title {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.item-specifications-content {
    color: #444;
    line-height: 1.6;
    white-space: pre-line;
}

.item-error {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 2rem;
    background: #fff3f3;
    color: #dc3545;
    border-radius: 8px;
    text-align: center;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .item-content {
        grid-template-columns: 1fr;
    }
    
    .item-gallery {
        max-width: 100%;
    }

    .item-cart-section {
        flex-direction: column;
    }

    .item-quantity {
        width: 100%;
    }

    .item-cart-button {
        width: 100%;
    }

    .item-price-container {
        flex-direction: column-reverse;
        gap: 1rem;
        align-items: flex-start;
    }

    .item-price {
        font-size: 1.8rem;
    }
}

/* Service Styles - Neue Version */
.service-main {
    background: #fff;
}

.service-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    padding: 80px 11vw;
    color: #fff;
    text-align: center;
}

.service-header-content h1 {
    font-size: 3em;
    margin-bottom: 20px;
    font-weight: 600;
}

.service-header-content p {
    font-size: 1.2em;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

.service-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 100px 11vw 0;
    margin-top: -40px;
}

.highlight-box {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.highlight-box:hover {
    transform: translateY(-5px);
}

.highlight-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.highlight-icon svg {
    color: #111;
}

.highlight-box h3 {
    font-size: 1.4em;
    margin-bottom: 10px;
    color: #333;
}

.highlight-box p {
    color: #666;
    font-size: 0.95em;
}

.service-areas {
    padding: 60px 11vw;
}

.service-area {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

.service-area:last-child {
    border-bottom: none;
}

.service-area.reverse {
    direction: rtl;
}

.service-area.reverse .service-area-content {
    direction: ltr;
}

.service-area-content {
    padding-right: 40px;
}

.service-area-content h2 {
    font-size: 2em;
    margin-bottom: 30px;
    color: #333;
    position: relative;
    padding-left: 20px;
}

.service-area-content h2:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 24px;
    background: var(--accent-color);
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.service-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    color: #555;
    font-size: 1.1em;
}

.service-list li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.service-area-image {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
    height: 100%;
}

.service-area-image img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-area:hover .service-area-image img {
    transform: scale(1.05);
}

.service-area-link {
    display: inline-block;
    padding: 12px 25px;
    background: #f8f8f8;
    color: #333;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.service-area-link:hover {
    background: var(--accent-color);
    color: #111;
    transform: translateY(-2px);
}

.service-contact-banner {
    background: linear-gradient(135deg, #333 0%, #1a1a1a 100%);
    padding: 60px 11vw;
    color: #fff;
    text-align: center;
}

.contact-banner-content h2 {
    font-size: 2.2em;
    margin-bottom: 15px;
}

.contact-banner-content p {
    font-size: 1.1em;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.contact-banner-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.service-contact-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.service-contact-button.service-contact-button-phone {
    background: var(--accent-color);
    color: #111;
}

.service-contact-button.service-contact-button-mail {
    background: #fff;
    color: #111;
}

.service-contact-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.service-contact-button svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 1200px) {
    .service-highlights,
    .service-areas,
    .service-header,
    .service-contact-banner {
        padding-left: 5vw;
        padding-right: 5vw;
    }
}

@media (max-width: 992px) {
    .service-highlights {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-area {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 0;
    }

    .service-area-content {
        padding-right: 0;
    }

    .service-area.reverse {
        direction: ltr;
    }

    .service-area-image img {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .service-header-content h1 {
        font-size: 2.2em;
    }

    .service-highlights {
        grid-template-columns: 1fr;
        margin-top: -20px;
    }

    .service-area-content h2 {
        font-size: 1.8em;
    }

    .service-contact-banner-buttons {
        flex-direction: column;
    }

    .service-contact-button {
        width: 100%;
        justify-content: center;
    }
}

/* Team Styles */
.service-team {
    background: #f8f8f8;
    padding: 80px 11vw;
}

.service-team-content {
    text-align: center;
}

.service-team-content h2 {
    font-size: 2.5em;
    margin-bottom: 15px;
    color: #333;
    position: relative;
    display: inline-block;
}

.service-team-content h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent-color);
}

.service-team-content > p {
    color: #666;
    font-size: 1.2em;
    margin-bottom: 50px;
}

.service-team-members {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.service-team-member {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
}

.service-team-member:hover {
    transform: translateY(-5px);
}

.service-member-image {
    width: 140px;
    height: 140px;
    margin: 30px auto;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
}

.service-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-team-member h3 {
    font-size: 1.5em;
    color: #333;
    margin: 0 0 10px;
    padding: 0 20px;
}

.service-member-role {
    color: #666;
    font-size: 1.1em;
    margin: 0 0 15px;
    padding: 0 20px;
}

.service-member-desc {
    color: #777;
    font-size: 0.95em;
    line-height: 1.6;
    margin: 0 0 25px;
    padding: 0 20px;
}

.service-member-contact {
    padding: 20px;
    background: #f8f8f8;
    display: flex;
    gap: 10px;
    justify-content: center;
}

.service-button {
    background: white;
    color: #333;
    padding: 8px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.service-button:hover {
    background: var(--accent-color);
    color: #111;
    transform: translateY(-2px);
}

@media (max-width: 1200px) {
    .service-team {
        padding: 60px 5vw;
    }
}

@media (max-width: 992px) {
    .service-team-members {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-area {
        min-height: 400px;
    }
    
    .service-area-image {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .service-team-members {
        grid-template-columns: 1fr;
    }
    
    .service-team-member {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .service-area {
        min-height: 300px;
    }
    
    .service-area-image {
        min-height: 300px;
    }
}

/* About Styles - Neue Version */
.about-main {
    background: #fff;
}

.about-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('/img/office.jpg') center/cover;
    padding: 60px 11vw;
    text-align: center;
    color: #fff;
}

.about-hero-text h1 {
    font-size: 3.5em;
    margin-bottom: 15px;
    font-weight: 600;
}

.about-hero-text p {
    font-size: 1.4em;
    color: rgba(255, 255, 255, 0.9);
}

.about-founder {
    padding: 70px 11vw;
    background: #fff;
}

.founder-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    align-items: start;
}

.founder-image {
    position: relative;
}

.founder-main-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
}


.founder-text {
    padding-top: calc(6vh + 30px);
}

.founder-text h2 {
    font-size: 2.8em;
    margin-bottom: 10px;
    color: #333;
}

.founder-role {
    font-size: 1.2em;
    color: var(--accent-color);
    margin-bottom: 30px;
    font-weight: 500;
}

.founder-story p {
    font-size: 1.1em;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-journey {
    padding: 80px 11vw;
    background: #f8f8f8;
}

.journey-content h2 {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 60px;
    color: #333;
}

.journey-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.journey-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--accent-color);
}

.timeline-item {
    position: relative;
    padding: 30px 0;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--accent-color);
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 0 0 2px var(--accent-color);
}

.timeline-content {
    width: 45%;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
}

.timeline-content h3 {
    font-size: 1.3em;
    margin-bottom: 10px;
    color: #333;
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -24px;
    background-color: var(--accent-color);
    color: #000;
    font-size: 10px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    transform: translateY(-2px);
    padding-top: 1px;
}

/* Cart Success Message */
.cart-success-message,
.cart-error-message {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 25px;
    border-radius: 8px;
    font-size: 16px;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: opacity 0.3s ease;
}

.cart-success-message {
    background-color: #4CAF50;
    color: white;
}

.cart-error-message {
    background-color: #f44336;
    color: white;
}

.fade-out {
    opacity: 0;
}

/* Warenkorb Styles */
.cart-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.cart-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #333;
}

.cart-empty {
    text-align: center;
    padding: 3rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.cart-items {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    overflow: hidden;
}

/* Neuer Tabellenkopf */
.cart-header {
    display: grid;
    grid-template-columns: auto 2fr 1fr 2fr auto;
    gap: 2rem;
    padding: 1rem 1.5rem;
    background: #f8f8f8;
    border-bottom: 1px solid #eee;
    font-weight: 500;
    color: #666;
}

.cart-header-product {
    grid-column: 1 / 3;
}

.cart-header-quantity {
    text-align: center;
}

.cart-header-price {
    text-align: right;
}

.cart-item {
    display: grid;
    grid-template-columns: auto 2fr 1fr 2fr auto;
    gap: 2rem;
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
    align-items: center;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-image {
    width: 120px;
    height: 90px; /* 4:3 Verhältnis */
    overflow: hidden;
    border-radius: 4px;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cart-item-title {
    font-size: 1.1rem;
    margin: 0;
}

.cart-item-title a {
    color: #333;
    text-decoration: none;
}

.cart-item-meta {
    display: flex;
    gap: 0.5rem;
}

.cart-item-brand,
.cart-item-model {
    color: #666;
    font-size: 0.9rem;
    background: #f5f5f5;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
}

.cart-item-quantity {
    display: flex;
    justify-content: center;
}

.cart-quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}

.cart-quantity-btn {
    background: #f5f5f5;
    border: none;
    width: 32px;
    height: 32px;
    cursor: pointer;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-quantity-btn:hover {
    background: #eee;
}

.cart-quantity-input {
    width: 40px;
    text-align: center;
    border: none;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    padding: 0;
    height: 32px;
    font-size: 0.9rem;
    -moz-appearance: textfield;
    background: white;
}

.cart-item-price {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    justify-content: flex-end;
}

.cart-price-single,
.cart-price-total,
.cart-shipping-cost {
    color: #333;
    font-size: 1rem;
    white-space: nowrap;
}

.cart-price-total {
    font-weight: 500;
}

.cart-shipping-cost {
    color: #666;
}

.cart-item-remove {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-item-remove:hover {
    color: #666;
}

.cart-summary {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
}

.cart-summary-row:last-child {
    border-bottom: none;
}

.cart-total {
    font-size: 1.2rem;
    font-weight: 500;
}

.cart-summary-shipping-free {
    text-align: right;
    color: #2ecc71;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.cart-actions {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.cart-continue-shopping {
    padding: 0.75rem 1.5rem;
    background: #f5f5f5;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.cart-continue-shopping:hover {
    background: #eee;
}

.cart-checkout-button {
    padding: 0.75rem 2rem;
    background: var(--accent-color);
    color: #111;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
    font-weight: 500;
}

.cart-checkout-button:hover {
    background: #e6c000;
}

@media (max-width: 768px) {
    .cart-header {
        display: none;
    }

    .cart-item {
        grid-template-columns: auto 1fr;
        gap: 1rem;
    }

    .cart-item-image {
        width: 90px;
        height: 67.5px;
    }

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

    .cart-item-quantity {
        grid-column: 1;
        grid-row: 2;
        justify-content: flex-start;
    }

    .cart-item-price {
        grid-column: 2;
        grid-row: 2;
        flex-direction: column;
        align-items: flex-end;
        gap: 0.25rem;
    }

    .cart-item-remove {
        grid-column: 2;
        grid-row: 1;
        justify-self: end;
    }
}

@media (max-width: 480px) {
    .cart-actions {
        flex-direction: column;
    }

    .cart-continue-shopping,
    .cart-checkout-button {
        width: 100%;
        text-align: center;
    }
}

.cart-link {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.cart-link:hover {
    background-color: var(--accent-color-dark);
}

/* Benachrichtigungen */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 25px;
    border-radius: 8px;
    font-size: 0.9rem;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    animation: slideIn 0.3s ease-out forwards, fadeOut 0.3s ease-out 3s forwards;
    max-width: 300px;
    line-height: 1.4;
}

.notification-error {
    background-color: #fff;
    color: #333;
    border-left: 4px solid #dc3545;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

