/* ===== KONTAKT OPTIMIZED CSS ===== */

/* ===== MAIN ELEMENT ===== */
main#main-content {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%) !important;
    color: #ffffff !important;
}

/* Alternative spezifischere Regel falls nötig */
body main#main-content {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%) !important;
    color: #ffffff !important;
}

/* ===== HERO SECTION ===== */
.contact-hero {
    background: url('../IMG/ohone-it-service-kontakt-schopfheim-hero.jpg') center center/cover no-repeat;
    margin-bottom: 0;
    padding: 0 0 0 0;
    height: auto;
    min-height: 85vh;
}

.hero.contact-hero .hero-content {
    padding: 1rem 2rem;
    margin: 0;
}

.hero.contact-hero .hero-buttons {
    margin-bottom: 0;
    display: flex;
    flex-wrap: wrap;
    column-gap: 24px;
    row-gap: 16px;
    justify-content: center;
}

.hero.contact-hero .btn-neon {
    margin-left: 24px;
}

.hero.contact-hero .contact-quick-info {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.hero.contact-hero .quick-info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero.contact-hero .info-icon {
    font-size: 1.2rem;
}

/* Hero Title */
.hero.contact-hero .hero-title {
    font-size: clamp(2rem, 3.6vw, 2.8rem);
    font-weight: 900;
    color: #ffffff;
}

.hero.contact-hero .neon-text { 
    color: #60a5fa;
}

/* ===== FORM LOADING OVERLAY ===== */
.form-loading-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
}

.form-loading-overlay.active {
    display: flex;
}

.form-loading-spinner {
    width: 100px;
    height: 100px;
    position: relative;
}

.spinner-ring {
    width: 100%;
    height: 100%;
    border: 8px solid rgba(251, 191, 36, 0.2);
    border-top: 8px solid #f59e0b;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===== ENHANCED FORM STYLES ===== */
.form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #60a5fa;
    box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.2);
    outline: none;
}

.form-group input.input-valid,
.form-group select.input-valid,
.form-group textarea.input-valid {
    border-color: #10b981;
    background-color: rgba(16, 185, 129, 0.05);
}

.form-group input.input-error,
.form-group select.input-error,
.form-group textarea.input-error {
    border-color: #ef4444;
    background-color: rgba(239, 68, 68, 0.05);
}

.form-group input.input-warning,
.form-group select.input-warning,
.form-group textarea.input-warning {
    border-color: #f59e0b;
    background-color: rgba(245, 158, 11, 0.05);
}

