/* 
==========================================================================
NAJANAM - Tamilisches Modegeschäft
==========================================================================
*/

/* ========== Allgemeine Stile ========== */
:root {
    --primary-color: #4A0E50; /* Dunkelviolett */
    --secondary-color: #C9A227; /* Gold */
    --accent-color: #F4EBD0; /* Beige */
    --text-color: #333333;
    --light-text: #FFFFFF;
    --dark-bg: #2E0A32; /* Dunkleres Violett */
    --light-bg: #F9F6F0;
    --header-font: 'Playfair Display', serif;
    --body-font: 'Poppins', sans-serif;
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--body-font);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--light-bg);
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--header-font);
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-color);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

/* Mobile Typography */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    body {
        font-size: 16px;
    }
}

p {
    margin-bottom: 20px;
}

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

a:hover {
    color: var(--secondary-color);
}

ul, ol {
    list-style-position: inside;
    margin-bottom: 20px;
}

section {
    padding: 60px 0;
}

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

.bg-primary {
    background-color: var(--primary-color);
    color: var(--light-text);
}

.bg-secondary {
    background-color: var(--secondary-color);
    color: var(--light-text);
}

.bg-accent {
    background-color: var(--accent-color);
    color: var(--text-color);
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: var(--primary-color);
    color: var(--light-text);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
    text-align: center;
    font-size: 1rem;
    min-height: 44px; /* Touch-optimiert für Mobile */
    min-width: 44px;
}

.btn:hover {
    background-color: var(--secondary-color);
    color: var(--light-text);
}

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

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

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

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

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

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

.logo img {
    height: 60px;
}

nav ul.main-menu {
    display: flex;
    list-style: none;
    margin: 0;
}

nav ul.main-menu li {
    margin: 0 15px;
}

nav ul.main-menu li a {
    font-size: 1rem;
    font-weight: 500;
    padding: 10px 0;
    position: relative;
}

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

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

.language-selector select {
    padding: 8px;
    border: 1px solid var(--primary-color);
    border-radius: 4px;
    background-color: var(--light-bg);
    color: var(--primary-color);
    cursor: pointer;
    font-family: var(--body-font);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    nav ul.main-menu {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 90px);
        background-color: var(--light-bg);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 30px 0;
        transition: left 0.3s ease;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
    }
    
    nav ul.main-menu.active {
        left: 0;
    }
    
    nav ul.main-menu li {
        margin: 15px 0;
        width: 100%;
        text-align: center;
    }
    
    nav ul.main-menu li a {
        display: block;
        padding: 15px 20px;
        font-size: 1.1rem;
        width: 100%;
    }
    
    nav ul.main-menu li a::after {
        display: none;
    }
    
    .logo img {
        height: 50px;
    }
}

/* ========== Page Header ========== */
.page-header {
    background-color: var(--accent-color);
    text-align: center;
    padding: 40px 0;
}

.page-header h1 {
    margin-bottom: 10px;
}

/* ========== Hero Section ========== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

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

.hero-content {
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.9), 1px 1px 3px rgba(0, 0, 0, 0.8);
    line-height: 1.1;
    letter-spacing: 2px;
    font-family: 'Georgia', serif;
    color: #ffffff;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8), 1px 1px 2px rgba(0, 0, 0, 0.7);
    line-height: 1.4;
    opacity: 0.95;
    font-weight: 300;
    letter-spacing: 0.5px;
    color: #ffffff;
}

.hero-content .btn {
    background: var(--secondary-color);
    color: white;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(201, 162, 39, 0.3);
    transition: all 0.3s ease;
}

.hero-content .btn:hover {
    background: #b8941f;
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(201, 162, 39, 0.4);
}

@media (max-width: 768px) {
    .hero {
        height: 70vh;
        min-height: 500px;
        background-attachment: scroll;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
        letter-spacing: 1px;
    }
    
    .hero-content p {
        font-size: 1rem;
        letter-spacing: 0.3px;
    }
}

/* ========== Features Section ========== */
.features {
    padding: 60px 0;
}

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

.feature-item {
    text-align: center;
    padding: 20px;
    transition: var(--transition);
    border-radius: 8px;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--accent-color);
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 30px;
}

