/* CSS Design System & Styles for Vincent Käsekuchenbäckerei */

:root {
    /* Color Palette - Eiscafe Orrico (Premium Nougat / Bronze) */
    --bg-primary: #FDFBF7;
    --bg-card: #FFFFFF;
    --primary: #C28F5A;
    --star-gold: #E5A93D;
    --primary-hover: #A87645;
    --text-main: #3E2723;
    --text-muted: #5D4037;
    --text-light: #EFEBE9;
    --accent: #A1887F;
    --accent-light: #F9F5F0;
    --white: #FFFFFF;
    
    --shadow-sm: 0 4px 12px rgba(62, 39, 35, 0.04);
    --shadow-md: 0 12px 32px rgba(62, 39, 35, 0.08);
    --shadow-lg: 0 20px 48px rgba(62, 39, 35, 0.12);
    
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
}

/* Reset & Base Styles */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-primary);
    color: var(--text-muted);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 5px;
    border: 2px solid var(--bg-primary);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-main);
    font-family: var(--font-serif);
    font-weight: 700;
    line-height: 1.25;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: normal;
    hyphens: none;
    -webkit-hyphens: none;
}

p, span, a, li, blockquote {
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: none;
    -webkit-hyphens: none;
}

p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

/* Layout Utilities */
.section-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-normal);
    border: none;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--text-main);
    box-shadow: 0 4px 14px rgba(123, 158, 107, 0.4);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(123, 158, 107, 0.5);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--white);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--text-main);
    transform: translateY(-2px);
}

/* Header / Navigation */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-normal);
    padding: 20px 0;
}

.site-header.scrolled {
    background-color: rgba(253, 251, 247, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    padding: 12px 0;
    border-bottom: 1px solid rgba(161, 136, 127, 0.15);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-serif);
    color: var(--white);
    font-size: 1.6rem;
    font-weight: 700;
}

.site-header.scrolled .logo {
    color: var(--text-main);
}

.logo-icon {
    font-size: 1.8rem;
    color: var(--primary);
    display: inline-block;
    transition: transform 0.5s ease;
}

.logo:hover .logo-icon {
    transform: rotate(15deg) scale(1.1);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-sub {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.7);
}

.site-header.scrolled .logo-sub {
    color: var(--text-muted);
}

/* Nav Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-weight: 500;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    padding: 6px 0;
}

.site-header.scrolled .nav-link {
    color: var(--text-muted);
}

.site-header.scrolled .nav-link:hover,
.site-header.scrolled .nav-link.active {
    color: var(--text-main);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition-normal);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.cta-button {
    background-color: var(--primary);
    color: var(--text-main);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 4px 10px rgba(123, 158, 107, 0.3);
}

.mobile-menu-legal {
    display: none;
}

.cta-button:hover {
    background-color: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(123, 158, 107, 0.4);
}

.mobile-cta {
    display: none;
}

.header-actions {
    display: flex;
    align-items: center;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    font-size: 0.95rem;
    margin-right: 24px;
    transition: var(--transition-fast);
}

.header-phone i {
    color: var(--primary);
    font-size: 0.95rem;
    transition: transform var(--transition-fast);
}

.header-phone:hover {
    color: var(--primary);
}

.header-phone:hover i {
    transform: scale(1.1) rotate(-10deg);
}

.site-header.scrolled .header-phone {
    color: var(--text-main);
}

.mobile-phone-cta {
    display: none;
}

/* Mobile Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
}

.mobile-menu-toggle span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background-color: var(--white);
    border-radius: 9px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.site-header.scrolled .mobile-menu-toggle span {
    background-color: var(--text-main);
}

.mobile-menu-toggle span:nth-child(1) { top: 0px; }
.mobile-menu-toggle span:nth-child(2) { top: 10px; }
.mobile-menu-toggle span:nth-child(3) { top: 20px; }

.mobile-menu-toggle.open span:nth-child(1) {
    top: 10px;
    transform: rotate(135deg);
}

.mobile-menu-toggle.open span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.mobile-menu-toggle.open span:nth-child(3) {
    top: 10px;
    transform: rotate(-135deg);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('assets/images/hero-gelato.webp') no-repeat center 35%/cover;
    color: var(--white);
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(38, 24, 21, 0.72) 0%, rgba(45, 26, 23, 0.58) 45%, rgba(30, 18, 16, 0.85) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    width: 100%;
    padding: 0 24px;
    text-align: center;
}

.hero-tagline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--primary);
    border: none;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    margin-bottom: 20px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.2rem);
    color: var(--white);
    margin-bottom: 24px;
    text-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.hero-title .highlight {
    color: var(--primary);
    font-style: italic;
    position: relative;
    display: inline-block;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--primary);
    border-radius: 2px;
    opacity: 0.4;
    box-shadow: 0 2px 6px rgba(123, 158, 107, 0.4);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-highlight-text {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 3.5vw, 2.4rem);
    font-style: italic;
    color: var(--primary);
    margin-bottom: 40px;
    font-weight: 600;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.mouse-icon {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    display: block;
    position: relative;
    opacity: 0.8;
    transition: var(--transition-fast);
}

.mouse-icon:hover {
    border-color: var(--primary);
    opacity: 1;
}

.mouse-icon .wheel {
    width: 4px;
    height: 8px;
    background-color: var(--primary);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 1.6s infinite;
}

@keyframes scroll-wheel {
    0% { top: 8px; opacity: 1; }
    50% { top: 22px; opacity: 0; }
    100% { top: 8px; opacity: 0; }
}

/* Sections Global */
section {
    padding: 100px 0;
    position: relative;
}

