/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #000;
    --secondary-color: #fff;
    --text-color: #333;
    --border-color: #e0e0e0;
    --hover-color: #f5f5f5;
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-heading: Georgia, 'Times New Roman', Times, serif;
}

body {
    font-family: var(--font-primary);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6,
.section-title,
.featured-products-title,
.products-brand,
.product-name,
.contact-brand,
.contact-title,
.testimonial-content h4,
.press-item h3,
.feature-item h3,
.newsletter h3,
.cart-header h2 {
    font-family: var(--font-heading);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 400;
}

/* Exclude navigation headings from serif font */
.top-nav-menu,
.mobile-nav {
    font-family: var(--font-primary);
}

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

/* Header Styles */
.header {
    position: sticky;
    top: 0;
    background: var(--secondary-color);
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.header-top {
    background: #f5f5f5;
    border-bottom: 1px solid var(--border-color);
}

.top-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    position: relative;
}

.top-nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
    flex: 1;
}

.top-nav-menu-right {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
    margin-right: 15px;
}

.top-nav-menu-right li a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.top-nav-menu-right li a:hover {
    color: var(--primary-color);
}

.header-logo-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
}

.header-logo-center img {
    height: 30px;
    width: auto;
}

.top-nav-right {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: flex-end;
}

.top-nav-menu li a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.top-nav-menu li a:hover {
    color: var(--primary-color);
}

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

.search-container {
    position: relative;
}

.top-nav .search-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: opacity 0.3s;
}

.top-nav .search-btn:hover {
    opacity: 0.7;
}

.search-box {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 10px;
    background: var(--secondary-color);
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 15px;
    min-width: 300px;
    display: none;
    z-index: 1000;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.search-box.active {
    display: flex;
}

.search-input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid var(--border-color);
    font-size: 14px;
    font-family: var(--font-primary);
    color: var(--primary-color);
    outline: none;
    transition: border-color 0.3s;
}

.search-input:focus {
    border-color: var(--primary-color);
}

.search-close {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-color);
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: color 0.3s;
}

.search-close:hover {
    color: var(--primary-color);
}


.logo {
    display: inline-block;
}

.logo a {
    display: inline-block;
    text-decoration: none;
}

.logo img {
    height: 40px;
    width: auto;
    display: block;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 120px;
    left: 0;
    right: 0;
    background: var(--secondary-color);
    z-index: 999;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
}

.mobile-menu.active {
    max-height: 500px;
}

.mobile-nav ul {
    list-style: none;
    padding: 20px;
}

.mobile-nav li {
    margin-bottom: 15px;
}

.mobile-nav a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s;
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: var(--secondary-color);
    z-index: 2000;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    transition: right 0.3s;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
}

.cart-header h2 {
    font-size: 20px;
    font-weight: 600;
}

.close-cart {
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    color: var(--text-color);
    line-height: 1;
    padding: 0;
    width: 32px;
    height: 32px;
}

.cart-content {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
}

.empty-cart {
    text-align: center;
    color: #999;
    margin-top: 40px;
}

.cart-footer {
    padding: 20px;
    border-top: 1px solid var(--border-color);
}

.continue-shopping {
    width: 100%;
    padding: 12px;
    background: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.3s;
}

.continue-shopping:hover {
    background: #333;
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Hero Section */
.hero {
    position: relative;
    height: 80vh;
    min-height: 600px;
    overflow: hidden;
    background: #f8f8f8;
    cursor: pointer;
}

.hero-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    cursor: pointer !important;
}

.hero-link * {
    cursor: pointer !important;
}

.hero-image {
    width: 100%;
    height: 100%;
    cursor: pointer !important;
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    cursor: pointer !important;
    transition: transform 0.5s ease, opacity 0.3s;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.85);
    padding: 16px 32px;
    border-radius: 50px;
    opacity: 0.7;
    transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease;
    pointer-events: none;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.hero-cta {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 0.5px;
}