.feature-item h3 {
    margin-bottom: 15px;
}

/* ========== About Section ========== */
.about {
    padding: 60px 0;
}

.about-content {
    display: block;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-text h2 {
    margin-bottom: 20px;
}

.about-image img {
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* ========== Values Section ========== */
.about-values {
    padding: 80px 0;
}

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

.value-item {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(74, 14, 80, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.value-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(74, 14, 80, 0.2);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--dark-bg));
    border-radius: 50%;
    color: var(--light-text);
    font-size: 2rem;
    position: relative;
}

.value-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    opacity: 0;
    transition: var(--transition);
}

.value-item:hover .value-icon::after {
    opacity: 1;
}

.value-icon i {
    position: relative;
    z-index: 2;
}

.value-item h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.value-item p {
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 0;
}

/* ========== Contact Page Styles ========== */
.contact-info {
    padding: 80px 0;
    background: white;
}

.contact-info h2 {
    margin-bottom: 50px;
    font-size: 2.5rem;
    text-align: center;
}

.contact-details {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 25px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    min-height: 120px;
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.contact-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-top: 5px;
    flex-shrink: 0;
}

.contact-item h3 {
    color: var(--primary-color);
    margin: 0 0 8px 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.contact-item p {
    color: var(--text-color);
    margin: 0;
    line-height: 1.6;
}

.contact-item p a {
    color: var(--primary-color);
    font-weight: 500;
}

.contact-item p a:hover {
    color: var(--secondary-color);
}

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

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

.map-container {
    margin-bottom: 40px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.directions-note {
    margin-top: 30px;
    text-align: center;
}

.directions-note p {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background: rgba(var(--primary-color-rgb), 0.05);
    border-radius: 10px;
}

/* Responsive for contact page */
@media (max-width: 968px) {
    .contact-details {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .contact-details {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

.map-section {
    padding: 80px 0;
    background: white;
}

.map-section h2 {
    margin-bottom: 40px;
    font-size: 2.2rem;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(74, 14, 80, 0.15);
    margin-bottom: 50px;
    height: 500px;
    width: 100%;
}

.map-controls {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    gap: 15px;
}

.map-button {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
    display: flex;
    align-items: center;
    gap: 10px;
}

.map-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.4);
}

.map-button i {
    font-size: 1.1rem;
}

.directions {
    background: var(--accent-color);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(74, 14, 80, 0.1);
}

.directions h3 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.8rem;
    color: var(--primary-color);
}

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

.direction-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(74, 14, 80, 0.1);
    transition: var(--transition);
}

.direction-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(74, 14, 80, 0.15);
}

.direction-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border-radius: 50%;
    color: var(--light-text);
    font-size: 1.5rem;
}

.direction-item h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    text-align: center;
    font-size: 1.2rem;
}

.direction-item p {
    text-align: center;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Location Section */
.location-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.location-section h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.location-section p {
    color: var(--text-color);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.location-content {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.location-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.location-info h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.location-info p {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.location-details {
    margin-bottom: 2rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.detail-item i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    width: 20px;
}

/* Gallery Grid Layout */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.gallery-item {
    aspect-ratio: 1;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.gallery-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    border: 2px dashed #dee2e6;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-image-placeholder {
    background: linear-gradient(135deg, #e9ecef, #dee2e6);
    border-color: var(--secondary-color);
}

.gallery-image-placeholder i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    opacity: 0.7;
}

.gallery-image-placeholder h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 10px;
}

.gallery-image-placeholder p {
    font-size: 0.9rem;
    color: var(--text-color);
    font-style: italic;
    opacity: 0.7;
    margin: 0;
}

/* Responsive Grid */
@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .location-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .location-image img {
        height: 300px;
    }
    
    .gallery-placeholder {
        padding: 40px 15px;
    }
    
    .gallery-placeholder p {
        font-size: 1rem;
    }
}

/* ========== Footer ========== */
footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-bg) 100%);
    color: var(--light-text);
    padding: 50px 0 20px;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
    text-align: center;
    justify-items: center;
}

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

.footer-logo img {
    height: 80px;
    margin-bottom: 15px;
    filter: brightness(0) invert(1);
}