.section-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--text-main);
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto 60px;
    color: var(--text-muted);
}

/* Sorten Sektion */
.sorten-section {
    background-color: var(--white);
}

.sorten-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: 32px;
}

.sorten-card {
    background-color: var(--bg-primary);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    border: 1px solid rgba(161, 136, 127, 0.08);
    display: flex;
    flex-direction: column;
}

.sorten-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(123, 158, 107, 0.2);
}

.card-image-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
    background-color: var(--accent-light);
}

.card-image-slider {
    display: flex;
    width: 200%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-image-slider .card-image {
    width: 50%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.sorten-card:hover .card-image-slider {
    transform: translateX(-50%);
}

.sorten-card:hover .card-image-slider .card-image {
    transform: scale(1.05);
}

/* Fallback styling for images if not generated/found */
.card-image-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-light) 0%, #E8DFD8 100%);
    color: var(--text-muted);
    font-size: 3.5rem;
    z-index: 1;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.card-image:not([src]), 
.card-image[src=""],
.card-image-error {
    opacity: 0;
}

.card-image-error + .card-image-fallback {
    opacity: 1;
}

.card-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background-color: var(--primary);
    color: var(--text-main);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 2;
    box-shadow: var(--shadow-sm);
}

.card-badge.badge-accent {
    background-color: #D84315;
    color: var(--white);
}

.card-badge.badge-info {
    background-color: #607D8B;
    color: var(--white);
}

.card-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-content h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.card-content p {
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

.card-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-top: 1px solid rgba(161, 136, 127, 0.12);
    padding-top: 20px;
}

.card-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-main);
    font-weight: 500;
}

.card-list li i {
    color: var(--primary);
}

/* About Us Section */
.about-section {
    background-color: var(--bg-primary);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.about-content p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.65;
}

/* About Awards & Highlights */
.about-awards-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 24px 0;
}

.about-award-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background-color: var(--white);
    padding: 16px 20px;
    border-radius: var(--border-radius-sm);
    border: 1px solid rgba(161, 136, 127, 0.1);
    border-left: 4px solid var(--primary);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