.hero-arrow {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.hero-link:hover .hero-image img {
    transform: scale(1.02);
    opacity: 0.9;
}

.hero-link:hover .hero-overlay {
    opacity: 1;
    transform: translateX(-50%) translateY(-5px);
}

.hero-link:hover .hero-arrow {
    transform: translateX(5px);
}

/* Categories Section */
.categories {
    padding: 80px 0 0;
    background: var(--secondary-color);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 40px;
    width: 100%;
}

.category-item {
    display: block;
    overflow: hidden;
    border-radius: 0;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.category-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.category-item:hover {
    transform: scale(1.08);
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.category-item:hover .category-image img {
    transform: scale(1.15);
}

/* Featured Products Carousel */
.featured-products {
    padding: 80px 0;
    background: var(--secondary-color);
}

.featured-products-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
}

.featured-products-title {
    font-size: 36px;
    font-weight: 400;
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin: 0;
    letter-spacing: 0;
}

.featured-products-controls {
    display: flex;
    align-items: center;
    gap: 20px;
}

.find-more-btn {
    padding: 10px 24px;
    border: 1px solid var(--primary-color);
    background: var(--secondary-color);
    color: var(--primary-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font-primary);
    transition: background 0.3s, color 0.3s;
    border-radius: 2px;
}

.find-more-btn:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.carousel-nav-buttons {
    display: flex;
    gap: 10px;
}

.carousel-nav-btn {
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    background: var(--secondary-color);
    color: var(--text-color);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    border-radius: 2px;
}

.carousel-nav-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.featured-products-carousel {
    overflow-x: auto;
    overflow-y: hidden;
    position: relative;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #ddd transparent;
}

.featured-products-carousel::-webkit-scrollbar {
    height: 8px;
}

.featured-products-carousel::-webkit-scrollbar-track {
    background: transparent;
}

.featured-products-carousel::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 4px;
}

.featured-products-carousel::-webkit-scrollbar-thumb:hover {
    background: #bbb;
}

.featured-products-slider {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

.featured-product-item {
    min-width: calc(33.333% - 20px);
    flex-shrink: 0;
}

.featured-product-item .product-image {
    height: 400px;
    margin-bottom: 20px;
}

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

.products-header {
    padding: 40px 0;
    border-bottom: 1px solid var(--border-color);
}

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

.filter-btn,
.sort-btn {
    background: none;
    border: none;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
    cursor: pointer;
    padding: 8px 0;
    font-family: var(--font-primary);
    transition: color 0.3s;
}

.filter-btn:hover,
.sort-btn:hover {
    color: var(--primary-color);
}

.products-header-center {
    text-align: center;
}

.products-brand {
    font-size: 24px;
    font-weight: 400;
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 8px;
    letter-spacing: 0;
}

.products-count {
    font-size: 14px;
    color: #666;
    font-family: var(--font-primary);
    margin: 0;
}

.products-grid-container {
    padding: 60px 0;
}

.search-results-message {
    margin-bottom: 30px;
    padding: 20px;
    background: #f5f5f5;
    border-left: 3px solid var(--primary-color);
}

.search-results-message p {
    margin: 0;
    font-size: 16px;
    color: var(--text-color);
    font-family: var(--font-primary);
}

.search-results-message strong {
    color: var(--primary-color);
    font-weight: 500;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 30px;
}

.product-item {
    display: flex;
    flex-direction: column;
}

.product-image {
    width: 100%;
    height: 350px;
    background: #f5f5f5;
    overflow: hidden;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.product-info {
    display: flex;
    flex-direction: column;
}

.product-name {
    font-size: 16px;
    font-weight: 400;
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 6px;
    line-height: 1.4;
}

.product-variant {
    font-size: 14px;
    color: #666;
    font-family: var(--font-primary);
    margin-bottom: 12px;
    text-transform: capitalize;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-price {
    font-size: 16px;
    font-weight: 500;
    color: var(--primary-color);
    font-family: var(--font-primary);
}

.product-add-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    font-size: 20px;
    font-weight: 300;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, transform 0.2s;
    line-height: 1;
    padding: 0;
}

.product-add-btn:hover {
    background: #333;
    transform: scale(1.1);
}

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

.section-title {
    font-size: 36px;
    font-weight: 400;
    font-family: var(--font-heading);
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: 0;
}

.testimonials-carousel {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.testimonials-slider {
    display: flex;
    overflow: hidden;
}

.testimonial-slide {
    min-width: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.5s;
    display: none;
}

.testimonial-slide.active {
    opacity: 1;
    transform: translateX(0);
    display: block;
}

.testimonial-content {
    text-align: center;
    padding: 40px 20px;
}

.testimonial-content h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.testimonial-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.9);
    border: 1px solid var(--border-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10;
}

.carousel-btn.prev {
    left: -25px;
}

.carousel-btn.next {
    right: -25px;
}

.carousel-btn:hover {
    background: var(--secondary-color);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background: var(--primary-color);
}

/* Media Coverage Section */
.media-coverage {
    padding: 80px 0;
    background: #f8f8f8;
}

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

.media-item {
    background: var(--secondary-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.media-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.media-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

.media-item p {
    padding: 20px;
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

/* Press Center Section */
.press-center {
    padding: 80px 0;
    background: var(--secondary-color);
}

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

.press-item {
    text-align: center;
}

.press-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 20px;
}

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

.press-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.press-item p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

.blog-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.blog-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s;
}

.blog-link:hover {
    color: #666;
}

/* Features Section */
.features {
    padding: 60px 0;
    background: #f8f8f8;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
}

.feature-item {
    padding: 20px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 15px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-item h3 {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-color);
}

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

.newsletter h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

.newsletter-form input {
    flex: 1;
    padding: 12px 20px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 14px;
    font-family: var(--font-primary);
}

.newsletter-form button {
    padding: 12px 30px;
    background: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
}

.newsletter-form button:hover {
    background: #333;
}

/* Newsletter Modal */
.newsletter-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.newsletter-modal.active {
    display: flex;
}

.newsletter-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.newsletter-modal-content {
    position: relative;
    background: var(--secondary-color);
    padding: 40px;
    max-width: 500px;
    width: 100%;
    border: 1px solid var(--border-color);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    text-align: center;
    z-index: 1;
}

.newsletter-modal-title {
    font-size: 24px;
    font-weight: 400;
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 16px;
    letter-spacing: 0;
}

.newsletter-modal-text {
    font-size: 16px;
    font-family: var(--font-primary);
    color: var(--text-color);
    margin-bottom: 30px;
    line-height: 1.6;
}

.newsletter-modal-close {
    padding: 12px 40px;
    background: var(--primary-color);
    color: var(--secondary-color);
    border: 1px solid var(--primary-color);
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font-primary);
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.newsletter-modal-close:hover {
    background: #333;
    border-color: #333;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2a2a2a;
    z-index: 2000;
    padding: 20px 0;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cookie-banner-text {
    font-size: 14px;
    font-family: var(--font-primary);
    color: var(--secondary-color);
    line-height: 1.6;
    margin: 0;
}

.cookie-link {
    color: var(--secondary-color);
    text-decoration: underline;
    transition: opacity 0.3s;
}

.cookie-link:hover {
    opacity: 0.7;
}

.cookie-banner-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-start;
}

.cookie-settings-btn {
    padding: 12px 24px;
    background: transparent;
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font-primary);
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.cookie-settings-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.cookie-reject-btn {
    padding: 12px 24px;
    background: var(--secondary-color);
    color: #2a2a2a;
    border: 1px solid var(--secondary-color);
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font-primary);
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.cookie-reject-btn:hover {
    background: #e0e0e0;
}

.cookie-accept-btn {
    padding: 12px 24px;
    background: var(--secondary-color);
    color: #2a2a2a;
    border: 1px solid var(--secondary-color);
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font-primary);
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.cookie-accept-btn:hover {
    background: #e0e0e0;
}

/* Cookie Settings Modal */
.cookie-settings-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cookie-settings-modal.show {
    display: flex;
}

.cookie-settings-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(2px);
}

.cookie-settings-content {
    position: relative;
    background: var(--secondary-color);
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border-radius: 4px;
}

.cookie-settings-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 32px;
    color: var(--text-color);
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s;
}

.cookie-settings-close:hover {
    color: var(--primary-color);
}

.cookie-settings-intro {
    margin-bottom: 30px;
}

.cookie-settings-intro p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-color);
    font-family: var(--font-primary);
    margin: 0;
}

