/* Allgemeine Styles */
:root {
    --primary-color: #4a6fdc;
    --primary-dark: #3a5cb8;
    --secondary-color: #ff9b44;
    --secondary-dark: #e68a3c;
    --text-color: #333333;
    --text-light: #666666;
    --background-color: #ffffff;
    --background-light: #f5f7fa;
    --border-color: #e1e5ee;
    --success-color: #4caf50;
    --error-color: #f44336;
    --warning-color: #ff9800;
    --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--background-light);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

input, textarea, select, button {
    font-family: inherit;
    font-size: inherit;
}

button, .btn {
    cursor: pointer;
    border: none;
    outline: none;
    transition: var(--transition);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
}

.primary-btn {
    background-color: var(--primary-color);
    color: white;
}

.primary-btn:hover {
    background-color: var(--primary-dark);
    color: white;
}

.secondary-btn {
    background-color: var(--secondary-color);
    color: white;
}

.secondary-btn:hover {
    background-color: var(--secondary-dark);
    color: white;
}

.outline-btn {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.outline-btn:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Header */
header {
    background-color: var(--background-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo img {
    height: 50px;
    width: auto;
}

nav ul {
    display: flex;
    align-items: center;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: var(--text-color);
    font-weight: 500;
    position: relative;
}

nav ul li a:hover, nav ul li a.active {
    color: var(--primary-color);
}

nav ul li a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

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

#cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

/* Hero Section */
.hero {
    background: linear-gradient(to right, #4a6fdc, #6a8ce6);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: var(--background-color);
}

.features h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.2rem;
}

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

.feature-item {
    text-align: center;
    padding: 30px;
    border-radius: 8px;
    background-color: white;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-item h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 50px 0;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* About Products Section */
.about-products {
    padding: 80px 0;
    background-color: var(--background-light);
}

.about-products h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.2rem;
}

.about-products p {
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

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

.product-feature {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

.product-feature h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.cta-block {
    text-align: center;
    margin-top: 50px;
    background-color: var(--primary-color);
    padding: 40px;
    border-radius: 8px;
    color: white;
}

.cta-block h3 {
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.cta-block .btn {
    background-color: white;
    color: var(--primary-color);
}

.cta-block .btn:hover {
    background-color: var(--secondary-color);
    color: white;
}

/* Products Section */
.products {
    padding: 80px 0;
    background-color: var(--background-color);
}

.products h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.2rem;
}

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

.product-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.price {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.description {
    margin-bottom: 20px;
    color: var(--text-light);
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: var(--background-light);
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.2rem;
}

.testimonials-slider {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.testimonial {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    max-width: 350px;
}

.testimonial-content {
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.testimonial-author p {
    color: var(--text-light);
}

/* Newsletter Section */
.newsletter {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
}

.newsletter h2 {
    margin-bottom: 20px;
    font-size: 2.2rem;
}

.newsletter p {
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 4px 0 0 4px;
    outline: none;
}

.newsletter-form button {
    border-radius: 0 4px 4px 0;
}

/* Footer */
footer {
    background-color: #2a2a2a;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-logo img {
    height: 50px;
    width: auto;
    margin-bottom: 15px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}

.footer-column h3 {
    margin-bottom: 20px;
    font-size: 1.2rem;
    color: var(--secondary-color);
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: white;
    opacity: 0.8;
}

.footer-column ul li a:hover {
    opacity: 1;
    color: var(--secondary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: white;
    opacity: 0.7;
}

.social-icons a:hover {
    opacity: 1;
    color: var(--secondary-color);
}

.footer-bottom p {
    opacity: 0.7;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    display: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content p {
    margin-bottom: 15px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.cookie-content a {
    font-size: 0.9rem;
}

/* Product Detail Page */
.product-detail {
    padding: 80px 0;
    background-color: var(--background-light);
}

.breadcrumb {
    margin-bottom: 30px;
    color: var(--text-light);
}

.breadcrumb a {
    color: var(--text-light);
}

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

.product-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.product-detail-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

.product-detail-info h1 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.product-price {
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 15px;
}

.product-rating {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.stars {
    color: var(--secondary-color);
    display: flex;
    margin-right: 10px;
}

.product-description {
    margin-bottom: 25px;
    line-height: 1.8;
}

.product-meta {
    margin-bottom: 25px;
    color: var(--text-light);
}

.product-meta p {
    margin-bottom: 5px;
}

.product-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.quantity {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    overflow: hidden;
}

.quantity-btn {
    background-color: var(--background-light);
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
}

.quantity input {
    width: 50px;
    text-align: center;
    border: none;
    border-left: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
    height: 40px;
}

.product-tabs {
    margin-bottom: 60px;
}

.tabs-header {
    display: flex;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.tab-btn {
    padding: 15px 25px;
    background: none;
    border: none;
    font-weight: 600;
    cursor: pointer;
    opacity: 0.7;
    position: relative;
}

.tab-btn.active {
    opacity: 1;
    color: var(--primary-color);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.tab-panel h3 {
    margin-bottom: 20px;
    font-size: 1.6rem;
}

.tab-panel p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.tab-panel ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.tab-panel ul li {
    margin-bottom: 10px;
    list-style-type: disc;
}

.details-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.details-table th, .details-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.details-table th {
    width: 30%;
    font-weight: 600;
    color: var(--primary-color);
}

.review-summary {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.review-average {
    text-align: center;
}

.big-rating {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.review-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.review-item {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.review-author {
    font-weight: 600;
    color: var(--primary-color);
}

.review-date {
    color: var(--text-light);
}

.related-products {
    margin-top: 60px;
}

.related-products h3 {
    margin-bottom: 30px;
    text-align: center;
    font-size: 1.8rem;
}

.related-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.related-product {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    text-align: center;
    padding: 20px;
}

.related-product img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    margin-bottom: 15px;
    border-radius: 4px;
}

.related-product h4 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.related-product .price {
    margin-bottom: 15px;
}

/* About Page */
.page-header {
    background: linear-gradient(to right, #4a6fdc, #6a8ce6);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.about-intro {
    padding: 80px 0;
    background-color: var(--background-color);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.about-text h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.philosophy-list {
    margin-left: 20px;
    margin-bottom: 20px;
}

.philosophy-list li {
    margin-bottom: 15px;
    list-style-type: disc;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-card {
    background-color: var(--primary-color);
    color: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--box-shadow);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.team-section {
    padding: 80px 0;
    background-color: var(--background-light);
}

.team-section h2 {
    text-align: center;
    margin-bottom: 10px;
    font-size: 2.2rem;
}

.section-intro {
    text-align: center;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.team-member {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

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

.team-member img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-member h3 {
    margin: 20px 0 5px;
    color: var(--primary-color);
}

.team-member p {
    padding: 0 20px;
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

.social-links a {
    background-color: var(--background-light);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: white;
}

.values-section {
    padding: 80px 0;
    background-color: var(--background-color);
}

.values-section h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.2rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.value-card h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.cta-section {
    padding: 80px 0;
    background: linear-gradient(to right, #4a6fdc, #6a8ce6);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.cta-section p {
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.cta-buttons .btn {
    min-width: 180px;
}

.cta-buttons .secondary-btn {
    background-color: transparent;
    border: 2px solid white;
}

.cta-buttons .secondary-btn:hover {
    background-color: white;
    color: var(--primary-color);
}

/* Contact Page */
.contact-section {
    padding: 80px 0;
    background-color: var(--background-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.contact-info p {
    margin-bottom: 30px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-icon {
    color: var(--primary-color);
    background-color: rgba(74, 111, 220, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-text h3 {
    margin-bottom: 5px;
    color: var(--primary-color);
}

.contact-note {
    font-size: 0.9rem;
    color: var(--text-light);
}

.contact-social h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.contact-form-container h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 5px;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background-color: var(--background-light);
    transition: var(--transition);
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(74, 111, 220, 0.2);
    outline: none;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input {
    width: auto;
    margin-top: 3px;
}

.map-section {
    padding: 50px 0 80px;
    background-color: var(--background-light);
}

.map-section h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.map-container {
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background-color: #eef2f7;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-content {
    text-align: center;
    color: var(--primary-color);
}

.map-content svg {
    margin-bottom: 15px;
}

.faq-section {
    padding: 80px 0;
    background-color: var(--background-color);
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 1.8rem;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    background-color: var(--background-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 1.2rem;
    margin: 0;
}

.faq-toggle {
    color: var(--primary-color);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 500px;
}

/* Cart Page */
.cart-section {
    padding: 80px 0;
    background-color: var(--background-color);
}

.cart-empty {
    text-align: center;
    padding: 60px;
    background-color: white;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

.cart-empty svg {
    color: var(--text-light);
    margin-bottom: 20px;
}

.cart-empty h2 {
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.cart-empty p {
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cart-items-container {
    background-color: white;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    padding: 30px;
}

.cart-header {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 1fr 50px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
    font-weight: 600;
}

.cart-item {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 1fr 50px;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.cart-product {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cart-product img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
}

.cart-product-info h3 {
    margin-bottom: 5px;
}

.cart-price, .cart-total {
    font-weight: 600;
}

.cart-quantity {
    display: flex;
    align-items: center;
    max-width: 120px;
}

.cart-remove button {
    background: none;
    border: none;
    color: var(--error-color);
    cursor: pointer;
}

.cart-summary {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
}

.cart-totals {
    flex: 1;
    min-width: 300px;
}

.cart-subtotal, .cart-shipping, .cart-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.cart-total {
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
    font-size: 1.2rem;
    color: var(--primary-color);
}

.cart-actions {
    display: flex;
    gap: 15px;
}

.recommendations {
    padding: 80px 0;
    background-color: var(--background-light);
}

.recommendations h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 1.8rem;
}

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

/* Checkout Page */
.checkout-section {
    padding: 80px 0;
    background-color: var(--background-color);
}

.checkout-progress {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--background-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text-light);
}

.progress-step.active .step-number {
    background-color: var(--primary-color);
    color: white;
}

.progress-line {
    width: 100px;
    height: 2px;
    background-color: var(--border-color);
    margin: 0 15px;
}

.progress-step.active .step-name {
    color: var(--primary-color);
    font-weight: 600;
}

.checkout-container {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 50px;
}

.checkout-details {
    background-color: white;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    padding: 30px;
}

.checkout-form h2 {
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.form-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.order-summary {
    background-color: white;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    padding: 30px;
    position: sticky;
    top: 100px;
}

.summary-header h2 {
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.summary-item {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.summary-item-image {
    width: 60px;
    height: 60px;
    border-radius: 4px;
    overflow: hidden;
}

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

.summary-item-info {
    flex: 1;
}

.summary-item-name {
    font-weight: 600;
    margin-bottom: 5px;
}

.summary-item-price {
    display: flex;
    justify-content: space-between;
}

.summary-totals {
    margin-top: 20px;
}

.summary-subtotal, .summary-shipping, .summary-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.summary-total {
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--primary-color);
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.summary-security {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background-color: var(--background-light);
    border-radius: 4px;
}

.security-icon {
    color: var(--primary-color);
}

.summary-security p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Success Page */
.success-section {
    padding: 80px 0;
    background-color: var(--background-color);
}

.success-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background-color: white;
    padding: 50px;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

.success-icon {
    color: var(--success-color);
    margin-bottom: 30px;
}

.success-content h1 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--success-color);
}

.success-message {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.success-details {
    margin-bottom: 30px;
    line-height: 1.8;
}

.success-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .about-content, .contact-grid, .checkout-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .product-detail-content {
        grid-template-columns: 1fr;
    }
    
    .order-summary {
        position: static;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    header .container {
        flex-direction: column;
        gap: 15px;
    }
    
    nav ul {
        justify-content: center;
    }
    
    nav ul li {
        margin: 0 10px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .features-grid, .products-grid, .values-grid, .team-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .footer-bottom p {
        text-align: center;
    }
    
    .cart-header, .cart-item {
        grid-template-columns: 2fr 1fr 1fr;
    }
    
    .cart-header-item:nth-child(4), .cart-header-item:nth-child(5),
    .cart-item > div:nth-child(4), .cart-item > div:nth-child(5) {
        display: none;
    }
    
    .cart-product {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 10px;
    }
    
    .newsletter-form input, .newsletter-form button {
        border-radius: 4px;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .cart-header, .cart-item {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .cart-header-item:not(:first-child) {
        display: none;
    }
    
    .cart-product {
        margin-bottom: 10px;
    }
    
    .cart-price, .cart-quantity, .cart-total, .cart-remove {
        display: flex;
        justify-content: space-between;
        padding: 5px 0;
    }
    
    .cart-price::before {
        content: 'Preis:';
    }
    
    .cart-quantity::before {
        content: 'Menge:';
    }
    
    .cart-total::before {
        content: 'Gesamt:';
    }
    
    .form-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .form-group.full-width {
        grid-column: auto;
    }
    
    .success-actions {
        flex-direction: column;
        gap: 10px;
    }
}

/* Typewriter effect */
.typewriter {
    display: inline-block;
    overflow: hidden;
    border-right: 2px solid;
    white-space: nowrap;
    animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: white }
}