.about-award-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.about-award-card .award-icon-wrap {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: var(--accent-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.about-award-card.gold {
    border-left-color: #C59B27;
    background: linear-gradient(135deg, #FFFFFF 0%, #FAF7EE 100%);
}

.about-award-card.gold .award-icon-wrap {
    background: linear-gradient(135deg, #FFF0C8 0%, #FFE494 100%);
    color: #9C7209;
}

.award-details h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 4px;
}

.award-details p {
    font-size: 0.92rem !important;
    color: var(--text-muted);
    line-height: 1.45 !important;
    margin-bottom: 6px !important;
}

.award-press-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    transition: var(--transition-fast);
}

.award-press-link:hover {
    text-decoration: underline;
    color: var(--primary-hover);
}

/* About Quote - Cohesive, Harmonized Typography */
.about-quote-box {
    margin: 20px 0 16px;
    padding: 14px 18px;
    background-color: var(--white);
    border-radius: var(--border-radius-sm);
    border: 1px solid rgba(161, 136, 127, 0.1);
    border-left: 4px solid var(--primary);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.about-quote-box .quote-text {
    font-family: var(--font-sans);
    font-size: 0.98rem;
    font-style: italic;
    color: var(--text-main);
    line-height: 1.5;
    margin-bottom: 0 !important;
}

.about-quote-box .quote-author {
    font-family: var(--font-sans);
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--primary);
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
    border-top: 1px solid rgba(161, 136, 127, 0.15);
    padding-top: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-image-column {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    padding-right: 20px;
    padding-bottom: 20px;
}

.about-image-slider-container {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    z-index: 2;
}

.about-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius-md);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.about-image-secondary {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius-md);
    opacity: 0;
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.about-image-wrapper:hover .about-image-secondary {
    opacity: 1;
    transform: scale(1.03);
}

.about-image-wrapper:hover .about-image {
    opacity: 0;
}

.about-image-accent {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80%;
    height: 80%;
    background-color: var(--accent-light);
    border: 2px dashed var(--primary);
    border-radius: var(--border-radius-md);
    z-index: 1;
}

.about-floating-award-badge {
    position: absolute;
    bottom: 0px;
    left: -15px;
    background-color: var(--white);
    padding: 10px 16px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(62, 39, 35, 0.18);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 4;
    border: 1px solid rgba(212, 175, 55, 0.35);
    background: linear-gradient(135deg, #FFFFFF 0%, #FAF7ED 100%);
    animation: float-badge 3s ease-in-out infinite;
}

@keyframes float-badge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

.about-floating-award-badge .badge-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, #D4AF37 0%, #AA7C11 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(170, 124, 17, 0.3);
}

.about-floating-award-badge .badge-text {
    display: flex;
    flex-direction: column;
}

.about-floating-award-badge .badge-title {
    font-size: 0.86rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.2;
}

.about-floating-award-badge .badge-subtitle {
    font-size: 0.76rem;
    color: #8C6708;
    font-weight: 500;
}

/* Fairness & Price Stability Card */
.fairness-card {
    background: linear-gradient(135deg, #FFFFFF 0%, #FAF6F0 100%);
    border: 1px solid rgba(194, 143, 90, 0.22);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    padding: 38px 44px;
    margin-top: 48px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-normal);
}

.fairness-card:hover {
    border-color: rgba(194, 143, 90, 0.45);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.fairness-card-header {
    margin-bottom: 14px;
}

.fairness-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(194, 143, 90, 0.12);
    color: var(--primary-hover);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 10px;
    font-family: var(--font-sans);
}

.fairness-title {
    font-family: var(--font-serif);
    font-size: clamp(1.35rem, 3vw, 1.8rem);
    color: var(--text-main);
    line-height: 1.25;
}

.fairness-text {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 22px;
    max-width: 850px;
}

.fairness-text strong {
    color: var(--text-main);
}

.fairness-chips {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 14px;
    padding-top: 18px;
    border-top: 1px solid rgba(161, 136, 127, 0.12);
}

.fairness-chip {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #FFFFFF;
    border: 1px solid rgba(194, 143, 90, 0.18);
    border-radius: var(--border-radius-sm);
    padding: 12px 16px;
    box-shadow: 0 2px 6px rgba(62, 39, 35, 0.03);
    transition: var(--transition-fast);
}

.fairness-chip:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.fairness-chip i {
    font-size: 1rem;
    color: var(--primary);
    background: rgba(194, 143, 90, 0.12);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.fairness-chip span {
    font-family: var(--font-sans);
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.35;
}

.fairness-chip span strong {
    display: block;
    color: var(--text-main);
    font-size: 0.92rem;
}

@media (max-width: 768px) {
    .fairness-card {
        padding: 26px 18px;
    }
    
    .fairness-chips {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

/* Reviews Section */
.reviews-section {
    background-color: var(--bg-primary); /* Soft cream background to contrast white cards */
    border-top: 1px solid rgba(161, 136, 127, 0.08);
    border-bottom: 1px solid rgba(161, 136, 127, 0.08);
}

.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    gap: 40px;
}

.reviews-header-left {
    flex: 1;
}

.reviews-header-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.google-badge {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background-color: var(--white); /* White badge on cream section */
    border: 1px solid rgba(161, 136, 127, 0.15);
    padding: 10px 20px 10px 14px;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.google-badge:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: var(--bg-primary);
    color: var(--primary);
    font-size: 1.15rem;
    box-shadow: inset 0 2px 4px rgba(62, 39, 35, 0.02);
}

.badge-content {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.badge-stars {
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1;
}

.rating-number {
    font-weight: 700;
    color: var(--text-main);
    font-size: 1.1rem;
}

.stars-gold {
    color: var(--star-gold);
    font-size: 0.75rem;
    display: flex;
    gap: 1.5px;
}

.badge-text {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-top: 3px;
}

.badge-arrow {
    color: var(--accent);
    font-size: 0.85rem;
    transition: transform var(--transition-fast), color var(--transition-fast);
}

.google-badge:hover .badge-arrow {
    transform: translateX(4px);
    color: var(--primary);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr));
    gap: 30px;
}

.review-card {
    background-color: var(--white); /* White cards on cream background */
    padding: 40px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(161, 136, 127, 0.08);
    position: relative;
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 15px;
    left: 25px;
    font-family: var(--font-serif);
    font-size: 6rem;
    line-height: 1;
    color: var(--primary);
    opacity: 0.07; /* Super subtle background quotation mark */
    pointer-events: none;
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: rgba(123, 158, 107, 0.2);
}

.review-title {
    font-size: 1.25rem;
    color: var(--text-main);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary); /* Pistachio underline */
    display: inline-block;
    align-self: flex-start;
    font-family: var(--font-sans);
    font-weight: 700;
    letter-spacing: 0.3px;
    position: relative;
    z-index: 2;
}

.review-text {
    color: var(--text-muted);
    font-style: normal;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 24px;
    flex-grow: 1;
    position: relative;
    z-index: 2;
}

.rating {
    color: var(--star-gold);
    font-size: 1rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.review-author {
    border-top: 1px solid rgba(161, 136, 127, 0.12);
    padding-top: 16px;
    display: flex;
    flex-direction: column;
}

.author-name {
    color: var(--text-main);
    font-size: 0.95rem;
    font-weight: 600;
}

.author-role {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-top: 2px;
    opacity: 0.8;
}

/* Link style removed as replaced by Google Badge */

@media (max-width: 1024px) {
    .reviews-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 40px;
    }
    .reviews-header-right {
        justify-content: flex-start;
        width: 100%;
    }
}


/* FAQ Section */
.faq-section {
    background-color: var(--bg-primary);
}

.faq-accordion-wrapper {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: var(--white);
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(161, 136, 127, 0.08);
    overflow: hidden;
    transition: var(--transition-normal);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(123, 158, 107, 0.15);
}

.faq-trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 30px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    outline: none;
}

.faq-question {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-main);
    padding-right: 20px;
    display: flex;
    align-items: center;
    line-height: 1.4;
}