.cookie-settings-intro a {
    color: var(--primary-color);
    text-decoration: underline;
}

.cookie-settings-table-container {
    margin-bottom: 30px;
    overflow-x: auto;
}

.cookie-settings-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    font-family: var(--font-primary);
}

.cookie-settings-table thead {
    background: #f5f5f5;
}

.cookie-settings-table th {
    padding: 12px;
    text-align: left;
    font-weight: 500;
    color: var(--primary-color);
    border-bottom: 2px solid var(--border-color);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cookie-settings-table td {
    padding: 15px 12px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-color);
    vertical-align: top;
}

.cookie-settings-table tbody tr:last-child td {
    border-bottom: none;
}

.cookie-radio-label {
    display: inline-flex;
    align-items: center;
    margin-right: 15px;
    cursor: pointer;
    font-size: 14px;
}

.cookie-radio {
    margin-right: 6px;
    cursor: pointer;
}

.cookie-settings-actions {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.cookie-settings-cancel,
.cookie-settings-save {
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font-primary);
    cursor: pointer;
    transition: background 0.3s, color 0.3s, border-color 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid var(--border-color);
}

.cookie-settings-cancel {
    background: var(--secondary-color);
    color: var(--text-color);
}

.cookie-settings-cancel:hover {
    background: #f5f5f5;
}