.footer-links h4,
.footer-contact h4,
.footer-social h4 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-weight: 600;
}

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

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

.footer-links ul li a {
    color: var(--light-text);
    font-size: 0.9rem;
    transition: var(--transition);
    opacity: 0.9;
}

.footer-links ul li a:hover {
    color: var(--secondary-color);
    opacity: 1;
    transform: translateX(5px);
}

.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 0.9rem;
    opacity: 0.9;
}

.footer-contact p i {
    color: var(--secondary-color);
    margin-right: 10px;
    width: 16px;
    text-align: center;
}

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

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--light-text);
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(201, 162, 39, 0.3);
}

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

.footer-bottom p {
    margin: 0;
    font-size: 0.8rem;
    opacity: 0.7;
}

/* WhatsApp Floating Button */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    z-index: 1000;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    color: white;
}

/* Products Overview Grid */
.products-overview {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.product-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(139, 69, 19, 0.15);
}

.product-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.product-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.product-card p {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.card-btn {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.card-btn:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

/* Product Detail Sections */
.product-detail-section {
    padding: 4rem 0;
}

.product-detail-section.bg-light {
    background: #f8f9fa;
}

.detail-header {
    text-align: center;
    margin-bottom: 3rem;
}

.detail-header h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.detail-header h2 i {
    margin-right: 1rem;
    color: var(--accent-color);
}

.product-features {
    max-width: 1000px;
    margin: 0 auto;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
}

.feature-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.feature-item p {
    color: var(--text-color);
    line-height: 1.5;
    margin: 0;
}

.contact-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.contact-item p {
    margin: 0;
    color: var(--text-color);
    line-height: 1.5;
    font-size: 0.95rem;
}

.detail-actions {
    text-align: center;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

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

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

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

/* RIA Highlights */
.ria-highlights {
    max-width: 1000px;
    margin: 0 auto;
}

.highlight-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    text-align: center;
}

.stat-item {
    background: white;
    padding: 2rem 1rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========== New Products Page Styles ========== */
.products-main {
    padding: 60px 0;
}

.products-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    align-items: stretch;
}

.product-category {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(74, 14, 80, 0.05);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 400px;
}

.product-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.product-category:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
    border-color: rgba(74, 14, 80, 0.1);
}

.category-header {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.category-header::after {
    content: '';
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: block;
    margin: 15px auto 0;
    border-radius: 2px;
}

.category-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 8px 25px rgba(74, 14, 80, 0.3);
    transition: all 0.3s ease;
}

.category-icon:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(74, 14, 80, 0.4);
}

.category-icon i {
    font-size: 2.2rem;
    color: white;
}

.category-header h2 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.8rem;
    font-weight: 700;
}

.category-header p {
    color: #666;
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.5;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
}