.faq-q-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--accent-light);
    color: var(--text-main);
    margin-right: 16px;
    font-size: 0.95rem;
    flex-shrink: 0;
    transition: var(--transition-normal);
}

.faq-item:hover .faq-q-icon-wrapper {
    background-color: var(--primary);
    color: var(--text-main);
    transform: scale(1.05);
}

.faq-item.active .faq-q-icon-wrapper {
    background-color: var(--primary);
    color: var(--text-main);
}

.faq-icon {
    font-size: 1rem;
    color: var(--primary);
    transition: transform var(--transition-normal);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-content-inner {
    padding: 0 30px 30px;
    border-top: 1px solid rgba(161, 136, 127, 0.08);
    margin-top: -1px;
}

.faq-content p {
    margin-bottom: 0;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    padding-top: 20px;
}

/* Footer Section */
.site-footer {
    background-color: var(--text-main);
    color: var(--text-light);
}

.footer-top {
    padding: 80px 0 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 50px;
}

.footer-logo {
    color: var(--white);
    margin-bottom: 20px;
    justify-content: flex-start;
}

.footer-logo .logo-sub {
    color: rgba(255, 255, 255, 0.6);
}

.footer-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
}

.footer-socials {
    display: flex;
    gap: 16px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--white);
}

.footer-socials a:hover {
    background-color: var(--primary);
    color: var(--text-main);
    transform: translateY(-3px);
}

