.inventory-phone-content {
    overflow: hidden; /* Geen scroll mogelijk */
    height: 100%;
}
:root {
    /* Primary Colors */
    --primary-color: #FF7800;
    --primary-dark: #E5691A;
    --primary-light: #FF9A33;
    
    /* Light Theme */
    --bg-light: #FFFFFF;
    --bg-secondary-light: #F8F9FA;
    --text-primary-light: #1A1A1A;
    --text-secondary-light: #6B7280;
    --border-light: #E5E7EB;
    --card-light: #FFFFFF;
    --shadow-light: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    
    /* Dark Theme */
    --bg-dark: #0A0A0A;
    --bg-secondary-dark: #1A1A1A;
    --text-primary-dark: #FFFFFF;
    --text-secondary-dark: #9CA3AF;
    --border-dark: #374151;
    --card-dark: #1F1F1F;
    --shadow-dark: 0 4px 6px -1px rgba(0, 0, 0, 0.4);
    
    /* Current Theme (defaults to light) */
    --bg-primary: var(--bg-light);
    --bg-secondary: var(--bg-secondary-light);
    --text-primary: var(--text-primary-light);
    --text-secondary: var(--text-secondary-light);
    --border-color: var(--border-light);
    --card-bg: var(--card-light);
    --shadow: var(--shadow-light);
    
    /* Layout */
    --container-width: 1200px;
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --navbar-height: 80px;
}

/* Dark Theme Variables */
[data-theme="dark"] {
    --bg-primary: var(--bg-dark);
    --bg-secondary: var(--bg-secondary-dark);
    --text-primary: var(--text-primary-dark);
    --text-secondary: var(--text-secondary-dark);
    --border-color: var(--border-dark);
    --card-bg: var(--card-dark);
    --shadow: var(--shadow-dark);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    transition: var(--transition);
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--navbar-height);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: var(--transition);
}

[data-theme="dark"] .navbar {
    background: rgba(10, 10, 10, 0.95);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    text-decoration: none;
}

.logo i {
    font-size: 1.75rem;
}


/* Contact Button */
.contact-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    text-decoration: none;
    border-radius: var(--border-radius-lg);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 120, 0, 0.3);
    white-space: nowrap;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 120, 0, 0.4);
    color: white;
}