.cookie-settings-save {
    background: var(--primary-color);
    color: var(--secondary-color);
    border-color: var(--primary-color);
}

.cookie-settings-save:hover {
    background: #333;
    border-color: #333;
}

/* Sustainability Section */
.sustainability-section {
    padding: 80px 0;
    background: var(--secondary-color);
    min-height: calc(100vh - 200px);
}

.sustainability-title {
    font-size: 48px;
    font-weight: 400;
    font-family: var(--font-heading);
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 0;
}

.sustainability-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.sustainability-intro {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-color);
    font-family: var(--font-primary);
    margin-bottom: 30px;
}

.sustainability-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
    font-family: var(--font-primary);
    margin-bottom: 25px;
}

.sustainability-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.sustainability-feature {
    padding: 30px;
    border: 1px solid var(--border-color);
    background: #fafafa;
}

.sustainability-feature h3 {
    font-size: 20px;
    font-weight: 400;
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 15px;
}

.sustainability-feature p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-color);
    font-family: var(--font-primary);
    margin: 0;
}

/* Privacy Notice Section */
.privacy-section {
    padding: 80px 0;
    background: var(--secondary-color);
    min-height: calc(100vh - 200px);
}

.privacy-title {
    font-size: 48px;
    font-weight: 400;
    font-family: var(--font-heading);
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 0;
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.privacy-intro {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
    font-family: var(--font-primary);
    margin-bottom: 40px;
}

.privacy-section-item {
    margin-bottom: 50px;
}

.privacy-section-item h2 {
    font-size: 24px;
    font-weight: 400;
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 20px;
    letter-spacing: 0;
}

.privacy-section-item p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
    font-family: var(--font-primary);
    margin-bottom: 15px;
}

.privacy-list {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.privacy-list li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
    font-family: var(--font-primary);
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.privacy-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 20px;
}

.privacy-list li strong {
    color: var(--primary-color);
}

/* Impressum Section in Privacy Page */
.impressum-section {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid var(--border-color);
}

.impressum-title {
    font-size: 32px;
    font-weight: 400;
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 40px;
    letter-spacing: 0;
}

.impressum-content {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
    font-family: var(--font-primary);
}

.impressum-content p {
    margin-bottom: 20px;
}

.impressum-content strong {
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 500;
}

/* Inspiration Section */
.inspiration-section {
    padding: 80px 0;
    background: var(--secondary-color);
    min-height: calc(100vh - 200px);
}

.inspiration-title {
    font-size: 48px;
    font-weight: 400;
    font-family: var(--font-heading);
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: 0;
}

.inspiration-subtitle {
    font-size: 18px;
    color: var(--text-color);
    text-align: center;
    margin-bottom: 60px;
    font-family: var(--font-primary);
}

.inspiration-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.inspiration-article {
    margin-bottom: 60px;
    padding-bottom: 50px;
    border-bottom: 1px solid var(--border-color);
}

.inspiration-article:last-of-type {
    border-bottom: none;
}

.article-title {
    font-size: 32px;
    font-weight: 400;
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 25px;
    letter-spacing: 0;
}

.article-content {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
    font-family: var(--font-primary);
}

.article-content p {
    margin-bottom: 20px;
}

.article-content h3 {
    font-size: 22px;
    font-weight: 400;
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
    letter-spacing: 0;
}

.article-content strong {
    color: var(--primary-color);
    font-weight: 500;
}

.inspiration-list {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.inspiration-list li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
    font-family: var(--font-primary);
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.inspiration-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 20px;
}