.footer-grid h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer-grid h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary);
}

.contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-list li {
    display: flex;
    gap: 14px;
}

.contact-list .icon {
    color: var(--primary);
    font-size: 1.1rem;
    margin-top: 3px;
}

.contact-list .text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

.contact-list .text a:hover {
    color: var(--primary);
    text-decoration: underline;
}

.notice-box {
    display: flex;
    gap: 12px;
    background-color: rgba(123, 158, 107, 0.1);
    border-left: 3px solid var(--primary);
    padding: 16px;
    border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
    margin-bottom: 20px;
}
.notice-icon {
    color: var(--primary);
    font-size: 1.2rem;
    margin-top: 2px;
}

.notice-box p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
}

.hours-box {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 16px;
    border-radius: var(--border-radius-sm);
}

.hours-box p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
    background-color: #2D1A17;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a:hover {
    color: var(--primary);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(0);
    transition: opacity var(--transition-slow);
}

.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.fade-in.appear,
.fade-in-up.appear {
    opacity: 1;
    transform: translateY(0);
}

.desktop-br {
    display: inline;
}

/* ==========================================================================
   Responsive Styles & Mobile Layout Optimization
   ========================================================================== */

/* Tablet (max-width: 1024px) */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image-column {
        order: -1;
        max-width: 480px;
        margin: 0 auto;
        width: 100%;
    }
    
    .reviews-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 36px;
    }
    
    .reviews-header-right {
        justify-content: flex-start;
        width: 100%;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-info-col {
        grid-column: span 2;
    }
}