.category-items {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.item-list {
    margin-bottom: 25px;
    flex: 1;
}

.item {
    background: linear-gradient(135deg, #fafafa, #f5f5f5);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    border-left: 4px solid var(--secondary-color);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-left-color: var(--primary-color);
}

.item:last-child {
    margin-bottom: 0;
}

.item h4 {
    color: var(--primary-color);
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
    font-family: var(--header-font);
}

.item span {
    color: #666;
    font-size: 0.9rem;
    margin-top: 8px;
    display: block;
    font-style: italic;
}

.rental-info {
    margin-top: 20px;
    padding: 15px;
    background: linear-gradient(135deg, #f0f8ff, #e6f3ff);
    border-radius: 10px;
    border-left: 4px solid var(--secondary-color);
}

.rental-info p {
    margin: 0;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.95rem;
}

.rental-info i {
    color: var(--secondary-color);
    margin-right: 8px;
}

.category-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.category-actions .btn {
    flex: 1;
    text-align: center;
    padding: 12px 20px;
    font-size: 0.9rem;
}

/* Services Section */
.services-section {
    padding: 60px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 40px;
    align-items: stretch;
}

.service-card {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(74, 14, 80, 0.05);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 400px;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
    border-color: rgba(74, 14, 80, 0.1);
}

.service-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.service-icon i {
    font-size: 2.5rem;
    color: white;
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.service-highlights {
    display: flex;
    justify-content: space-around;
    margin: 25px 0;
    padding: 20px;
    background: var(--accent-color);
    border-radius: 10px;
}

.highlight {
    text-align: center;
}

.highlight strong {
    display: block;
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 700;
}

.highlight span {
    font-size: 0.8rem;
    color: #666;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
    text-align: left;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-list li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 25px;
}

.service-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

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

.service-card .btn {
    margin-top: 20px;
    padding: 15px 30px;
}

/* ========== New Gallery Structure Styles ========== */
.gallery-category {
    margin-bottom: 60px;
}

.category-title {
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
    font-weight: 600;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--primary-color);
}

.gallery-subsection {
    margin-bottom: 50px;
    padding: 0 20px;
}

.subsection-title {
    color: var(--secondary-color);
    font-size: 1.3rem;
    margin-bottom: 25px;
    padding-left: 20px;
    border-left: 4px solid var(--secondary-color);
    background: var(--accent-color);
    padding: 15px 20px;
    border-radius: 5px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: white;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-info h4 {
    color: white;
    margin: 0 0 8px 0;
    font-size: 1.1rem;
}

.gallery-info p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 0.9rem;
}

/* Gallery Filter Styles */
.gallery-category[style*="display: none"] {
    display: none !important;
}

.gallery-category {
    display: block;
}

/* ========== Responsive Design ========== */
@media (max-width: 768px) {
    .products-grid-new {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .product-category {
        padding: 25px;
    }
    
    .category-icon {
        width: 70px;
        height: 70px;
    }
    
    .category-icon i {
        font-size: 1.8rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-card {
        padding: 25px;
    }
    
    .service-highlights {
        flex-direction: column;
        gap: 15px;
    }
    
    .category-actions {
        flex-direction: column;
    }
    
    .category-title {
        font-size: 1.6rem;
    }
    
    .subsection-title {
        font-size: 1.1rem;
        padding: 12px 15px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .gallery-item img {
        height: 200px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .footer-logo {
        grid-column: 1 / -1;
        margin-bottom: 20px;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .detail-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .highlight-stats {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links ul li a:hover {
        transform: none;
    }
    
    .product-card {
        padding: 1.5rem;
    }
    
    .product-card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .detail-header h2 {
        font-size: 2rem;
    }
    
    .map-container {
        height: 350px;
    }
    
    .map-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* ========== Legal Pages (Impressum & Datenschutz) ========== */
.legal-content {
    background-color: #fff;
}

.legal-text {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.legal-text h2 {
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1.8rem;
    color: var(--primary-color);
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 10px;
}

.legal-text h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.3rem;
    color: var(--primary-color);
}

.legal-text h4 {
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: var(--text-color);
}

.legal-text p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: var(--text-color);
}

.legal-text ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.legal-text ul li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.legal-text a {
    color: var(--primary-color);
    text-decoration: underline;
}

.legal-text a:hover {
    color: var(--secondary-color);
}

.legal-text strong {
    color: var(--primary-color);
    font-weight: 600;
}

.legal-text em {
    color: #666;
    font-style: italic;
}

.legal-update {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    font-size: 0.9rem;
    color: #666;
    text-align: right;
}

/* Mobile Optimierungen für Legal-Seiten */
@media (max-width: 768px) {
    .legal-text {
        padding: 20px 15px;
    }
    
    .legal-text h2 {
        font-size: 1.5rem;
        margin-top: 30px;
    }
    
    .legal-text h3 {
        font-size: 1.2rem;
        margin-top: 25px;
    }
    
    .legal-text p {
        font-size: 0.95rem;
        line-height: 1.7;
        text-align: justify;
    }
    
    .page-header {
        padding: 30px 0;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .page-header p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .legal-text {
        padding: 15px 10px;
    }
    
    .legal-text h2 {
        font-size: 1.3rem;
    }
    
    .legal-text h3 {
        font-size: 1.1rem;
    }
    
    .legal-text p {
        font-size: 0.9rem;
    }
}

/* Footer Links Styling */
.footer-bottom a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: var(--secondary-color);
}

/* ========== Mobile Performance & UX Optimierungen ========== */

/* Touch-optimierte Link-Größen */
@media (max-width: 768px) {
    a, button {
        min-height: 44px;
        min-width: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Verbesserte Tap-Highlights */
    * {
        -webkit-tap-highlight-color: rgba(201, 162, 39, 0.3);
    }
    
    /* Smooth Scrolling für Mobile */
    html {
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Verbesserte Touch-Gesten */
    body {
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        user-select: none;
    }
    
    /* Text in Inputs und Content-Bereichen selektierbar */
    input, textarea, .legal-text, p {
        -webkit-user-select: text;
        user-select: text;
    }
    
    /* Optimierte Container-Padding */
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 40px 0;
    }
    
    /* Verbesserte WhatsApp-Button Position */
    .whatsapp-button {
        bottom: 20px;
        right: 20px;
        width: 56px;
        height: 56px;
        font-size: 1.8rem;
    }
    
    /* Optimierte Footer-Icons */
    .social-icon {
        width: 44px;
        height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 1.3rem;
    }
    
    /* Verbesserte Kontakt-Details */
    .contact-item {
        padding: 20px;
    }
    
    .contact-item i {
        font-size: 1.8rem;
    }
    
    .contact-item h3 {
        font-size: 1.2rem;
        margin-bottom: 8px;
    }
    
    .contact-item p {
        font-size: 0.95rem;
    }
}

/* Extra kleine Geräte */
@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    section {
        padding: 30px 0;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
    
    /* Optimierte Header-Höhe */
    .header-inner {
        padding: 10px 0;
    }
    
    .logo img {
        height: 45px;
    }
}

/* ========== Versandservice Styling ========== */

/* Feature Badge auf Startseite */
.feature-badge {
    margin-top: 15px;
    padding: 10px 15px;
    background: linear-gradient(135deg, #C9A227 0%, #b8941f 100%);
    color: white;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 3px 10px rgba(201, 162, 39, 0.3);
}

.feature-badge i {
    font-size: 1rem;
}

/* Service Highlight Box auf Produkte-Seite */
.service-highlight-box {
    margin-top: 20px;
    padding: 20px;
    background: linear-gradient(135deg, #f9f6f0 0%, #fff 100%);
    border-left: 4px solid var(--secondary-color);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.service-highlight-box i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
    display: block;
}

.service-highlight-box p {
    margin: 0;
    line-height: 1.7;
    color: var(--text-color);
}

.service-highlight-box strong {
    color: var(--primary-color);
    font-size: 1.05rem;
}

/* Shipping Service Info auf Kontakt-Seite */
.shipping-service-info {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 2px solid #e0e0e0;
}

.shipping-box {
    background: linear-gradient(135deg, #4A0E50 0%, #2E0A32 100%);
    color: white;
    padding: 30px;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 25px;
    box-shadow: 0 8px 25px rgba(74, 14, 80, 0.2);
}

.shipping-box i {
    font-size: 3rem;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.shipping-box h3 {
    color: white;
    margin-bottom: 12px;
    font-size: 1.4rem;
}

.shipping-box p {
    margin: 0;
    line-height: 1.8;
    font-size: 1rem;
    opacity: 0.95;
}

/* Mobile Optimierungen für Versandservice */
@media (max-width: 768px) {
    .feature-badge {
        font-size: 0.8rem;
        padding: 8px 12px;
    }
    
    .service-highlight-box {
        padding: 15px;
    }
    
    .service-highlight-box i {
        font-size: 1.3rem;
    }
    
    .shipping-box {
        flex-direction: column;
        padding: 25px 20px;
        text-align: center;
        align-items: center;
    }
    
    .shipping-box i {
        font-size: 2.5rem;
    }
    
    .shipping-box h3 {
        font-size: 1.2rem;
    }
    
    .shipping-box p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .feature-badge {
        font-size: 0.75rem;
        padding: 6px 10px;
    }
    
    .service-highlight-box {
        padding: 12px;
    }
    
    .shipping-box {
        padding: 20px 15px;
    }
    
    .shipping-box i {
        font-size: 2rem;
    }
    
    .shipping-box h3 {
        font-size: 1.1rem;
    }
    
    .shipping-box p {
        font-size: 0.9rem;
    }
}