.form-error {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    padding: 0.5rem;
    background-color: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 4px;
    color: #dc2626;
    font-size: 0.875rem;
    animation: shake 0.3s ease-in-out;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.form-error::before {
    content: "⚠️";
    font-size: 1rem;
}

.form-warning {
    background-color: rgba(245, 158, 11, 0.1);
    border-color: rgba(245, 158, 11, 0.3);
    color: #d97706;
}

.form-warning::before {
    content: "⚠️";
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.character-counter {
    text-align: right;
    font-size: 0.75rem;
    color: #6b7280;
    margin-top: 0.25rem;
}

/* ===== CAPTCHA ENHANCEMENTS ===== */
.captcha-group {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.captcha-math {
    font-weight: bold;
    color: #ef4444;
    font-size: 1.1em;
    background: rgba(96, 165, 250, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.captcha-reload-margin {
    margin-left: 0.5rem;
}

/* ===== MODAL ENHANCEMENTS ===== */
#form-success-modal,
#form-error-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99998;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}

.form-success-box,
.form-error-box {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    max-width: 500px;
    margin: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    animation: modalAppear 0.3s ease-out;
}

.form-success-box {
    border: 2px solid #10b981;
}

.form-error-box {
    border: 2px solid #ef4444;
}

.form-success-title {
    color: #10b981;
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-error-title {
    color: #ef4444;
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-success-text,
.form-error-text {
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

@keyframes modalAppear {
    0% { 
        opacity: 0; 
        transform: scale(0.9) translateY(-20px); 
    }
    100% { 
        opacity: 1; 
        transform: scale(1) translateY(0); 
    }
}

/* ===== ACCESSIBILITY ENHANCEMENTS ===== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus indicators */
.form-group input:focus-visible,
.form-group select:focus-visible,
.form-group textarea:focus-visible,
.btn:focus-visible {
    outline: 3px solid #60a5fa;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .form-error {
        background-color: #fee;
        border-color: #c00;
        color: #c00;
    }
    
    .form-warning {
        background-color: #ffe;
        border-color: #c60;
        color: #c60;
    }
    
    .input-error {
        border-color: #c00 !important;
    }
    
    .input-warning {
        border-color: #c60 !important;
    }
    
    .input-valid {
        border-color: #060 !important;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .form-group input,
    .form-group select,
    .form-group textarea,
    .form-error,
    .form-loading-spinner,
    .spinner-ring {
        animation: none;
        transition: none;
    }
}

/* ===== CONTACT SECTION ===== */
.contact {
    background: transparent;
    margin-bottom: 0;
    padding: 2rem 0 1rem 0;
    height: auto;
}

.contact .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact .section-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    margin-bottom: 3rem;
    color: #ffffff;
}

.contact .contact-content {
    display: grid;
    grid-template-columns: minmax(350px, 400px) 1fr !important;
    gap: 3rem;
    margin-bottom: 4rem;
}

/* Spezifische Regel für Desktop um styles.css zu überschreiben */
@media (min-width: 901px) {
    .contact .contact-content {
        grid-template-columns: minmax(350px, 400px) 1fr !important;
        gap: 3rem;
    }
}

/* Contact Info Styling */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 400px;
    width: 100%;
}

.contact-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
}

.contact-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.contact-details h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.contact-details p {
    color: #cccccc;
    line-height: 1.6;
    margin: 0;
}

/* Contact Form Styling */
.contact-form {
    background: linear-gradient(45deg, #3b82f6, #8b5cf6, #ec4899, #3b82f6);
    background-size: 400% 400%;
    animation: gradient-shift 3s ease infinite;
    border: none;
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.form-intro {
    text-align: center;
    margin-bottom: 2rem;
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.6;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    background: rgba(255, 255, 255, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group select option {
    background: #1a1a1a;
    color: #ffffff;
}

/* Form Row 2 Columns */
.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-col {
    width: 100%;
}

/* Captcha Styling */
.captcha-group {
    margin-bottom: 1.5rem;
}

.captcha-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

.captcha-row label {
    white-space: nowrap;
    color: #ffffff;
    font-weight: 500;
    margin: 0;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.captcha-row input {
    flex: 1;
    min-width: 150px;
    max-width: 200px;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 1rem;
    height: 48px;
}

.captcha-row input:focus {
    outline: none;
    border-color: #3b82f6;
    background: rgba(255, 255, 255, 0.15);
}

.captcha-row input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.captcha-row button {
    white-space: nowrap;
    padding: 0.75rem 1rem;
    width: auto !important;
    min-width: 80px;
    flex-shrink: 0;
    height: 48px;
    margin: 0 !important;
}

/* Überschreibe die styles.css Button-Regel */
.contact-form .captcha-group .captcha-row .btn {
    width: auto !important;
    margin: 0 !important;
    padding: 0.75rem 1rem !important;
    font-size: 1rem !important;
}

.captcha-math {
    font-weight: bold;
    color: #60a5fa;
    white-space: pre;
}

/* Checkbox Styling */
.form-group label input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
}

.white-text {
    color: #ffffff;
}

.form-group a {
    color: #60a5fa;
    text-decoration: none;
}

.form-group a:hover {
    color: #3b82f6;
    text-decoration: underline;
}

/* Button Styling */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: #ffffff;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-hint {
    text-align: center;
    margin-top: 1rem;
    color: #ef4444;
    font-size: 0.9rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* ===== MAP SECTION ===== */
.map-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem 0 0 0;
}

.map-container {
    max-width: 1000px;
    margin: 0 auto;
}

.shop-image-container {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: 16px;
    overflow: hidden;
}

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

.shop-image-container .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem;
    color: white;
}

.shop-image-container .overlay h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.shop-image-container .overlay p {
    margin: 0;
    font-size: 1.1rem;
    opacity: 0.9;
}

.shop-image-container .overlay a {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background: #3b82f6;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
}

.shop-image-container .overlay a:hover {
    background: #1d4ed8;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet und kleinere Desktop-Bildschirme */
@media (max-width: 1024px) {
    .contact .contact-content {
        grid-template-columns: 1fr 1fr !important;
        gap: 2rem;
    }
    
    .contact-info {
        max-width: none;
    }
    
    .hero.contact-hero .hero-title {
        font-size: clamp(1.8rem, 3.2vw, 2.4rem);
    }
    
    .hero.contact-hero .contact-quick-info {
        gap: 1rem;
    }
    
    .hero.contact-hero .quick-info-item {
        padding: 0.5rem 1rem;
    }
}

/* Tablet */
@media (max-width: 768px) {
    .contact .contact-content {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }
    
    .contact-info {
        gap: 1.5rem;
        max-width: none;
    }
    
    .form-row-2 {
        grid-template-columns: 1fr;
    }
    
    .hero.contact-hero .hero-content {
        padding: 1.5rem;
    }
    
    .hero.contact-hero .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero.contact-hero .btn-neon {
        margin-left: 0;
    }
    
    .hero.contact-hero .contact-quick-info {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero.contact-hero .quick-info-item {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .contact .section-title {
        font-size: clamp(1.8rem, 4vw, 2.5rem);
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .contact-info {
        gap: 1rem;
    }
    
    .contact-item {
        padding: 1rem;
    }
    
    .captcha-row {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
    }
    
    .captcha-row label {
        text-align: center;
        margin-bottom: 0.5rem;
    }
    
    .captcha-row input {
        max-width: none;
        width: 100%;
    }
    
    .captcha-row button {
        width: 100%;
        margin-top: 0.5rem;
    }
    
    .shop-image-container {
        height: 300px;
    }
    
    .shop-image-container .overlay {
        padding: 1.5rem;
    }
    
    .shop-image-container .overlay h3 {
        font-size: 1.3rem;
    }
    
    .shop-image-container .overlay p {
        font-size: 1rem;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .hero.contact-hero .hero-content {
        padding: 1rem;
    }
    
    .hero.contact-hero .hero-title {
        font-size: clamp(1.5rem, 2.8vw, 2rem);
    }
    
    .hero.contact-hero .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero.contact-hero .contact-quick-info {
        gap: 0.75rem;
    }
    
    .hero.contact-hero .quick-info-item {
        padding: 0.5rem 0.75rem;
        font-size: 0.9rem;
    }
    
    .contact .container {
        padding: 0 1rem;
    }
    
    .contact .section-title {
        font-size: clamp(1.5rem, 3.5vw, 2rem);
        margin-bottom: 2rem;
    }
    
    .contact .contact-content {
        gap: 1.5rem !important;
        margin-bottom: 2rem;
    }
    
    .contact-form {
        padding: 1rem;
    }
    
    .form-intro {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-info {
        gap: 0.75rem;
    }
    
    .contact-item {
        padding: 0.75rem;
    }
    
    .contact-icon {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .contact-details h3 {
        font-size: 1.1rem;
    }
    
    .contact-details p {
        font-size: 0.9rem;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.6rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .captcha-row label {
        font-size: 0.9rem;
        line-height: 1.3;
    }
    
    .captcha-row input {
        padding: 0.6rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .captcha-row button {
        padding: 0.6rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .shop-image-container {
        height: 250px;
    }
    
    .shop-image-container .overlay {
        padding: 1rem;
    }
    
    .shop-image-container .overlay h3 {
        font-size: 1.1rem;
    }
    
    .shop-image-container .overlay p {
        font-size: 0.9rem;
    }
    
    .shop-image-container .overlay a {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
}

/* Sehr kleine Bildschirme */
@media (max-width: 360px) {
    .hero.contact-hero .hero-content {
        padding: 0.75rem;
    }
    
    .hero.contact-hero .hero-title {
        font-size: 1.4rem;
    }
    
    .hero.contact-hero .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .contact .container {
        padding: 0 0.75rem;
    }
    
    .contact-form {
        padding: 0.75rem;
    }
    
    .contact-item {
        padding: 0.5rem;
    }
    
    .shop-image-container {
        height: 200px;
    }
}

/* Form Success/Error Modals */
#form-success-modal {
  position: fixed;
  z-index: 99999;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(10,10,10,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
}
.form-success-box {
  background: #1a1a1a;
  color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(34,197,94,0.18);
  border: 2px solid #22c55e;
  padding: 2.5rem 2rem 2rem 2rem;
  max-width: 95vw;
  width: 350px;
  text-align: center;
  animation: popin 0.3s;
}
.form-success-title {
  font-size: 1.3rem;
  color: #22c55e;
  font-weight: 700;
  margin-bottom: 1rem;
}
.form-success-text {
  font-size: 1.05rem;
  color: #cccccc;
}

#form-error-modal {
  position: fixed;
  z-index: 99999;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(10,10,10,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
}
.form-error-box {
  background: #1a1a1a;
  color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(255,26,26,0.18);
  border: 2px solid #ff1a1a;
  padding: 2.5rem 2rem 2rem 2rem;
  max-width: 95vw;
  width: 350px;
  text-align: center;
  animation: popin 0.3s;
}
.form-error-title {
  font-size: 1.3rem;
  color: #ff1a1a;
  font-weight: 700;
  margin-bottom: 1rem;
}
.form-error-text {
  font-size: 1.05rem;
  color: #cccccc;
}

@keyframes popin {
  0% { transform: scale(0.8); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus styles for accessibility */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
.btn:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

/* Hidden field for honeypot */
.hidden-field {
    display: none;
}

/* Captcha reload button */
.captcha-reload-button {
    margin-left: 10px;
}

/* Cookie Overlay */
.cookie-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(31,41,55,0.5);
    z-index: 9998;
}

/* Cookie Banner Styles */
#cookie-banner {
    display: none;
    position: fixed;
    bottom: 10vh;
    left: 50%;
    transform: translateX(-50%);
    width: 90vw;
    max-width: 600px;
    background: #1f2937;
    color: white;
    padding: 2rem 1.5rem;
    z-index: 9999;
    text-align: center;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
    border-radius: 18px;
}

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

.cookie-banner-text {
    font-size: 1.1rem;
}

.cookie-banner-link {
    color: #60a5fa;
    text-decoration: underline;
}

.cookie-buttons {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.cookie-btn {
    background: #2563eb;
    color: white;
    padding: 0.7rem 2rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
}

.cookie-btn-decline {
    background: #6b7280;
}

.cookie-btn-customize {
    background: #1e40af;
}

.cookie-customize {
    display: none;
    margin-top: 1.5rem;
    background: #374151;
    padding: 1rem;
    border-radius: 10px;
}

.cookie-customize label {
    display: block;
    margin-bottom: 0.5rem;
}

.cookie-save-btn {
    background: #2563eb;
    color: white;
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    margin-top: 0.5rem;
}

/* ===== SCROLL ANIMATIONS FOR KONTAKT.HTML ===== */

/* Contact Info Animation */
.contact-info .contact-item {
    opacity: 0;
    transform: translateY(-30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.contact-info .contact-item.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Contact Form Animation */
.contact-popup-body .form-intro {
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.contact-popup-body .form-intro.animate {
    opacity: 1;
    transform: translateY(0);
}

.contact-popup-body .form-group {
    opacity: 0;
    transform: translateY(-15px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.contact-popup-body .form-group.animate {
    opacity: 1;
    transform: translateY(0);
}

.contact-popup-body button[type="submit"] {
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.contact-popup-body button[type="submit"].animate {
    opacity: 1;
    transform: translateY(0);
}



/* Section Title Animation */
.scroll-animate.section-title {
    opacity: 0;
    transform: translateY(-30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-animate.section-title.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Map Container Animation */
.scroll-animate.map-container .shop-image-container {
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-delay: 0.2s;
}

.scroll-animate.map-container.animate .shop-image-container {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.scroll-animate.map-container .overlay {
    opacity: 0;
    transform: translateY(-15px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-delay: 0.4s;
}

.scroll-animate.map-container.animate .overlay {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Elements Animation */
.hero-title {
    opacity: 0;
    transform: translateY(-40px);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: slideInDown 1s ease-out 0.2s forwards;
}

.hero-subtitle {
    opacity: 0;
    transform: translateY(-30px);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: slideInDown 1s ease-out 0.4s forwards;
}

.hero-buttons {
    opacity: 0;
    transform: translateY(-20px);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: slideInDown 1s ease-out 0.6s forwards;
}

.contact-quick-info {
    opacity: 0;
    transform: translateY(-10px);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: slideInDown 1s ease-out 0.8s forwards;
}

@keyframes slideInDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Quick Info Items Animation */
.contact-quick-info .quick-info-item {
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.contact-quick-info .quick-info-item:nth-child(1) { transition-delay: 0.9s; }
.contact-quick-info .quick-info-item:nth-child(2) { transition-delay: 1.0s; }
.contact-quick-info .quick-info-item:nth-child(3) { transition-delay: 1.1s; }

.contact-quick-info .quick-info-item.animate {
    opacity: 1;
    transform: translateX(0);
}

/* ===== KOMPAKTE ÖFFNUNGSZEITEN BOX ===== */
.compact-hours-container {
    background: rgba(255, 255, 255, 0.05);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    margin-top: 1rem;
}

.compact-hours-title {
    margin-bottom: 1.5rem;
    text-align: center;
}

.compact-hours-title .contact-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.compact-hours-title h3 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.vacation-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 12px;
    margin-bottom: 1rem;
}

.vacation-notice.hidden {
    display: none !important;
}

.vacation-notice:not(.hidden) {
    display: flex !important;
}

.vacation-icon {
    font-size: 1.2rem;
    color: #fbbf24;
}

.vacation-text {
    color: #ffffff;
    font-weight: 500;
    font-size: 0.9rem;
}

.compact-hours-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.status-section {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #60a5fa;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.status-text {
    color: #ffffff;
    font-weight: 500;
}

.status-text.vacation {
    color: #fbbf24;
    font-weight: 600;
}

.compact-hours-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.compact-hours-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.compact-hours-day {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.compact-hours-day:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.compact-hours-day .day {
    font-weight: 600;
    color: #60a5fa;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.compact-hours-day .time {
    color: #ffffff;
    font-size: 0.9rem;
    text-align: center;
}

/* Heutiger Tag Hervorhebung */
.compact-hours-day.today {
    border-color: #10b981;
    background: rgba(16, 185, 129, 0.1);
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.3);
    transform: scale(1.05);
    z-index: 10;
}

.compact-hours-day.today .day {
    color: #10b981;
    font-weight: 700;
}

.compact-hours-day.today .time {
    color: #10b981;
    font-weight: 700;
}

.compact-hours-note {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(96, 165, 250, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(96, 165, 250, 0.2);
}

.note-text {
    color: #60a5fa;
    font-size: 0.8rem;
    font-style: italic;
    text-align: center;
}

/* Responsive Design für kompakte Öffnungszeiten */
@media (max-width: 768px) {
    .compact-hours-container {
        padding: 1rem;
    }
    
    .compact-hours-row {
        gap: 0.75rem;
    }
    
    .compact-hours-day {
        padding: 0.75rem;
    }
    
    .compact-hours-day .day {
        font-size: 1rem;
    }
    
    .compact-hours-day .time {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .compact-hours-container {
        padding: 0.75rem;
    }
    
    .compact-hours-title h3 {
        font-size: 1.3rem;
    }
    
    .compact-hours-row {
        gap: 0.5rem;
    }
    
    .compact-hours-day {
        padding: 0.5rem;
    }
    
    .compact-hours-day .day {
        font-size: 0.9rem;
    }
    
    .compact-hours-day .time {
        font-size: 0.75rem;
    }
}

/* ===== INLINE STYLE REPLACEMENTS ===== */
/* Hidden elements - replacement for style="display: none;" */
.hidden {
    display: none !important;
}

/* Captcha reload button margin - replacement for style="margin-left:10px;" */
.captcha-reload-margin {
    margin-left: 10px !important;
}

/* Modal button margin - replacement for style="margin-top:1.5rem;" */
.modal-button-margin {
    margin-top: 1.5rem !important;
}