/* Standard Mobile (max-width: 768px) */
@media (max-width: 768px) {
    .desktop-br {
        display: none;
    }

    section {
        padding: 60px 0;
    }
    
    .section-container {
        padding: 0 20px;
    }

    .desktop-cta {
        display: none;
    }
    
    .mobile-cta {
        display: inline-flex;
        margin-top: 20px;
        text-align: center;
        justify-content: center;
        width: 100%;
    }
    
    .mobile-menu-toggle {
        display: block;
        z-index: 1001;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background-color: var(--bg-primary);
        box-shadow: var(--shadow-lg);
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 40px;
        transition: right var(--transition-normal);
        z-index: 1000;
        border-left: 1px solid rgba(161, 136, 127, 0.15);
    }
    
    .nav-menu.open {
        right: 0;
    }
    
    .nav-link {
        color: var(--text-main);
        font-size: 1.15rem;
        width: 100%;
        padding: 12px 0;
        border-bottom: 1px solid rgba(161, 136, 127, 0.08);
    }
    
    .site-header.scrolled .nav-link {
        color: var(--text-main);
    }

    /* Hero Section Mobile */
    .hero-section {
        min-height: 100svh;
        height: auto;
        padding: 100px 0 50px 0;
    }

    .hero-container {
        padding: 0 16px;
    }

    .hero-tagline {
        font-size: clamp(0.72rem, 3.2vw, 0.85rem);
        padding: 8px 16px;
        max-width: 100%;
        white-space: normal;
        line-height: 1.35;
        text-align: center;
        margin-bottom: 16px;
    }

    .hero-title {
        font-size: clamp(1.85rem, 7.5vw, 2.75rem);
        line-height: 1.18;
        margin-bottom: 18px;
    }

    .hero-subtitle {
        font-size: clamp(0.95rem, 3.5vw, 1.2rem);
        line-height: 1.5;
        margin-bottom: 14px;
        padding: 0 4px;
    }

    .hero-highlight-text {
        font-size: clamp(1.2rem, 4.8vw, 1.85rem);
        margin-bottom: 28px;
        line-height: 1.3;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        max-width: 360px;
        margin: 0 auto;
        padding: 0;
    }
    
    .hero-actions .btn {
        width: 100%;
        font-size: 0.92rem;
        padding: 13px 20px;
        text-align: center;
        justify-content: center;
    }

    .hero-scroll-indicator {
        display: none; /* Hide on mobile to free up vertical space */
    }

    /* About Section Mobile */
    .about-image-wrapper {
        padding-right: 0;
        padding-bottom: 20px;
        max-width: 100%;
        position: relative;
    }

    .about-image-accent {
        display: none;
    }

    .about-floating-award-badge {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: -20px;
        margin-left: auto;
        margin-right: auto;
        width: fit-content;
        max-width: 94%;
        box-shadow: var(--shadow-md);
    }

    .about-awards-list {
        gap: 12px;
    }

    .about-award-card {
        padding: 14px 16px;
    }

    .about-stats {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px;
        padding-top: 20px;
        margin-top: 20px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.78rem;
    }

    /* Fairness Card Mobile */
    .fairness-card {
        padding: 26px 18px;
        margin-top: 32px;
        border-radius: var(--border-radius-sm);
    }

    .fairness-pill {
        font-size: 0.72rem;
        padding: 5px 12px;
    }

    .fairness-title {
        font-size: clamp(1.2rem, 4.5vw, 1.5rem);
        line-height: 1.25;
    }

    .fairness-text {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 18px;
    }

    .fairness-chips {
        grid-template-columns: 1fr;
        gap: 10px;
        padding-top: 14px;
    }

    .fairness-chip {
        padding: 10px 14px;
        gap: 10px;
    }

    /* Reviews Section Mobile */
    .reviews-header {
        margin-bottom: 28px;
    }

    .google-badge {
        padding: 8px 16px;
        gap: 12px;
        max-width: 100%;
    }

    .review-card {
        padding: 24px 18px;
        border-radius: var(--border-radius-sm);
    }

    .review-card::before {
        font-size: 4rem;
        top: 10px;
        left: 15px;
    }

    .review-title {
        font-size: 1.1rem;
        margin-bottom: 14px;
    }

    .review-text {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 18px;
    }

    /* FAQ Mobile */
    .faq-trigger {
        padding: 18px 16px;
    }

    .faq-question {
        font-size: 0.98rem;
        line-height: 1.35;
        padding-right: 8px;
    }

    .faq-q-icon-wrapper {
        width: 32px;
        height: 32px;
        margin-right: 10px;
        font-size: 0.85rem;
    }

    .faq-content-inner {
        padding: 0 16px 20px;
    }

    .faq-content p {
        font-size: 0.92rem;
        line-height: 1.55;
        padding-top: 12px;
    }
    
    /* Footer Mobile */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    
    .footer-info-col {
        grid-column: span 1;
    }
    
    .mobile-menu-legal {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-top: 20px;
        padding-top: 16px;
        border-top: 1px dashed rgba(161, 136, 127, 0.25);
        width: 100%;
    }
    
    .mobile-menu-legal a {
        font-family: var(--font-sans);
        font-size: 0.85rem;
        font-weight: 500;
        color: var(--text-muted);
        text-decoration: underline;
    }
    
    .mobile-menu-legal a:hover {
        color: var(--primary);
    }
    
    .mobile-menu-legal span {
        color: rgba(161, 136, 127, 0.4);
        font-size: 0.8rem;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .footer-bottom {
        padding: 24px 0 75px 0; /* Extra space so floating review badge never covers links */
    }
    
    .header-phone {
        margin-right: 15px;
        font-size: 1.2rem;
    }
    
    .header-phone .phone-number {
        display: none;
    }
    
    .mobile-phone-cta {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        width: 100%;
        padding: 12px;
        border: 2px solid var(--primary);
        color: var(--text-main);
        font-weight: 600;
        border-radius: 30px;
        margin-top: 20px;
        font-size: 0.95rem;
        transition: var(--transition-normal);
    }

    .mobile-phone-cta:hover {
        background-color: var(--primary);
        color: var(--white);
    }
}

/* Small Smartphone Viewports (max-width: 480px e.g. Galaxy S21 FE, iPhone SE) */
@media (max-width: 480px) {
    section {
        padding: 50px 0;
    }

    .section-container {
        padding: 0 16px;
    }

    .section-tag {
        font-size: 0.75rem;
        letter-spacing: 1.5px;
    }

    .section-title {
        font-size: clamp(1.5rem, 6.5vw, 1.95rem);
        margin-bottom: 12px;
    }

    .section-subtitle {
        font-size: 0.92rem;
        margin-bottom: 36px;
    }

    /* Cards */
    .sorten-card .card-content {
        padding: 20px 16px;
    }

    .card-content h3 {
        font-size: 1.25rem;
    }

    .card-list li {
        font-size: 0.88rem;
    }

    .fairness-card {
        padding: 20px 14px;
    }

    .fairness-chip {
        padding: 8px 12px;
    }

    .fairness-chip span strong {
        font-size: 0.88rem;
    }

    .fairness-chip span {
        font-size: 0.82rem;
    }

    .review-card {
        padding: 20px 14px;
    }

    .faq-trigger {
        padding: 14px 12px;
    }

    .faq-question {
        font-size: 0.92rem;
    }

    .faq-q-icon-wrapper {
        width: 28px;
        height: 28px;
        margin-right: 8px;
        font-size: 0.78rem;
    }

    .faq-content-inner {
        padding: 0 12px 16px;
    }

    /* Floating Google Review Badge on Small Screens */
    .floating-reviews-badge {
        bottom: 12px;
        left: 12px;
        padding: 6px 12px 6px 8px;
        gap: 8px;
        max-width: calc(100vw - 24px);
    }
    
    .floating-badge-icon {
        width: 26px;
        height: 26px;
        font-size: 0.85rem;
    }
    
    .floating-score {
        font-size: 0.82rem;
    }

    .floating-stars-icons {
        font-size: 0.62rem;
    }
    
    .floating-count {
        font-size: 0.65rem;
    }
}

/* 2-Click Privacy-Friendly Google Maps */
.maps-2click-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.maps-placeholder {
    background: rgba(255, 255, 255, 0.04);
    border: 1px dashed rgba(194, 143, 90, 0.5);
    border-radius: var(--border-radius-md);
    padding: 16px 12px;
    text-align: center;
    backdrop-filter: blur(4px);
    transition: var(--transition-normal);
    width: 100%;
    box-sizing: border-box;
}

.maps-placeholder:hover {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
}

.maps-placeholder-icon {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 6px;
}

.maps-placeholder-text {
    font-size: 0.78rem;
    line-height: 1.35;
    color: var(--text-light);
    margin-bottom: 12px;
}

.maps-placeholder-text strong {
    color: var(--white);
    font-size: 0.85rem;
}

.maps-placeholder-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    width: 100%;
}