.inspiration-list li strong {
    color: var(--primary-color);
}

.inspiration-list ol {
    list-style: decimal;
    padding-left: 25px;
    margin: 20px 0;
}

.inspiration-list ol li {
    padding-left: 10px;
}

.inspiration-list ol li::before {
    display: none;
}

.inspiration-cta {
    margin-top: 80px;
    padding: 60px 40px;
    background: #f5f5f5;
    text-align: center;
    border-radius: 4px;
}

.cta-title {
    font-size: 32px;
    font-weight: 400;
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 20px;
    letter-spacing: 0;
}

.cta-text {
    font-size: 18px;
    color: var(--text-color);
    margin-bottom: 30px;
    font-family: var(--font-primary);
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background: var(--primary-color);
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    font-family: var(--font-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #333;
}

/* Cookie Notice Section */
.cookie-notice-section {
    padding: 80px 0;
    background: var(--secondary-color);
    min-height: calc(100vh - 200px);
}

.cookie-notice-title {
    font-size: 48px;
    font-weight: 400;
    font-family: var(--font-heading);
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 0;
}

.cookie-notice-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.cookie-notice-intro {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
    font-family: var(--font-primary);
    margin-bottom: 40px;
}

.cookie-notice-section-item {
    margin-bottom: 50px;
}

.cookie-notice-section-item h2 {
    font-size: 24px;
    font-weight: 400;
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 20px;
    letter-spacing: 0;
}

.cookie-notice-section-item p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
    font-family: var(--font-primary);
    margin-bottom: 15px;
}

.cookie-notice-list {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.cookie-notice-list li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
    font-family: var(--font-primary);
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.cookie-notice-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 20px;
}

.cookie-notice-list li strong {
    color: var(--primary-color);
}

/* AGB Section */
.agb-section {
    padding: 80px 0;
    background: var(--secondary-color);
    min-height: calc(100vh - 200px);
}

.agb-title {
    font-size: 48px;
    font-weight: 400;
    font-family: var(--font-heading);
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 0;
}

.agb-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.agb-section-item {
    margin-bottom: 50px;
}

.agb-section-item h2 {
    font-size: 24px;
    font-weight: 400;
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 20px;
    letter-spacing: 0;
}

.agb-section-item p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
    font-family: var(--font-primary);
    margin-bottom: 15px;
}

.agb-list {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
    counter-reset: agb-counter;
}

.agb-list > li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
    font-family: var(--font-primary);
    margin-bottom: 20px;
    padding-left: 35px;
    position: relative;
    counter-increment: agb-counter;
}

.agb-list > li::before {
    content: counter(agb-counter) ".";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 500;
}

.agb-list li strong {
    color: var(--primary-color);
    font-weight: 500;
}

.agb-sublist {
    list-style: none;
    padding-left: 0;
    margin: 15px 0 15px 20px;
}

.agb-sublist li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
    font-family: var(--font-primary);
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.agb-sublist li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 20px;
}

/* Impressum Page Section */
.impressum-page-section {
    padding: 80px 0;
    background: var(--secondary-color);
    min-height: calc(100vh - 200px);
}

.impressum-page-title {
    font-size: 48px;
    font-weight: 400;
    font-family: var(--font-heading);
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 0;
}

.impressum-page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
    font-family: var(--font-primary);
}

.impressum-page-content p {
    margin-bottom: 20px;
}

.impressum-page-content strong {
    color: var(--primary-color);
    font-weight: 500;
}

@media (max-width: 768px) {
    .cookie-banner-content {
        padding: 0 15px;
    }
    
    .cookie-banner-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-settings-btn,
    .cookie-reject-btn,
    .cookie-accept-btn {
        width: 100%;
    }
    
    .cookie-settings-content {
        padding: 30px 20px;
        max-height: 95vh;
    }
    
    .cookie-settings-table {
        font-size: 12px;
    }
    
    .cookie-settings-table th,
    .cookie-settings-table td {
        padding: 10px 8px;
    }
    
    .cookie-settings-actions {
        flex-direction: column;
    }
    
    .cookie-settings-cancel,
    .cookie-settings-save {
        width: 100%;
    }
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #999;
    padding: 60px 0 30px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px 40px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #333;
}