.contact-btn i {
    font-size: 1rem;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .contact-btn span {
        display: none;
    }
    
    .contact-btn {
        padding: 0.75rem;
        border-radius: 50%;
        width: 48px;
        height: 48px;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-menu.active .contact-btn {
        width: auto;
        padding: 0.875rem 1.5rem;
        border-radius: var(--border-radius-lg);
        margin-bottom: 1rem;
    }
    
    .nav-menu.active .contact-btn span {
        display: inline;
    }
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

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

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.language-toggle,
.theme-toggle,
.mobile-menu-toggle {
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.language-toggle:hover,
.theme-toggle:hover,
.mobile-menu-toggle:hover {
    background: var(--bg-secondary);
    color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: var(--border-radius-lg);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    box-shadow: 0 4px 15px rgba(255, 120, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 120, 0, 0.4);
}

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

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

/* Hero Section */
.hero {
    padding: calc(var(--navbar-height) + 4rem) 0 6rem;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(255,120,0,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>') center/cover;
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    max-width: 600px;
}

.hero h1 {
    background: linear-gradient(135deg, var(--text-primary), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    font-size: 50px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
    padding: 2rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.stat {
    text-align: center;
}

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

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

/* Phone Mockup */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    width: 320px;
    height: 640px;
    background: linear-gradient(145deg, #1a1a1a, #2d2d2d);
    border-radius: 40px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 5px;
    background: #333;
    border-radius: 10px;
    z-index: 1;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
}

/* Features Section */
.features-section {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.feature-card {
    background: var(--card-bg);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .feature-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

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

.feature-card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

/* Inventory Demo Section */
.inventory-demo {
    padding: 6rem 0;
    background: var(--bg-primary);
}

.demo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.demo-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.demo-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
}

.demo-feature i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.demo-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.inventory-phone-mockup {
    width: 350px;
    height: 700px;
    background: linear-gradient(145deg, #1a1a1a, #2d2d2d);
    border-radius: 40px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.inventory-phone-mockup::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 5px;
    background: #333;
    border-radius: 10px;
    z-index: 1;
}

.inventory-phone-content {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    border-radius: 30px;
    padding: 30px 20px;
    color: white;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.inventory-app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.app-header-title h3 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.app-header-title p {
    color: #9CA3AF;
    font-size: 0.875rem;
    margin: 0;
}

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

.app-header-icons i {
    color: #9CA3AF;
    font-size: 1.25rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.app-header-icons i:hover {
    color: var(--primary-color);
}

.inventory-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    flex: 1;
    overflow: hidden; /* Geen scroll in grid */
}

.inventory-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 15px;
    transition: var(--transition);
    position: relative;
    backdrop-filter: blur(10px);
}

.inventory-item:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 120, 0, 0.3);
}

.inventory-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(255, 120, 0, 0.3);
}

.item-content h4 {
    color: white;
    margin-bottom: 1rem;
    margin-top: 0.5rem;
    font-size: 1rem;
}

.quantity-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.qty-btn {
    width: 32px;
    height: 32px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.qty-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.1);
}

.qty-display {
    font-weight: 600;
    color: white;
    font-size: 1.1rem;
}

/* Recipes Section */
.recipes-section {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.recipe-demo {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    margin-top: 3rem;
}

.recipe-input,
.recipe-output {
    background: var(--card-bg);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.recipe-input h3 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.ingredient-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.ingredient-tag {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.preferences {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.preference-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
}

.preference-item i {
    color: var(--primary-color);
}

.recipe-arrow {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 8px 25px rgba(255, 120, 0, 0.3);
}

.recipe-card-large {
    text-align: left;
}

.recipe-header {
    margin-bottom: 1rem;
}

.recipe-header h3 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.recipe-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.recipe-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.recipe-meta i {
    color: var(--primary-color);
}

/* Customization Section */
.customization-section {
    padding: 6rem 0;
    background: var(--bg-primary);
}

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

.color-options {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.color-option {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    border: 3px solid transparent;
    position: relative;
}

.color-option:hover,
.color-option.active {
    transform: scale(1.1);
    border-color: var(--border-color);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.color-option.orange { background: #FF7800; }
.color-option.blue { background: #007AFF; }
.color-option.purple { background: #9C27B0; }
.color-option.green { background: #4CAF50; }
.color-option.red { background: #F44336; }
.color-option.teal { background: #009688; }

.theme-preview {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.preview-card {
    width: 240px;
    background: var(--card-bg);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.preview-header {
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.preview-content {
    padding: 1.5rem;
}

.preview-content h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-align: center;
}

.preview-lines {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.preview-line {
    height: 8px;
    background: var(--border-color);
    border-radius: 4px;
}

.preview-line.short {
    width: 60%;
}

.preview-button {
    height: 32px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 16px;
}

.preview-card.dark .preview-content {
    background: #1F1F1F;
    color: white;
}

.preview-card.dark .preview-line {
    background: #374151;
}

/* Download Section */
.download-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    position: relative;
    overflow: hidden;
}

.download-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle cx="100" cy="100" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="300" cy="200" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="500" cy="150" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="700" cy="250" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="900" cy="100" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    opacity: 0.3;
}

.download-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.download-text h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.download-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.download-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

.download-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.download-feature i {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
}

.app-stores {
    display: flex;
    gap: 1rem;
}

.store-link img {
    height: 60px;
    transition: var(--transition);
}

.store-link:hover img {
    transform: translateY(-2px);
}

.app-showcase {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 600px;
}

.showcase-phone {
    width: 280px;
    height: 560px;
    background: linear-gradient(145deg, #1a1a1a, #2d2d2d);
    border-radius: 35px;
    padding: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    position: absolute;
    transition: transform 0.3s ease;
}

.showcase-phone.primary {
    z-index: 2;
    left: -15px;
}

.showcase-phone.secondary {
    z-index: 1;
    right: 25px;
}

.showcase-phone:hover {
    transform: translateY(-10px);
}

.showcase-phone::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: #333;
    border-radius: 10px;
    z-index: 1;
}

.showcase-phone .phone-screen {
    border-radius: 25px;
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    color: var(--text-secondary);
    margin-top: 1rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.link-group h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.link-group a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    color: var(--text-secondary);
    margin: 0;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition);
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content,
    .demo-content,
    .download-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-visual,
    .demo-visual,
    .download-visual {
        order: -1;
        text-align: center;
    }
    
    .recipe-demo {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .recipe-arrow {
        justify-self: center;
        transform: rotate(90deg);
    }
    
    .inventory-phone-mockup {
        width: 300px;
        height: 600px;
    }
    
    .app-showcase {
        height: 450px;
    }
    
    .showcase-phone.primary {
        left: -30px;
    }
    
    .showcase-phone.secondary {
        right: -30px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        border-top: 1px solid var(--border-color);
    }
    
    [data-theme="dark"] .nav-menu {
        background: rgba(10, 10, 10, 0.95);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .inventory-phone-mockup {
        width: 280px;
        height: 560px;
    }
    
    .inventory-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .theme-preview {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .phone-mockup {
        width: 280px;
        height: 560px;
        padding: 15px;
    }
    
    .app-showcase {
        height: 500px;
    }
    
    .showcase-phone {
        width: 240px;
        height: 480px;
    }
    
    .showcase-phone.primary {
        left: -25px;
    }
    
    .showcase-phone.secondary {
        right: -25px;
    }
    
    .app-screenshot {
        border-radius: 25px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero {
        padding: calc(var(--navbar-height) + 2rem) 0 4rem;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .features-section,
    .inventory-demo,
    .recipes-section,
    .customization-section,
    .download-section {
        padding: 4rem 0;
    }
    
    .phone-mockup {
        width: 240px;
        height: 480px;
        padding: 15px;
    }
    
    .app-showcase {
        height: 400px;
        flex-direction: column;
        gap: 2rem;
    }
    
    .showcase-phone {
        width: 200px;
        height: 400px;
        position: relative;
        left: 0 !important;
        right: 0 !important;
    }
    
    .showcase-phone.secondary {
        display: none;
    }
    
    .showcase-phone:hover {
        transform: translateY(-5px) !important;
    }
    
    .app-screenshot {
        border-radius: 20px;
    }
    
    .inventory-phone-mockup {
        width: 240px;
        height: 480px;
        padding: 15px;
    }
    
    .inventory-phone-content {
        padding: 20px 15px;
    }
    
    .inventory-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .inventory-item {
        padding: 12px;
    }
    
    .app-header-title h3 {
        font-size: 1rem;
    }
    
    .app-header-title p {
        font-size: 0.75rem;
    }
    
    .demo-features {
        grid-template-columns: 1fr;
    }
    
    .app-stores {
        flex-direction: column;
        align-items: center;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

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

.scale-in {
    transform: scale(0.95);
    animation: scaleIn 0.5s ease forwards;
}

@keyframes scaleIn {
    to {
        transform: scale(1);
    }
}

/* Utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }




/* Terms Page Styles */
.terms-section {
    padding: calc(var(--navbar-height) + 3rem) 0 6rem;
    background: var(--bg-primary);
    min-height: 100vh;
}

.terms-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.terms-header h1 {
    background: linear-gradient(135deg, var(--text-primary), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    font-size: clamp(2rem, 4vw, 3rem);
}

.terms-header p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.terms-content {
    max-width: 1000px;
    margin: 0 auto;
}

/* Table of Contents */
.terms-toc {
    background: var(--card-bg);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    margin-bottom: 3rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.terms-toc h3 {
    color: var(--text-primary);
    margin-bottom: 2rem;
    font-size: 1.5rem;
    text-align: center;
}

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

.toc-grid a {
    display: block;
    padding: 1rem 1.5rem;
    background: var(--bg-secondary);
    border-radius: var(--border-radius);
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid transparent;
    font-weight: 500;
}

.toc-grid a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 120, 0, 0.3);
}

/* Terms Sections */
.terms-sections {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.terms-item {
    background: var(--card-bg);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    scroll-margin-top: calc(var(--navbar-height) + 2rem);
}

.terms-item h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border-color);
}

.terms-item h3 {
    color: var(--text-primary);
    margin: 2rem 0 1rem;
    font-size: 1.25rem;
}

.terms-item p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.terms-item ul,
.terms-item ol {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.terms-item li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.terms-item li strong {
    color: var(--text-primary);
}

/* Warning and Important Boxes */
.warning-box,
.important-box {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin: 2rem 0;
    border-left: 4px solid;
}

.warning-box {
    background: rgba(255, 152, 0, 0.1);
    border-left-color: #FF9800;
}

.important-box {
    background: rgba(244, 67, 54, 0.1);
    border-left-color: #F44336;
}

[data-theme="dark"] .warning-box {
    background: rgba(255, 152, 0, 0.15);
}

[data-theme="dark"] .important-box {
    background: rgba(244, 67, 54, 0.15);
}

.warning-icon,
.important-icon {
    font-size: 1.25rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.warning-icon {
    color: #FF9800;
}

.important-icon {
    color: #F44336;
}

.warning-box p,
.important-box p {
    margin: 0;
    color: var(--text-primary);
    font-weight: 500;
}

/* Terms Date */
.terms-date {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.terms-date p {
    color: var(--text-secondary);
    font-style: italic;
    margin: 0;
}

/* Responsive Design for Terms */
@media (max-width: 768px) {
    .terms-section {
        padding: calc(var(--navbar-height) + 2rem) 0 4rem;
    }
    
    .terms-header {
        margin-bottom: 2rem;
    }
    
    .terms-toc {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .toc-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .toc-grid a {
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .terms-item {
        padding: 2rem;
    }
    
    .terms-item h2 {
        font-size: 1.5rem;
    }
    
    .terms-item h3 {
        font-size: 1.125rem;
    }
    
    .warning-box,
    .important-box {
        padding: 1.25rem;
        gap: 0.75rem;
    }
    
    .warning-icon,
    .important-icon {
        font-size: 1.125rem;
    }
    
    .terms-sections {
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .terms-toc {
        padding: 1.5rem;
    }
    
    .terms-item {
        padding: 1.5rem;
    }
    
    .terms-item ul,
    .terms-item ol {
        padding-left: 1rem;
    }
    
    .warning-box,
    .important-box {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .warning-icon,
    .important-icon {
        margin-top: 0;
    }
}



/* Contact Page Styles */
.contact-section {
    padding: calc(var(--navbar-height) + 3rem) 0 6rem;
    background: var(--bg-primary);
    min-height: 100vh;
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-header h1 {
    background: linear-gradient(135deg, var(--text-primary), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    font-size: clamp(2rem, 4vw, 3rem);
}

.contact-header p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

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

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 5rem;
}

/* Contact Info Cards */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    background: var(--card-bg);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .contact-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

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

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

.contact-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.contact-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    transition: var(--transition);
}

.contact-link:hover {
    color: var(--primary-dark);
}

.contact-address {
    font-style: normal;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Contact Hours */
.contact-hours {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: var(--bg-secondary);
    border-radius: var(--border-radius);
    color: var(--text-primary);
}

/* Contact Form */
.contact-form-container {
    display: flex;
    align-items: flex-start;
}

.contact-form-card {
    background: var(--card-bg);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    width: 100%;
}

.contact-form-card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.contact-form-card > p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    background: var(--bg-primary);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 120, 0, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group textarea::placeholder {
    color: var(--text-secondary);
}

/* Checkbox Styling */
.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    line-height: 1.5;
    font-size: 0.9rem;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.checkbox-label span:last-child {
    color: var(--text-secondary);
}

.checkbox-label a {
    color: var(--primary-color);
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

/* Submit Button */
.contact-submit {
    margin-top: 1rem;
    justify-content: center;
    gap: 0.75rem;
}

/* Success Message */
.form-success {
    text-align: center;
    padding: 3rem 2rem;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.form-success h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.form-success p {
    color: var(--text-secondary);
    margin: 0;
}

/* FAQ Section */
.contact-faq {
    background: var(--card-bg);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.contact-faq h3 {
    color: var(--text-primary);
    margin-bottom: 2rem;
    font-size: 1.75rem;
    text-align: center;
}

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

.faq-item {
    background: var(--bg-secondary);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    transition: var(--transition);
}

.faq-item:hover {
    transform: translateY(-2px);
}

.faq-item h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-info {
        order: 2;
    }
    
    .contact-form-container {
        order: 1;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: calc(var(--navbar-height) + 2rem) 0 4rem;
    }
    
    .contact-header {
        margin-bottom: 2rem;
    }
    
    .contact-grid {
        gap: 2rem;
        margin-bottom: 3rem;
    }
    
    .contact-card,
    .contact-form-card,
    .contact-faq {
        padding: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-icon,
    .success-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .contact-card,
    .contact-form-card,
    .contact-faq {
        padding: 1.5rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.875rem;
    }
    
    .checkbox-label {
        font-size: 0.85rem;
    }
    
    .checkmark {
        width: 18px;
        height: 18px;
    }
}


/* FAQ Page Styles */
.faq-section {
    padding: calc(var(--navbar-height) + 3rem) 0 6rem;
    background: var(--bg-primary);
    min-height: 100vh;
}

.faq-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-header h1 {
    background: linear-gradient(135deg, var(--text-primary), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    font-size: clamp(2rem, 4vw, 3rem);
}

.faq-header p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.faq-content {
    max-width: 1000px;
    margin: 0 auto;
}

/* Search and Filter Section */
.faq-search-section {
    background: var(--card-bg);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    margin-bottom: 3rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.faq-search-container {
    margin-bottom: 2rem;
}

.search-box {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.search-box i.fa-search {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    font-size: 1.125rem;
}

.search-box input {
    width: 100%;
    padding: 1.25rem 1.25rem 1.25rem 3.5rem;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    background: var(--bg-primary);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1.125rem;
    transition: var(--transition);
}

.search-box input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 120, 0, 0.1);
}

.search-box input::placeholder {
    color: var(--text-secondary);
}

.clear-search {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.clear-search:hover {
    color: var(--primary-color);
    background: var(--bg-secondary);
}

/* Categories */
.faq-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.category-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--border-color);
    background: var(--bg-secondary);
    color: var(--text-primary);
    border-radius: var(--border-radius-lg);
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    white-space: nowrap;
}

.category-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.category-btn.active {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(255, 120, 0, 0.3);
}

/* FAQ Items */
.faq-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 4rem;
}

.faq-item {
    background: var(--card-bg);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

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

[data-theme="dark"] .faq-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.faq-item.hidden {
    display: none;
}

.faq-item.highlighted {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 120, 0, 0.1);
}

.faq-question {
    padding: 1.75rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--card-bg);
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

.faq-question:hover {
    background: var(--bg-secondary);
}

.faq-question h3 {
    color: var(--text-primary);
    margin: 0;
    font-size: 1.125rem;
    font-weight: 600;
    flex: 1;
    padding-right: 1rem;
}

.faq-question i {
    color: var(--primary-color);
    font-size: 1.25rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question {
    border-bottom-color: var(--border-color);
    background: var(--bg-secondary);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: var(--card-bg);
}

.faq-item.active .faq-answer {
    padding: 1.5rem 2rem 2rem;
    max-height: 500px;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--card-bg);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
    margin-bottom: 3rem;
}

.no-results-icon {
    width: 80px;
    height: 80px;
    background: var(--bg-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--text-secondary);
}

.no-results h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.no-results p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

/* Contact Section */
.faq-contact-section {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: var(--border-radius-lg);
    padding: 3rem 2rem;
    text-align: center;
    color: white;
}

.faq-contact-section h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.faq-contact-section p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.faq-contact-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.faq-contact-buttons .btn {
    background: white;
    color: var(--primary-color);
    border: 2px solid white;
}

.faq-contact-buttons .btn:hover {
    background: transparent;
    color: white;
    border-color: white;
}

.faq-contact-buttons .btn-outline {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
}

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

/* Search Highlighting */
.search-highlight {
    background: linear-gradient(120deg, var(--primary-color), var(--primary-light));
    color: white;
    padding: 0.15rem 0.25rem;
    border-radius: 3px;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-section {
        padding: calc(var(--navbar-height) + 2rem) 0 4rem;
    }
    
    .faq-header {
        margin-bottom: 2rem;
    }
    
    .faq-search-section {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .faq-categories {
        gap: 0.5rem;
    }
    
    .category-btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.85rem;
    }
    
    .faq-question {
        padding: 1.5rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 1.25rem 1.5rem 1.75rem;
    }
    
    .faq-contact-section {
        padding: 2.5rem 1.5rem;
    }
    
    .faq-contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .faq-contact-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .faq-search-section {
        padding: 1.5rem;
    }
    
    .search-box input {
        padding: 1rem 1rem 1rem 3rem;
        font-size: 1rem;
    }
    
    .search-box i.fa-search {
        left: 1rem;
        font-size: 1rem;
    }
    
    .faq-categories {
        flex-direction: column;
        align-items: center;
    }
    
    .category-btn {
        width: 100%;
        max-width: 200px;
        text-align: center;
    }
    
    .faq-question {
        padding: 1.25rem;
    }
    
    .faq-question h3 {
        font-size: 0.95rem;
        padding-right: 0.75rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 1rem 1.25rem 1.5rem;
    }
    
    .faq-contact-section {
        padding: 2rem 1.25rem;
    }
    
    .no-results {
        padding: 3rem 1.5rem;
    }
    
    .no-results-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}




/* Landing Page Styles  */

/* Landing Hero Section */
.landing-hero {
    padding: calc(var(--navbar-height) + 2rem) 0 4rem;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    position: relative;
    overflow: hidden;
    min-height: 85vh;
}

.landing-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="landing-grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(255,120,0,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23landing-grid)"/></svg>') center/cover;
    opacity: 0.7;
}

.landing-hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 70vh;
}

.landing-hero-text {
    max-width: 600px;
}

.landing-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(255, 120, 0, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.landing-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-primary), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 40px;
}

.landing-hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.landing-features-preview {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.landing-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.25rem;
    background: var(--card-bg);
    border-radius: 25px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.landing-feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 120, 0, 0.2);
}

.landing-feature-item i {
    color: var(--primary-color);
    font-size: 1.125rem;
}

.landing-feature-item span {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.landing-download-section h3 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.landing-download-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.landing-download-btn {
    transition: var(--transition);
    border-radius: var(--border-radius);
    overflow: hidden;
    display: block;
}

.landing-download-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.landing-download-btn img {
    height: 60px;
    width: auto;
}

.landing-trust-indicators {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.trust-item i {
    color: var(--primary-color);
    font-size: 1rem;
}

/* Hero Visual */
.landing-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.landing-phone-showcase {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.landing-phone-mockup {
    width: 300px;
    height: 600px;
    background: linear-gradient(145deg, #1a1a1a, #2d2d2d);
    border-radius: 40px;
    padding: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.landing-phone-mockup::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 5px;
    background: #333;
    border-radius: 10px;
    z-index: 1;
}

.landing-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-recipe {
    position: absolute;
    font-size: 2rem;
    animation: floatRecipe 8s infinite ease-in-out;
    opacity: 0.7;
}

.floating-recipe:nth-child(1) {
    top: 20%;
    right: -10%;
    animation-delay: 0s;
}

.floating-recipe:nth-child(2) {
    bottom: 30%;
    left: -15%;
    animation-delay: 2s;
}

.floating-recipe:nth-child(3) {
    top: 60%;
    right: -20%;
    animation-delay: 4s;
}

@keyframes floatRecipe {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
        opacity: 1;
    }
}

/* Social Proof Section */
.landing-social-proof {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.review-card {
    background: var(--card-bg);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .review-card:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.review-stars {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.review-stars i {
    color: #FFD700;
    font-size: 1.25rem;
}

.review-card p {
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

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

/* Features Section */
.landing-features {
    padding: 6rem 0;
    background: var(--bg-primary);
}

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

.landing-feature-card {
    background: var(--card-bg);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.landing-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 120, 0, 0.05), transparent);
    transition: left 0.6s;
}

.landing-feature-card:hover::before {
    left: 100%;
}

.landing-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 120, 0, 0.1);
}

.landing-feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    position: relative;
    z-index: 1;
}

.landing-feature-card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.landing-feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* How It Works Section */
.landing-how-it-works {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.how-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 2rem;
    box-shadow: 0 8px 25px rgba(255, 120, 0, 0.3);
}

.step-content h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.step-visual {
    margin-top: 1rem;
}

.step-mockup {
    width: 80px;
    height: 80px;
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: var(--transition);
}

.step-mockup:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.step-mockup i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.step-mockup:hover i {
    color: white;
}

/* App Preview Section */
.landing-app-preview {
    padding: 6rem 0;
    background: var(--bg-primary);
}

.app-preview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.app-preview-text h2 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.app-preview-text p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.preview-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.preview-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-secondary);
}

.preview-feature i {
    color: var(--primary-color);
    font-size: 1.125rem;
    width: 20px;
}

.app-preview-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* CTA Section */
.landing-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    position: relative;
    overflow: hidden;
}

.landing-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle cx="100" cy="100" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="300" cy="200" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="500" cy="150" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="700" cy="250" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="900" cy="100" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.cta-text h2 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.cta-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.cta-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cta-benefit {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-benefit i {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.25rem;
    width: 24px;
}

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

.cta-downloads h3 {
    color: white;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.final-download-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.final-download-buttons .store-link {
    transition: var(--transition);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.final-download-buttons .store-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.final-download-buttons img {
    height: 60px;
    width: auto;
}

.cta-note {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .landing-hero-content,
    .app-preview-content,
    .cta-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .landing-hero-visual,
    .app-preview-visual {
        order: -1;
        text-align: center;
    }
    
    .landing-phone-mockup {
        width: 250px;
        height: 500px;
    }
    
    .how-it-works-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .landing-hero {
        padding: calc(var(--navbar-height) + 1rem) 0 3rem;
        min-height: auto;
    }
    
    .landing-hero h1 {
        font-size: 2.5rem;
    }
    
    .landing-hero p {
        font-size: 1.125rem;
    }
    
    .landing-features-preview {
        flex-direction: column;
        gap: 1rem;
    }
    
    .landing-download-buttons,
    .final-download-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .landing-trust-indicators {
        flex-direction: column;
        gap: 1rem;
    }
    
    .landing-features-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .app-preview-text h2 {
        font-size: 2rem;
    }
    
    .cta-text h2 {
        font-size: 2rem;
    }
    
    .cta-downloads h3 {
        font-size: 1.5rem;
    }
    
    .landing-phone-mockup {
        width: 200px;
        height: 400px;
        padding: 15px;
    }
    
    .floating-recipe {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .landing-hero {
        padding: calc(var(--navbar-height) + 0.5rem) 0 2rem;
    }
    
    .landing-hero h1 {
        font-size: 2rem;
    }
    
    .landing-badge {
        font-size: 0.8rem;
        padding: 0.625rem 1.25rem;
    }
    
    .landing-feature-item {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }
    
    .landing-features,
    .landing-social-proof,
    .landing-how-it-works,
    .landing-app-preview,
    .landing-cta {
        padding: 4rem 0;
    }
    
    .landing-feature-card,
    .review-card {
        padding: 2rem;
    }
    
    .landing-feature-icon,
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-content h3 {
        font-size: 1.25rem;
    }
    
    .app-preview-text h2,
    .cta-text h2 {
        font-size: 1.75rem;
    }
    
    .landing-phone-mockup {
        width: 180px;
        height: 360px;
        padding: 12px;
    }
    
    .cta-benefits {
        gap: 0.75rem;
    }
    
    .final-download-buttons img,
    .landing-download-btn img {
        height: 50px;
    }
}



/* Inventory Page Styles */

/* Inventory Hero Section */
.inventory-hero {
    padding: calc(var(--navbar-height) + 2rem) 0 4rem;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    position: relative;
    overflow: hidden;
    min-height: 85vh;
}

.inventory-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="inventory-grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,120,0,0.06)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23inventory-grid)"/></svg>') center/cover;
    opacity: 0.7;
}

.inventory-hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 70vh;
}

.inventory-hero-text {
    max-width: 600px;
}

.inventory-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
    animation: pulse 2s infinite;
}

.inventory-hero h1 {
    font-size: clamp(0.5rem, 2vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-primary), #4CAF50);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Fix voor te grote inventory items in phone mockup */
.inventory-phone-content .inventory-item {
    padding: 12px !important; /* Was waarschijnlijk 15px of meer */
    border-radius: 12px !important; /* Kleinere border radius */
}

.inventory-phone-content .inventory-badge {
    padding: 3px 6px !important; /* Was waarschijnlijk 4px 8px */
    font-size: 0.65rem !important; /* Kleinere tekst */
    border-radius: 8px !important; /* Kleinere border radius */
}

.inventory-phone-content .item-content h4 {
    font-size: 0.85rem !important; /* Kleinere titel */
    margin-bottom: 0.75rem !important;
    margin-top: 0.25rem !important;
}

.inventory-phone-content .qty-btn {
    width: 28px !important; /* Was waarschijnlijk 32px */
    height: 28px !important;
    font-size: 0.85rem !important;
    border-radius: 6px !important;
}

.inventory-phone-content .qty-display {
    font-size: 0.95rem !important; /* Kleinere tekst */
}

.inventory-phone-content .quantity-controls {
    gap: 0.5rem !important; /* Kleinere ruimte tussen elementen */
}

/* Als de grid zelf te groot is */
.inventory-phone-content .inventory-grid {
    gap: 10px !important; /* Was waarschijnlijk 15px */
}

/* Voor nog kleinere items op mobiel */
@media (max-width: 480px) {
    .inventory-phone-content .inventory-item {
        padding: 10px !important;
    }
    
    .inventory-phone-content .inventory-badge {
        font-size: 0.6rem !important;
        padding: 2px 5px !important;
    }
    
    .inventory-phone-content .item-content h4 {
        font-size: 0.8rem !important;
    }
    
    .inventory-phone-content .qty-btn {
        width: 24px !important;
        height: 24px !important;
        font-size: 0.8rem !important;
    }
}


.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.logo-image {
    height: 40px; /* Pas aan naar gewenste grootte */
    width: auto;
    transition: var(--transition);
    filter: none;
}

/* Logo hover effect */
.logo:hover .logo-image {
    transform: scale(1.05);
}

/* Fallback logo text styling */
.logo-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
}

.logo-text i {
    font-size: 1.75rem;
}

/* Responsive logo */
@media (max-width: 768px) {
    .logo-image {
        height: 35px;
    }
}

@media (max-width: 480px) {
    .logo-image {
        height: 32px;
    }
}

/* Voor als je het logo wilt centreren in mobile menu */
.nav-menu.active .logo {
    justify-content: center;
    margin-bottom: 1rem;
}

.nav-menu a.active {
    color: var(--primary-color);
    font-weight: 600;
}

.nav-menu a.active::after {
    width: 100%;
    background: var(--primary-color);
}

/* Mobile active state */
.nav-menu.active .nav-link.active {
    background: rgba(255, 120, 0, 0.1);
    border-radius: var(--border-radius);
    padding: 0.5rem 1rem;
}

.inventory-hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.inventory-features-preview {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.inventory-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.25rem;
    background: var(--card-bg);
    border-radius: 25px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.inventory-feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.2);
}

.inventory-feature-item i {
    color: #4CAF50;
    font-size: 1.125rem;
}

.inventory-feature-item span {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.inventory-download-section h3 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.inventory-download-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.inventory-download-btn {
    transition: var(--transition);
    border-radius: var(--border-radius);
    overflow: hidden;
    display: block;
}

.inventory-download-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.inventory-download-btn img {
    height: 60px;
    width: auto;
}

/* Hero Visual */
.inventory-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.inventory-phone-showcase {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.inventory-phone-mockup {
    width: 300px;
    height: 600px;
    background: linear-gradient(145deg, #1a1a1a, #2d2d2d);
    border-radius: 40px;
    padding: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.inventory-phone-mockup::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 5px;
    background: #333;
    border-radius: 10px;
    z-index: 1;
}

/* Core Features Section */
.inventory-core-features {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.inventory-core-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.core-feature-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.core-feature {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.core-feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.core-feature-content h3 {
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.core-feature-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.inventory-core-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.inventory-demo-mockup {
    width: 280px;
    height: 560px;
    background: linear-gradient(145deg, #1a1a1a, #2d2d2d);
    border-radius: 35px;
    padding: 15px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.inventory-demo-mockup::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: #333;
    border-radius: 10px;
}

/* Shared Pantry Section */
.inventory-sharing {
    padding: 6rem 0;
    background: var(--bg-primary);
}

.inventory-sharing-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.inventory-sharing-text h2 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.inventory-sharing-text p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
}

.sharing-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.sharing-feature {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.sharing-feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: white;
    flex-shrink: 0;
}

.sharing-feature-content h3 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.sharing-feature-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

.sharing-plans {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.sharing-plan {
    background: var(--card-bg);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

.sharing-plan.premium {
    border-color: var(--primary-color);
    position: relative;
}

.sharing-plan.premium::before {
    content: 'POPULAR';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.plan-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.plan-header h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.plan-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
}

.plan-price span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.plan-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
}

.plan-feature i {
    color: var(--primary-color);
    font-size: 1.125rem;
}

.sharing-demo-mockup {
    width: 413px;
    height: 860px;
    background: linear-gradient(145deg, #1a1a1a, #2d2d2d);
    border-radius: 35px;
    padding: 15px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* Smart Notifications Section */
.inventory-notifications {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.inventory-notifications-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.inventory-notifications-text h2 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.inventory-notifications-text p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-bottom: 3rem;
}

.notification-types {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.notification-type {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--card-bg);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.notification-type:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.notification-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: white;
    flex-shrink: 0;
}

.notification-icon.low-stock {
    background: linear-gradient(135deg, #FF9800, #FFB74D);
}

.notification-icon.expiry {
    background: linear-gradient(135deg, #F44336, #EF5350);
}

.notification-icon.family {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
}

.notification-content h3 {
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.notification-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

.notifications-demo-mockup {
    width: 280px;
    height: 560px;
    background: linear-gradient(145deg, #1a1a1a, #2d2d2d);
    border-radius: 35px;
    padding: 15px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* Shopping List Section */
.inventory-shopping {
    padding: 6rem 0;
    background: var(--bg-primary);
}

.shopping-process {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin: 4rem 0;
}

.shopping-step {
    text-align: center;
    position: relative;
}

.shopping-step::after {
    content: '';
    position: absolute;
    top: 30px;
    right: -50%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    z-index: -1;
}

.shopping-step:last-child::after {
    display: none;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 2rem;
    box-shadow: 0 8px 25px rgba(255, 120, 0, 0.3);
}

.step-content h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.step-mockup {
    width: 200px;
    height: 400px;
    background: linear-gradient(145deg, #1a1a1a, #2d2d2d);
    border-radius: 25px;
    padding: 10px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    margin: 0 auto;
    overflow: hidden;
}

.step-mockup::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #333;
    border-radius: 5px;
}

.shopping-benefits {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 4rem;
}

.shopping-benefit {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.shopping-benefit i {
    color: #4CAF50;
    font-size: 1.25rem;
}

/* Barcode Scanner Section */
.inventory-scanner {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.inventory-scanner-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.inventory-scanner-text h2 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.inventory-scanner-text p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-bottom: 3rem;
}

.scanner-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.scanner-feature {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.scanner-feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2196F3, #64B5F6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: white;
    flex-shrink: 0;
}

.scanner-feature-content h3 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.scanner-feature-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

.scanner-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.scanner-stat {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-bg);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.scanner-stat .stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #2196F3;
    margin-bottom: 0.5rem;
}

.scanner-stat .stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.scanner-demo-mockup {
    width: 413px;
    height: 860px;
    background: linear-gradient(145deg, #1a1a1a, #2d2d2d);
    border-radius: 35px;
    padding: 15px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* Expiry Tracking Section */
.inventory-expiry {
    padding: 6rem 0;
    background: var(--bg-primary);
}

.inventory-expiry-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.inventory-expiry-text h2 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.inventory-expiry-text p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-bottom: 3rem;
}

.expiry-workflow {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.expiry-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.expiry-step-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #9C27B0, #BA68C8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: white;
    flex-shrink: 0;
}

.expiry-step-content h3 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.expiry-step-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

.expiry-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.expiry-benefit {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--card-bg);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.benefit-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: white;
    flex-shrink: 0;
}

.benefit-content h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.benefit-content p {
    color: var(--text-secondary);
    line-height: 1.5;
    font-size: 0.875rem;
}

.expiry-demo-mockup {
    width: 413px;
    height: 860px;
    background: linear-gradient(145deg, #1a1a1a, #2d2d2d);
    border-radius: 35px;
    padding: 15px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    margin-left:20%
}

/* Recipe Integration Section */
.inventory-recipe-integration {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.recipe-integration-modes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin: 4rem 0;
}

.recipe-mode {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.recipe-mode-mockup {
    width: 240px;
    height: 480px;
    background: linear-gradient(145deg, #1a1a1a, #2d2d2d);
    border-radius: 30px;
    padding: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    margin: 0 auto;
}

.recipe-mode-content {
    text-align: center;
}

.recipe-mode-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 1.5rem;
}

.recipe-mode-icon.inventory-mode {
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
}

.recipe-mode-icon.free-mode {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
}

.recipe-mode-content h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.recipe-mode-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.recipe-mode-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.recipe-mode-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.recipe-mode-feature i {
    color: #4CAF50;
    font-size: 1rem;
}

.integration-highlight {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    background: var(--card-bg);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    margin-top: 4rem;
}

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

.integration-content {
    text-align: left;
}

.integration-content h3 {
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
}

.integration-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1.125rem;
}

/* CTA Section */
.inventory-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
    color: white;
    position: relative;
    overflow: hidden;
}

.inventory-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle cx="100" cy="100" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="300" cy="200" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="500" cy="150" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="700" cy="250" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="900" cy="100" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    opacity: 0.3;
}

.inventory-cta-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.inventory-cta-text h2 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.inventory-cta-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.inventory-cta-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.inventory-cta-benefit {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.inventory-cta-benefit i {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.25rem;
    width: 24px;
}

.inventory-final-mockup {
    width: 300px;
    height: 600px;
    background: linear-gradient(145deg, #1a1a1a, #2d2d2d);
    border-radius: 40px;
    padding: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    margin: 0 auto;
}

.inventory-final-download {
    position: relative;
    z-index: 1;
    text-align: center;
}

.inventory-final-download h3 {
    color: white;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.inventory-final-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.inventory-final-buttons .store-link {
    transition: var(--transition);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.inventory-final-buttons .store-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.inventory-final-buttons img {
    height: 60px;
    width: auto;
}

.inventory-cta-note {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .inventory-hero-content,
    .inventory-core-content,
    .inventory-sharing-content,
    .inventory-notifications-content,
    .inventory-scanner-content,
    .inventory-expiry-content,
    .inventory-cta-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .inventory-hero-visual,
    .inventory-core-visual,
    .inventory-sharing-visual,
    .inventory-notifications-visual,
    .inventory-scanner-visual,
    .inventory-expiry-visual {
        order: -1;
        text-align: center;
    }
    
    .shopping-process {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .shopping-step::after {
        display: none;
    }
    
    .recipe-integration-modes {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .integration-highlight {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .inventory-hero {
        padding: calc(var(--navbar-height) + 1rem) 0 3rem;
        min-height: auto;
    }
    
    .inventory-hero h1 {
        font-size: 2.5rem;
    }
    
    .inventory-hero p {
        font-size: 1.125rem;
    }
    
    .inventory-features-preview {
        flex-direction: column;
        gap: 1rem;
    }
    
    .inventory-download-buttons,
    .inventory-final-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .core-feature-list,
    .sharing-features,
    .notification-types,
    .scanner-features,
    .expiry-workflow {
        gap: 1.5rem;
    }
    
    .sharing-plans {
        grid-template-columns: 1fr;
    }
    
    .scanner-stats,
    .expiry-benefits {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .shopping-benefits {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .inventory-cta-benefits {
        align-items: center;
    }
}

@media (max-width: 480px) {
    .inventory-hero {
        padding: calc(var(--navbar-height) + 0.5rem) 0 2rem;
    }
    
    .inventory-hero h1 {
        font-size: 2rem;
    }
    
    .inventory-badge {
        font-size: 0.8rem;
        padding: 0.625rem 1.25rem;
    }
    
    .inventory-feature-item {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }
    
    .inventory-core-features,
    .inventory-sharing,
    .inventory-notifications,
    .inventory-shopping,
    .inventory-scanner,
    .inventory-expiry,
    .inventory-recipe-integration,
    .inventory-cta {
        padding: 4rem 0;
    }
    
    .inventory-phone-mockup,
    .inventory-demo-mockup,
    .sharing-demo-mockup,
    .notifications-demo-mockup,
    .scanner-demo-mockup,
    .expiry-demo-mockup,
    .inventory-final-mockup {
        width: 240px;
        height: 480px;
        padding: 15px;
    }
    
    .step-mockup,
    .recipe-mode-mockup {
        width: 180px;
        height: 360px;
        padding: 8px;
    }
    
    .core-feature,
    .sharing-feature,
    .notification-type,
    .scanner-feature,
    .expiry-step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .integration-highlight {
        padding: 2rem;
    }
    
    .inventory-final-buttons img,
    .inventory-download-btn img {
        height: 50px;
    }
}
/* Footer logo styling */
.footer-logo {
    margin-bottom: 1rem;
}



.footer-logo-image {
    height: 150px; /* Iets kleiner dan header logo */
    width: auto;
    transition: var(--transition);
    filter: none;
}

.footer-logo-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 800;
}

.footer-logo-text i {
    font-size: 1.5rem;
}

/* Footer logo hover effect */
.footer-logo:hover .footer-logo-image {
    transform: scale(1.05);
}

/* Responsive footer logo */
@media (max-width: 768px) {
    .footer-logo-image {
        height: 32px;
    }
    
    .footer-logo-text {
        font-size: 1.125rem;
    }
    
    .footer-logo-text i {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .footer-logo-image {
        height: 28px;
    }
    
    .footer-logo-text {
        font-size: 1rem;
    }
}

/* Link styling voor footer logo */
.footer-brand .logo {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.footer-brand .logo:hover {
    opacity: 0.8;
}

/* Betere mobiele centering voor inventory page */
@media (max-width: 768px) {
    
    /* Center alle feature content */
    .core-feature,
    .sharing-feature,
    .notification-type,
    .scanner-feature,
    .expiry-step {
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 1rem;
    }
    
    /* Center feature icons */
    .core-feature-icon,
    .sharing-feature-icon,
    .notification-icon,
    .scanner-feature-icon,
    .expiry-step-icon {
        align-self: center;
        margin: 0 auto 1rem;
    }
    
    /* Center alle mockups */
    .inventory-core-visual,
    .inventory-sharing-visual,
    .inventory-notifications-visual,
    .inventory-scanner-visual,
    .inventory-expiry-visual,
    .inventory-hero-visual {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    
    /* Center alle phone mockups */
    .inventory-phone-mockup,
    .inventory-demo-mockup,
    .sharing-demo-mockup,
    .notifications-demo-mockup,
    .scanner-demo-mockup,
    .expiry-demo-mockup,
    .inventory-final-mockup {
        margin: 0 auto;
        display: block;
    }
    
    /* Center step mockups in recipe flow */
    .step-mockup {
        margin: 1rem auto 0;
        display: block;
    }
    
    /* Center alle screenshots */
    .app-screenshot {
        display: block;
        margin: 0 auto;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    /* Center sharing plans */
    .sharing-plans {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 300px;
        margin: 0 auto;
    }
    
    /* Center scanner stats */
    .scanner-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 250px;
        margin: 0 auto;
    }
    
    /* Center expiry benefits */
    .expiry-benefits {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 400px;
        margin: 0 auto;
    }
    
    /* Center shopping benefits */
    .shopping-benefits {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        text-align: center;
    }
    
    /* Center shopping process steps */
    .shopping-process {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .shopping-step {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .step-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* Extra kleine screens */
@media (max-width: 480px) {
    
    /* Kleinere phone mockups maar gecentreerd */
    .inventory-phone-mockup,
    .inventory-demo-mockup,
    .sharing-demo-mockup,
    .notifications-demo-mockup,
    .scanner-demo-mockup,
    .expiry-demo-mockup {
        width: 240px;
        height: 480px;
        margin: 0 auto;
    }
    
    .step-mockup {
        width: 180px;
        height: 360px;
        margin: 1rem auto 0;
    }
    
    /* Center feature items */
    .inventory-features-preview {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .inventory-feature-item {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        margin: 0 auto;
    }
    
    /* Center download buttons */
    .inventory-download-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    /* Center hero content */
    .inventory-hero-text {
        text-align: center;
    }
    
    .inventory-download-section {
        text-align: center;
    }
    
    /* Center alle content sections */
    .inventory-sharing-text,
    .inventory-notifications-text,
    .inventory-scanner-text,
    .inventory-expiry-text {
        text-align: center;
    }
    
    /* Center icons in lists */
    .core-feature-list,
    .sharing-features,
    .notification-types,
    .scanner-features,
    .expiry-workflow {
        align-items: center;
    }
}

/* Specifieke fixes voor de getoonde afbeeldingen */
@media (max-width: 768px) {
    /* Fix voor de sharing section met icons */
    .sharing-feature-content,
    .core-feature-content,
    .scanner-feature-content,
    .expiry-step-content {
        text-align: center;
    }
    
    /* Zorg dat alle visuele elementen gecentreerd zijn */
    .inventory-hero-visual,
    .inventory-core-visual,
    .inventory-sharing-visual,
    .inventory-notifications-visual,
    .inventory-scanner-visual,
    .inventory-expiry-visual {
        order: -1; /* Zet visual boven tekst */
        margin-bottom: 2rem;
    }
}

/* Phone screen centering */
.phone-screen {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.phone-screen .app-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Zorg dat alle mockups responsive zijn */
@media (max-width: 768px) {
    .inventory-phone-showcase,
    .inventory-demo-mockup,
    .sharing-demo-mockup,
    .notifications-demo-mockup,
    .scanner-demo-mockup,
    .expiry-demo-mockup {
        transform: none !important; /* Verwijder eventuele transforms die centering verstoren */
    }
}

/* Landing page app preview centering */
@media (max-width: 768px) {
    
    /* Center app preview text op mobiel */
    .app-preview-text {
        text-align: center;
    }
    
    .app-preview-text h2 {
        text-align: center;
    }
    
    .app-preview-text p {
        text-align: center;
        margin: 0 auto 2rem;
        max-width: 600px;
    }
    
    /* Center preview features list */
    .preview-features {
        align-items: center;
        text-align: center;
        justify-content: center;
    }
    
    .preview-feature {
        justify-content: center;
        text-align: center;
        max-width: 250px;
        margin: 0 auto;
    }
    
    /* Center the CTA button */
    .app-preview-text .btn {
        margin: 2rem auto 0;
        display: inline-flex;
    }
    
    /* Center app showcase */
    .app-preview-visual {
        text-align: center;
        justify-content: center;
        order: -1; /* Zet visual boven tekst op mobiel */
        margin-bottom: 2rem;
    }
    
    .app-showcase {
        justify-content: center;
        align-items: center;
    }
}

/* Extra centering voor zeer kleine schermen */
@media (max-width: 480px) {
    
    .app-preview-text {
        padding: 0 1rem;
    }
    
    .preview-features {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .preview-feature {
        width: 100%;
        max-width: 280px;
    }
    
    /* Stack phones verticaal op kleine schermen */
    .app-showcase {
        flex-direction: column;
        gap: 1rem;
        height: auto;
    }
    
    .showcase-phone {
        position: relative !important;
        left: 0 !important;
        right: 0 !important;
        margin: 0 auto;
    }
    
    .showcase-phone.secondary {
        display: none; /* Verberg tweede phone op zeer kleine schermen */
    }
}

/* Center ook andere landing page elementen */
@media (max-width: 768px) {
    
    /* Hero section centering */
    .landing-hero-text {
        text-align: center;
    }
    
    .landing-features-preview {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .landing-download-section {
        text-align: center;
    }
    
    .landing-trust-indicators {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    /* How it works centering */
    .how-step {
        text-align: center;
    }
    
    .step-content {
        text-align: center;
    }
    
    .step-visual {
        display: flex;
        justify-content: center;
    }
    
    /* CTA section centering */
    .cta-text {
        text-align: center;
    }
    
    .cta-benefits {
        align-items: center;
        justify-content: center;
    }
    
    .cta-downloads {
        text-align: center;
    }
    
    .final-download-buttons {
        justify-content: center;
    }
}
/* Specifieke fix voor app preview content layout */
.app-preview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 1024px) {
    .app-preview-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .app-preview-visual {
        order: -1;
    }
}

@media (max-width: 768px) {
    .app-preview-content {
        gap: 2rem;
    }
    
    /* Zorg dat alles in app preview gecentreerd is */
    .app-preview-text * {
        text-align: center;
    }
    
    .preview-features {
        margin: 2rem auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        max-width: 300px;
    }
}


/* Quantity controls naar onderkant tegeltje */
@media (max-width: 768px) {
    
    /* Inventory item als flex container */
    .inventory-item {
        padding: 8px 10px !important;
        border-radius: 12px;
        min-height: 80px !important; /* Vaste minimum hoogte voor consistentie */
        height: 80px !important; /* Vaste hoogte */
        display: flex;
        flex-direction: column;
        position: relative;
    }
    
    /* Item content als flex container */
    .item-content {
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important; /* Ruimte tussen naam en controls */
        height: 100% !important;
        text-align: left !important;
    }
    
    /* Productnaam bovenaan */
    .inventory-item h4 {
        font-size: 0.85rem !important;
        margin: 0 !important; /* Geen margins */
        text-align: left !important;
        font-weight: 600;
        flex-shrink: 0; /* Voorkom inkrimpen */
    }
    
    /* Quantity controls onderaan */
    .quantity-controls {
        gap: 0.4rem !important;
        margin: 0 !important; /* Geen margins */
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        flex-shrink: 0; /* Voorkom inkrimpen */
        margin-top: auto !important; /* Push naar onderkant */
    }
    
    /* Badge positioning behouden */
    .inventory-badge {
        padding: 2px 5px !important;
        font-size: 0.65rem !important;
        border-radius: 6px;
        top: 6px !important;
        right: 6px !important;
        position: absolute;
        z-index: 1;
    }
    
    /* Buttons styling */
    .qty-btn {
        width: 24px !important;
        height: 24px !important;
        font-size: 0.75rem !important;
        border-radius: 5px;
        flex-shrink: 0;
    }
    
    .qty-display {
        font-size: 0.85rem !important;
        font-weight: 600;
        min-width: 20px;
        text-align: center;
        flex-shrink: 0;
    }
}

/* Aanpassingen voor zeer kleine schermen */
@media (max-width: 480px) {
    
    .inventory-item {
        min-height: 75px !important;
        height: 75px !important;
        padding: 6px 8px !important;
    }
    
    .inventory-item h4 {
        font-size: 0.8rem !important;
    }
    
    .qty-btn {
        width: 22px !important;
        height: 22px !important;
        font-size: 0.7rem !important;
    }
    
    .qty-display {
        font-size: 0.8rem !important;
        min-width: 18px;
    }
    
    .quantity-controls {
        gap: 0.3rem !important;
    }
    
    .inventory-badge {
        font-size: 0.6rem !important;
        padding: 1px 4px !important;
        top: 4px !important;
        right: 4px !important;
    }
}

/* Desktop behavior */
@media (min-width: 769px) {
    
    .inventory-item {
        height: auto;
        min-height: auto;
        padding: 15px;
        display: block; /* Reset flex op desktop */
    }
    
    .item-content {
        display: block; /* Reset flex op desktop */
        text-align: left;
        height: auto;
    }
    
    .inventory-item h4 {
        margin-bottom: 1rem;
        margin-top: 0.5rem;
    }
    
    .quantity-controls {
        justify-content: space-between;
        margin-top: 0;
    }
}

/* Landing page app preview centering */
@media (max-width: 768px) {
    
    /* Center app preview text op mobiel */
    .app-preview-text {
        text-align: center;
    }
    
    .app-preview-text h2 {
        text-align: center;
    }
    
    .app-preview-text p {
        text-align: center;
        margin: 0 auto 2rem;
        max-width: 600px;
    }
    
    /* Center preview features list */
    .preview-features {
        align-items: center;
        text-align: center;
        justify-content: center;
    }
    
    .preview-feature {
        justify-content: center;
        text-align: center;
        max-width: 250px;
        margin: 0 auto;
    }
    
    /* Center the CTA button */
    .app-preview-text .btn {
        margin: 2rem auto 0;
        display: inline-flex;
    }
    
    /* Center app showcase */
    .app-preview-visual {
        text-align: center;
        justify-content: center;
        order: -1; /* Zet visual boven tekst op mobiel */
        margin-bottom: 2rem;
    }
    
    .app-showcase {
        justify-content: center;
        align-items: center;
    }
}

/* Extra centering voor zeer kleine schermen */
@media (max-width: 480px) {
    
    .app-preview-text {
        padding: 0 1rem;
    }
    
    .preview-features {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .preview-feature {
        width: 100%;
        max-width: 280px;
    }
    
    /* Stack phones verticaal op kleine schermen */
    .app-showcase {
        flex-direction: column;
        gap: 1rem;
        height: auto;
    }
    
    .showcase-phone {
        position: relative !important;
        left: 0 !important;
        right: 0 !important;
        margin: 0 auto;
    }
    
    .showcase-phone.secondary {
        display: none; /* Verberg tweede phone op zeer kleine schermen */
    }
}

/* Center ook andere landing page elementen */
@media (max-width: 768px) {
    
    /* Hero section centering */
    .landing-hero-text {
        text-align: center;
    }
    
    .landing-features-preview {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .landing-download-section {
        text-align: center;
    }
    
    .landing-trust-indicators {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    /* How it works centering */
    .how-step {
        text-align: center;
    }
    
    .step-content {
        text-align: center;
    }
    
    .step-visual {
        display: flex;
        justify-content: center;
    }
    
    /* CTA section centering */
    .cta-text {
        text-align: center;
    }
    
    .cta-benefits {
        align-items: center;
        justify-content: center;
    }
    
    .cta-downloads {
        text-align: center;
    }
    
    .final-download-buttons {
        justify-content: center;
    }
}

/* Specifieke fix voor app preview content layout */
.app-preview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 1024px) {
    .app-preview-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .app-preview-visual {
        order: -1;
    }
}

@media (max-width: 768px) {
    .app-preview-content {
        gap: 2rem;
    }
    
    /* Zorg dat alles in app preview gecentreerd is */
    .app-preview-text * {
        text-align: center;
    }
    
    .preview-features {
        margin: 2rem auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        max-width: 300px;
    }
}

/* Index page mobile centering and text sizing */
@media (max-width: 768px) {
    
    /* Hero Section */
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-text {
        text-align: center;
        max-width: 100%;
    }
    
    .hero h1 {
        font-size: 2.5rem !important; /* Kleiner dan de huidige 50px */
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }
    
    .hero p {
        font-size: 1.125rem;
        margin-bottom: 2rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-visual {
        order: -1;
        text-align: center;
        justify-content: center;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
        margin: 2rem auto;
        max-width: 400px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    /* Features Section */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .feature-card {
        text-align: center;
        padding: 2rem;
    }
    
    .feature-card h3 {
        font-size: 1.25rem;
    }
    
    .feature-card p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    /* Inventory Demo */
    .demo-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .demo-text {
        text-align: center;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .demo-text h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .demo-text p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .demo-visual {
        order: -1;
        display: flex;
        justify-content: center;
    }
    
    .demo-features {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 300px;
        margin: 2rem auto 0;
    }
    
    .demo-feature {
        justify-content: center;
        text-align: center;
    }
    
    /* Recipe Demo */
    .recipe-demo {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .recipe-input,
    .recipe-output {
        margin: 0 auto;
        max-width: 400px;
    }
    
    .recipe-arrow {
        justify-self: center;
        order: 1;
        transform: rotate(90deg);
        margin: 1rem 0;
    }
    
    .recipe-output {
        order: 2;
    }
    
    .ingredient-tags {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .preferences {
        align-items: center;
        text-align: center;
    }
    
    /* Customization Section */
    .customization-demo {
        text-align: center;
    }
    
    .color-options {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
        margin: 2rem auto;
    }
    
    .theme-preview {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        margin-top: 2rem;
    }
    
    /* Download Section */
    .download-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .download-text {
        text-align: center;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .download-text h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .download-text p {
        font-size: 1.125rem;
        margin-bottom: 2rem;
    }
    
    .download-features {
        align-items: center;
        text-align: center;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .download-feature {
        justify-content: center;
    }
    
    .app-stores {
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .download-visual {
        order: -1;
        display: flex;
        justify-content: center;
    }
    
    /* Section Headers */
    .section-header {
        text-align: center;
        margin-bottom: 3rem;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .section-header h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .section-header p {
        font-size: 1rem;
        line-height: 1.6;
    }
}

/* Extra kleine schermen */
@media (max-width: 480px) {
    
    .hero h1 {
        font-size: 2rem !important; /* Nog kleiner op zeer kleine schermen */
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .demo-text h2,
    .download-text h2 {
        font-size: 1.75rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-card h3 {
        font-size: 1.125rem;
    }
    
    .feature-card p {
        font-size: 0.9rem;
    }
    
    .recipe-input,
    .recipe-output {
        padding: 1.5rem;
        max-width: 350px;
    }
    
    /* Smaller phone mockups */
    .phone-mockup {
        width: 240px;
        height: 480px;
        padding: 15px;
    }
    
    .inventory-phone-mockup {
        width: 240px;
        height: 480px;
        padding: 15px;
    }
    
    .showcase-phone {
        width: 200px;
        height: 400px;
    }
    
    /* Stack showcase phones vertically on very small screens */
    .app-showcase {
        flex-direction: column;
        gap: 1rem;
        height: auto;
    }
    
    .showcase-phone.primary,
    .showcase-phone.secondary {
        position: relative !important;
        left: 0 !important;
        right: 0 !important;
        margin: 0 auto;
    }
    
    .showcase-phone.secondary {
        display: none; /* Hide second phone on very small screens */
    }
}

/* Algemene text sizing improvements */
@media (max-width: 768px) {
    
    /* Zorg dat alle content gecentreerd is */
    .container {
        text-align: center;
    }
    
    /* Reset text-align voor specifieke elementen die links moeten */
    .recipe-card-large,
    .preview-content,
    .demo-features {
        text-align: center;
    }
    
    /* Verbeter button styling op mobiel */
    .btn {
        font-size: 0.95rem;
        padding: 0.875rem 1.75rem;
    }
    
    /* Smaller stat numbers */
    .stat-number {
        font-size: 1.75rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    /* Inventory grid improvements */
    .inventory-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .inventory-item {
        padding: 12px;
    }
    
    .inventory-item h4 {
        font-size: 0.95rem;
    }
    
    /* App header improvements */
    .app-header-title h3 {
        font-size: 1.125rem;
    }
    
    .app-header-title p {
        font-size: 0.85rem;
    }
}

/* Inventory Demo Mobile Improvements */
@media (max-width: 768px) {
    
    /* Groter telefoontje voor inventory demo */
    .inventory-phone-mockup {
        width: 320px !important; /* Groter dan 240px */
        height: 640px !important; /* Proportioneel groter */
        padding: 20px;
        margin: 0 auto;
    }
    
    /* Kleinere header tekst en icons */
    .inventory-app-header {
        padding-bottom: 15px;
        margin-bottom: 20px;
    }
    
    .app-header-title h3 {
        font-size: 1rem !important; /* Kleinere titel */
        margin-bottom: 0.25rem;
    }
    
    .app-header-title p {
        font-size: 0.75rem !important; /* Kleinere subtitle */
        margin: 0;
    }
    
    /* Veel kleinere header icons */
    .app-header-icons {
        gap: 10px;
    }
    
    .app-header-icons i {
        font-size: 1rem !important; /* Kleinere icons */
    }
    
    /* 2x2 Grid voor producten */
    .inventory-grid {
        grid-template-columns: 1fr 1fr !important; /* 2 kolommen */
        gap: 10px !important;
        max-width: none;
        margin: 0;
    }
    
    /* Kleinere inventory items voor 2x2 layout */
    .inventory-item {
        padding: 10px !important;
        border-radius: 12px;
    }
    
    .inventory-item h4 {
        font-size: 0.85rem !important;
        margin-bottom: 0.5rem;
        margin-top: 0.25rem;
    }
    
    /* Kleinere badges */
    .inventory-badge {
        padding: 3px 6px !important;
        font-size: 0.7rem !important;
        border-radius: 8px;
        top: 8px;
        right: 8px;
    }
    
    /* Kleinere quantity controls */
    .qty-btn {
        width: 26px !important;
        height: 26px !important;
        font-size: 0.8rem !important;
        border-radius: 6px;
    }
    
    .qty-display {
        font-size: 0.9rem !important;
        font-weight: 600;
    }
    
    .quantity-controls {
        gap: 0.5rem;
        margin-top: 0.5rem;
    }
    
    /* Zorg dat de phone content goed past */
    .inventory-phone-content {
        padding: 25px 18px !important;
        height: 100%;
        overflow: hidden;
    }
}

/* Extra aanpassingen voor zeer kleine schermen */
@media (max-width: 480px) {
    
    /* Nog steeds grote telefoon behouden */
    .inventory-phone-mockup {
        width: 300px !important;
        height: 600px !important;
        padding: 18px;
    }
    
    /* Nog kleinere tekst voor zeer kleine schermen */
    .app-header-title h3 {
        font-size: 0.95rem !important;
    }
    
    .app-header-title p {
        font-size: 0.7rem !important;
    }
    
    .inventory-item {
        padding: 8px !important;
    }
    
    .inventory-item h4 {
        font-size: 0.8rem !important;
    }
    
    .inventory-badge {
        font-size: 0.65rem !important;
        padding: 2px 5px !important;
    }
    
    .qty-btn {
        width: 24px !important;
        height: 24px !important;
        font-size: 0.75rem !important;
    }
    
    .qty-display {
        font-size: 0.85rem !important;
    }
    
    .inventory-grid {
        gap: 8px !important;
    }
}

/* Zorg dat op desktop de originele layout behouden blijft */
@media (min-width: 769px) {
    .inventory-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .inventory-phone-mockup {
        width: 350px;
        height: 700px;
        padding: 20px;
    }
}

/* Specifieke fixes voor inventory demo sectie */
@media (max-width: 768px) {
    
    /* Demo visual centering */
    .demo-visual {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 2rem 0;
    }
    
    /* Zorg dat de hele demo content gecentreerd is */
    .demo-content {
        text-align: center;
    }
    
    .demo-text {
        max-width: 600px;
        margin: 0 auto 2rem;
    }
    
    /* Demo features in center */
    .demo-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        max-width: 400px;
        margin: 2rem auto 0;
    }
}
/* Inventory Demo - Kortere blokjes en links uitgelijnde tekst */
@media (max-width: 768px) {
    
    /* Kortere inventory items */
    .inventory-item {
        padding: 8px 10px !important; /* Minder padding voor kortere items */
        border-radius: 12px;
        min-height: auto; /* Geen vaste hoogte */
        height: auto; /* Flexibele hoogte */
    }
    
    /* Productnamen links uitlijnen */
    .inventory-item h4 {
        font-size: 0.85rem !important;
        margin-bottom: 0.4rem !important; /* Minder ruimte onder titel */
        margin-top: 0.2rem !important; /* Minder ruimte boven titel */
        text-align: left !important; /* Links uitlijnen */
        font-weight: 600;
    }
    
    /* Item content links uitlijnen */
    .item-content {
        text-align: left !important; /* Hele content links uitlijnen */
        display: flex;
        flex-direction: column;
    }
    
    /* Quantity controls ook links uitlijnen maar met wat ruimte */
    .quantity-controls {
        gap: 0.4rem;
        margin-top: 0.4rem !important; /* Minder ruimte boven controls */
        display: flex;
        align-items: center;
        justify-content: flex-start; /* Links uitlijnen */
    }
    
    /* Kleinere quantity buttons voor compactere look */
    .qty-btn {
        width: 24px !important;
        height: 24px !important;
        font-size: 0.75rem !important;
        border-radius: 5px;
    }
    
    .qty-display {
        font-size: 0.85rem !important;
        font-weight: 600;
        min-width: 20px;
        text-align: center;
    }
    
    /* Badge positioning aangepast voor kortere items */
    .inventory-badge {
        padding: 2px 5px !important;
        font-size: 0.65rem !important;
        border-radius: 6px;
        top: 6px !important;
        right: 6px !important;
    }
    
    /* Grid spacing optimaliseren voor kortere items */
    .inventory-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 8px !important;
        grid-auto-rows: auto; /* Automatische rij hoogte */
    }
    
    /* Phone content aanpassen voor betere verdeling */
    .inventory-phone-content {
        padding: 20px 15px !important;
        height: 100%;
        overflow: hidden;
        display: flex;
        flex-direction: column;
    }
    
    /* Header compacter maken */
    .inventory-app-header {
        padding-bottom: 12px !important;
        margin-bottom: 15px !important;
        flex-shrink: 0;
    }
    
    /* Grid container flexibeler maken */
    .inventory-grid {
        flex: 1;
        display: grid;
        align-content: start; /* Items vanaf bovenkant */
    }
}

/* Aanpassingen voor zeer kleine schermen */
@media (max-width: 480px) {
    
    .inventory-item {
        padding: 6px 8px !important; /* Nog compacter */
    }
    
    .inventory-item h4 {
        font-size: 0.8rem !important;
        margin-bottom: 0.3rem !important;
        margin-top: 0.1rem !important;
    }
    
    .quantity-controls {
        margin-top: 0.3rem !important;
        gap: 0.3rem;
    }
    
    .qty-btn {
        width: 22px !important;
        height: 22px !important;
        font-size: 0.7rem !important;
    }
    
    .qty-display {
        font-size: 0.8rem !important;
    }
    
    .inventory-badge {
        font-size: 0.6rem !important;
        padding: 1px 4px !important;
        top: 5px !important;
        right: 5px !important;
    }
}

/* Desktop behavior behouden */
@media (min-width: 769px) {
    
    .inventory-item {
        padding: 15px;
        text-align: left; /* Ook op desktop links uitlijnen */
    }
    
    .item-content {
        text-align: left;
    }
    
    .inventory-item h4 {
        text-align: left;
        margin-bottom: 1rem;
        margin-top: 0.5rem;
    }
    
    .quantity-controls {
        justify-content: space-between; /* Op desktop space-between behouden */
    }
}

/* FAQ Search Highlighting */
.search-highlight {
    background: linear-gradient(120deg, var(--primary-color), var(--primary-light));
    color: white;
    padding: 0.15rem 0.25rem;
    border-radius: 3px;
    font-weight: 600;
}

/* Better FAQ Accordion Animation */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-out;
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    opacity: 1;
    padding: 1.5rem 2rem 2rem;
}

/* FAQ Question Hover Effect */
.faq-question:hover {
    background: var(--bg-secondary);
}

.faq-question:hover i {
    color: var(--primary-color);
    transform: scale(1.1);
}

/* Active FAQ Item Styling */
.faq-item.active {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 120, 0, 0.1);
}

.faq-item.active .faq-question {
    background: var(--bg-secondary);
    border-bottom-color: var(--border-color);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--primary-color);
}

/* Search Input Focus State */
.search-box input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 120, 0, 0.1);
}

/* Category Button Active State */
.category-btn.active {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(255, 120, 0, 0.3);
    transform: translateY(-2px);
}

/* Clear Search Button */
.clear-search {
    transition: all 0.2s ease;
}

.clear-search:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}


/* Cookie Consent Styling - Compact Bottom Right */
.cookie-consent {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 10000;
    animation: cookieSlideIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-overlay {
    display: none; /* Geen overlay nodig */
}

.cookie-modal {
    background: var(--card-bg);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--border-color);
    width: 420px;
    max-width: calc(100vw - 4rem);
    max-height: 80vh;
    overflow-y: auto;
    animation: none; /* Reset modal animation */
}

[data-theme="dark"] .cookie-modal {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* Cookie Header - Compacter */
.cookie-header {
    padding: 1.5rem 2rem 1rem;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
    position: relative;
    overflow: hidden;
}

.cookie-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle cx="100" cy="100" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="300" cy="200" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="500" cy="150" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="700" cy="250" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="900" cy="100" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    opacity: 0.3;
    pointer-events: none;
}

.cookie-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
    animation: cookieIconBounce 2s infinite ease-in-out;
}

.cookie-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: white;
    position: relative;
    z-index: 1;
}

.cookie-header p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Cookie Content - Compacter */
.cookie-content {
    padding: 1.5rem 2rem;
}

.cookie-content > p {
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

/* Cookie Details - Compacter */
.cookie-details {
    margin-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
}

.cookie-category {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

.cookie-category:last-child {
    margin-bottom: 0;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.cookie-category h4 {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

.cookie-required {
    background: var(--primary-color);
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
}

.cookie-category p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.4;
    margin: 0;
}

/* Cookie Toggle Switch - Kleiner */
.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 20px;
    cursor: pointer;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.3s;
    border-radius: 20px;
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 14px;
    width: 14px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cookie-toggle input:checked + .cookie-slider {
    background-color: var(--primary-color);
}

.cookie-toggle input:checked + .cookie-slider:before {
    transform: translateX(20px);
}

/* Cookie Actions - Compacter */
.cookie-actions {
    padding: 1rem 2rem 1.5rem;
    border-top: 1px solid var(--border-color);
    background: var(--bg-secondary);
    border-radius: 0 0 var(--border-radius-lg) var(--border-radius-lg);
}

.cookie-buttons {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.6rem 1rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    border: 2px solid transparent;
    flex: 1;
    justify-content: center;
    min-width: 100px;
}

.cookie-btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    box-shadow: 0 4px 15px rgba(255, 120, 0, 0.3);
}

.cookie-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(255, 120, 0, 0.4);
}

.cookie-btn-secondary {
    background: var(--card-bg);
    color: var(--text-primary);
    border-color: var(--border-color);
}

.cookie-btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-1px);
}

.cookie-btn-outline {
    background: transparent;
    color: var(--text-secondary);
    border-color: var(--border-color);
}

.cookie-btn-outline:hover {
    background: var(--card-bg);
    color: var(--text-primary);
    border-color: var(--primary-color);
}

.cookie-links {
    text-align: center;
    font-size: 0.8rem;
}

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

.cookie-links a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.cookie-links span {
    color: var(--text-secondary);
    margin: 0 0.4rem;
}

/* Animaties - Slide in van rechts */
@keyframes cookieSlideIn {
    from {
        opacity: 0;
        transform: translateX(100%) translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0) translateY(0);
    }
}

@keyframes cookieSlideOut {
    from {
        opacity: 1;
        transform: translateX(0) translateY(0);
    }
    to {
        opacity: 0;
        transform: translateX(100%) translateY(20px);
    }
}

@keyframes cookieIconBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-6px);
    }
    60% {
        transform: translateY(-3px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .cookie-consent {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
    }
    
    .cookie-modal {
        width: 100%;
        max-width: none;
    }
    
    .cookie-header,
    .cookie-content,
    .cookie-actions {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .cookie-header {
        padding-top: 1.25rem;
        padding-bottom: 0.75rem;
    }
    
    .cookie-content {
        padding-top: 1.25rem;
        padding-bottom: 1.25rem;
    }
    
    .cookie-actions {
        padding-bottom: 1.25rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
        gap: 0.6rem;
    }
    
    .cookie-btn {
        width: 100%;
        min-width: auto;
        font-size: 0.85rem;
        padding: 0.7rem 1rem;
    }
    
    .cookie-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }
    
    .cookie-header h3 {
        font-size: 1.125rem;
    }
    
    .cookie-header p {
        font-size: 0.85rem;
    }
    
    .cookie-category {
        padding: 0.875rem;
    }
    
    .cookie-category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .cookie-consent {
        bottom: 0.5rem;
        right: 0.5rem;
        left: 0.5rem;
    }
    
    .cookie-header,
    .cookie-content,
    .cookie-actions {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .cookie-header h3 {
        font-size: 1rem;
    }
    
    .cookie-content > p {
        font-size: 0.85rem;
    }
}

/* Dark theme adjustments */
[data-theme="dark"] .cookie-modal {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

@keyframes cookieSlideOut {
    from {
        opacity: 1;
        transform: translateX(0) translateY(0);
    }
    to {
        opacity: 0;
        transform: translateX(100%) translateY(20px);
    }
}