.btn-maps-load {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50px;
    padding: 8px 18px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 200px;
}

.btn-maps-load:hover {
    background-color: var(--primary-hover);
    transform: translateY(-1px);
}

.btn-maps-external {
    font-size: 0.78rem;
    color: var(--primary);
    text-decoration: underline;
    opacity: 0.9;
    transition: var(--transition-fast);
}

.btn-maps-external:hover {
    color: var(--white);
    opacity: 1;
}

.maps-iframe-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* Legal Subpages (Impressum & Datenschutz) */
.legal-header {
    background-color: var(--bg-primary);
    border-bottom: 1px solid rgba(161, 136, 127, 0.15);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 14px 0;
}

.legal-header .logo {
    color: var(--text-main);
}

.legal-header .logo-sub {
    color: var(--text-muted);
}

.legal-hero {
    padding: 45px 0 30px 0;
    background: linear-gradient(180deg, var(--accent-light) 0%, var(--bg-primary) 100%);
    border-bottom: 1px solid rgba(161, 136, 127, 0.12);
}

.legal-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 12px;
    transition: var(--transition-fast);
}

.legal-breadcrumb:hover {
    color: var(--primary-hover);
    transform: translateX(-3px);
}

.legal-hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 2.8rem);
    color: var(--text-main);
    margin-bottom: 8px;
    line-height: 1.15;
}