.footer-links a {
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    font-family: var(--font-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 0.7;
}

.footer-bottom {
    text-align: center;
}

.copyright {
    font-size: 14px;
    color: #666;
    margin: 0;
    font-family: var(--font-primary);
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: #f5f5f5;
    min-height: calc(100vh - 200px);
}

.contact-brand {
    font-size: 48px;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: 0;
}

.contact-title {
    font-size: 24px;
    font-weight: 400;
    font-family: var(--font-heading);
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 0;
    text-transform: uppercase;
}

.contact-form-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-form {
    width: 100%;
}

.form-group {
    margin-bottom: 0;
}

.form-label {
    display: none;
}

.form-select {
    width: 100%;
    padding: 16px 20px;
    font-size: 16px;
    font-family: var(--font-primary);
    color: var(--primary-color);
    background: var(--secondary-color);
    border: 1px solid var(--border-color);
    border-radius: 0;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 12px;
    cursor: pointer;
    transition: border-color 0.3s, background-color 0.3s;
}

.form-select:hover {
    border-color: var(--primary-color);
}

.form-select:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: #fafafa;
}

.form-select option {
    padding: 12px;
    font-size: 16px;
    color: var(--primary-color);
    background: var(--secondary-color);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 16px 20px;
    font-size: 16px;
    font-family: var(--font-primary);
    color: var(--primary-color);
    background: var(--secondary-color);
    border: 1px solid var(--border-color);
    border-radius: 0;
    margin-bottom: 20px;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #999;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
    font-family: var(--font-primary);
}

.form-submit-btn {
    width: 100%;
    padding: 16px 20px;
    font-size: 16px;
    font-family: var(--font-primary);
    font-weight: 500;
    color: var(--secondary-color);
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-submit-btn:hover {
    background: #333;
    border-color: #333;
}

.contact-info {
    margin-top: 60px;
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}

.contact-info-text {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    font-family: var(--font-primary);
}

.contact-info-email,
.contact-info-phone {
    font-size: 16px;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-family: var(--font-primary);
}

.contact-info-email {
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .top-nav-menu,
    .top-nav-menu-right {
        display: none;
    }
    
    .header-logo-center {
        position: static;
        transform: none;
        order: -1;
    }
    
    .top-nav {
        justify-content: space-between;
    }
    
    .top-nav-right {
        flex: 0;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-menu {
        display: block;
        top: 100px;
    }
    
    .top-nav {
        position: relative;
    }
    
    .top-nav-actions {
        position: absolute;
        right: 0;
    }
    
    .header-logo {
        padding: 15px 0;
    }
    
    .logo img {
        height: 30px;
    }
    
    .hero {
        height: 60vh;
        min-height: 400px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
    }
    
    .category-image {
        height: 300px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .carousel-btn.prev {
        left: 10px;
    }
    
    .carousel-btn.next {
        right: 10px;
    }
    
    .media-grid,
    .press-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }
    
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
    
    .footer-links {
        gap: 20px 30px;
    }
    
    .footer-links a {
        font-size: 12px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 20px;
    }
    
    .products-header-content {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .products-header-center {
        order: -1;
        width: 100%;
    }
    
    .featured-products-header {
        flex-direction: column;
        gap: 20px;
    }
    
    .featured-products-title {
        font-size: 28px;
    }
    
    .featured-product-item {
        min-width: calc(50% - 15px);
    }
    
    .featured-product-item .product-image {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .category-image {
        height: 250px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .inspiration-title {
        font-size: 36px;
    }
    
    .article-title {
        font-size: 24px;
    }
    
    .cta-title {
        font-size: 24px;
    }
    
    .inspiration-cta {
        padding: 40px 20px;
    }
    
    .impressum-title {
        font-size: 28px;
    }
    
    .sustainability-features {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .sustainability-title,
    .privacy-title,
    .cookie-notice-title {
        font-size: 36px;
    }
    
    .privacy-section-item h2,
    .cookie-notice-section-item h2,
    .agb-section-item h2 {
        font-size: 20px;
    }
    
    .impressum-page-title {
        font-size: 36px;
    }
    
    .agb-title {
        font-size: 36px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .product-image {
        height: 300px;
    }
    
    .featured-product-item {
        min-width: 100%;
    }
    
    .featured-product-item .product-image {
        height: 300px;
    }
    
    .featured-products-controls {
        flex-wrap: wrap;
        gap: 15px;
    }
}