.legal-meta {
    font-family: var(--font-sans);
    font-size: 0.92rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.legal-section {
    padding: 36px 0 60px 0;
}

.legal-card {
    background-color: var(--bg-card);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(161, 136, 127, 0.15);
    padding: 40px 44px;
    max-width: 900px;
    margin: 0 auto;
    font-family: var(--font-sans);
    width: 100%;
    box-sizing: border-box;
}

.legal-card h2 {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-main);
    margin: 32px 0 14px 0;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--accent-light);
}

.legal-card h2:first-of-type {
    margin-top: 0;
}

.legal-card h3 {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-main);
    margin: 22px 0 8px 0;
}

.legal-card p, .legal-card li {
    font-family: var(--font-sans);
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.legal-card strong {
    color: var(--text-main);
    font-weight: 600;
}

.legal-card ul {
    margin-left: 20px;
    margin-bottom: 16px;
}

.legal-card li {
    margin-bottom: 8px;
}

.legal-card a {
    color: var(--primary-hover);
    text-decoration: underline;
    font-weight: 500;
}

.legal-card a:hover {
    color: var(--text-main);
}

.legal-highlight-box {
    background-color: var(--accent-light);
    border-left: 4px solid var(--primary);
    border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
    padding: 16px 18px;
    margin: 20px 0;
}

.legal-highlight-box p {
    margin-bottom: 0;
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.92rem;
}

@media (max-width: 768px) {
    .legal-card {
        padding: 24px 18px;
    }
    .legal-hero {
        padding: 30px 0 20px 0;
    }
}

/* Floating Google Review Badge */
.floating-reviews-badge {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 99999;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #FFFFFF;
    border: 1px solid rgba(194, 143, 90, 0.35);
    border-radius: 50px;
    padding: 8px 18px 8px 10px;
    box-shadow: 0 8px 30px rgba(62, 39, 35, 0.18);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(20px);
    transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    cursor: pointer;
    text-decoration: none;
}

.floating-reviews-badge.visible {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
}

.floating-reviews-badge:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 35px rgba(62, 39, 35, 0.25);
    border-color: var(--primary);
}

.floating-badge-icon {
    width: 32px;
    height: 32px;
    background: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    color: #4285F4; /* Google Blue */
    font-size: 1.05rem;
    flex-shrink: 0;
}

.floating-badge-info {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.floating-badge-stars {
    display: flex;
    align-items: center;
    gap: 6px;
}

.floating-score {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-main);
}

.floating-stars-icons {
    color: var(--star-gold);
    font-size: 0.7rem;
    display: flex;
    gap: 1.5px;
}

.floating-count {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 2px;
}

@media (max-width: 768px) {
    .floating-reviews-badge {
        bottom: 16px;
        left: 16px;
        padding: 6px 12px 6px 8px;
        gap: 8px;
    }
    
    