/* Snipesearch Nederlands 3 Template CSS */
/* Upload this file via Admin > Settings > General > Upload Custom Template */
/* This version features:
   - Clean, minimal design without boxes around each result
   - Simple border separators between results
   - Wider search boxes (min 600px) and tighter navigation spacing
   - Fixed button cutoff issues (overflow visible, proper padding)
   - Proper flexbox handling to prevent button clipping
   - Template debugging support
*/

/* Dutch Color Palette - Inspired by the Netherlands */
:root {
    --dutch-red: #AE1C28;
    --dutch-blue: #21468B;
    --dutch-light-blue: #4A90E2;
    --dutch-orange: #FF6B35;
    --dutch-white: #FFFFFF;
    --dutch-light-gray: #F5F5F5;
    --dutch-dark-gray: #333333;
    --dutch-text: #2C2C2C;
    --dutch-accent: #FFC107;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: var(--dutch-text);
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 100%);
    min-height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Subtle Dutch-inspired Background Pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(174, 28, 40, 0.02) 2px, rgba(174, 28, 40, 0.02) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(33, 70, 139, 0.02) 2px, rgba(33, 70, 139, 0.02) 4px);
    background-size: 40px 40px, 40px 40px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.3;
}

/* Header with Dutch Theme */
header {
    background: linear-gradient(135deg, var(--dutch-red) 0%, var(--dutch-blue) 100%);
    border-bottom: 3px solid var(--dutch-accent);
    padding: 1rem 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 10;
}

header::after {
    content: '🇳🇱';
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    opacity: 0.8;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.logo img,
.header-logo {
    max-height: 50px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.header-logo-small {
    max-height: 30px;
    width: auto;
    vertical-align: middle;
}

/* Language Selector */
.language-selector {
    display: flex;
    align-items: center;
}

/* Desktop language selector - visible on desktop */
.desktop-language-selector {
    display: flex;
    margin-left: auto;
    position: relative;
    z-index: 1;
    pointer-events: auto;
}

/* Hide mobile language selector on desktop */
.mobile-language-selector {
    display: none;
}

.language-selector select {
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: white;
    cursor: pointer;
    font-size: 0.9rem;
}

.language-selector select:hover {
    border-color: var(--dutch-blue);
}

.language-selector select:focus {
    outline: none;
    border-color: var(--dutch-blue);
    box-shadow: 0 0 0 2px rgba(33, 70, 139, 0.25);
}

/* Hamburger Menu Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
    position: relative;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background: #ffffff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Nav Menu Wrapper */
.nav-menu-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 0.5rem;
    align-items: center;
    flex-wrap: nowrap;
}

.nav-menu > li {
    position: relative;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.nav-menu a:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--dutch-accent);
    transform: translateY(-2px);
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    cursor: pointer;
    user-select: none;
}

.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: #ffffff;
    border: 2px solid var(--dutch-blue);
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    list-style: none;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    min-width: 150px;
    z-index: 1000;
}

.nav-dropdown-menu li {
    margin: 0;
}

.nav-dropdown-menu a {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--dutch-text);
    text-decoration: none;
    white-space: nowrap;
}

.nav-dropdown-menu a:hover {
    background: var(--dutch-blue);
    color: #ffffff;
}

.nav-dropdown:hover .nav-dropdown-menu {
    display: block;
}

.nav-dropdown.active .nav-dropdown-menu {
    display: block;
}

/* Main Content */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    min-height: calc(100vh - 200px);
    flex: 1;
    position: relative;
    z-index: 1;
}

/* Search Form - FIXED VERSION with button cutoff prevention */
.search-container {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(245, 245, 245, 0.95) 100%);
    border-radius: 12px;
    margin: 2rem auto;
    max-width: 800px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: visible;
    border: 1px solid rgba(33, 70, 139, 0.1);
}

.search-container::before {
    content: '🔍';
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 3rem;
    opacity: 0.2;
}

.search-container::after {
    content: '🇳🇱';
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 3rem;
    opacity: 0.2;
}

.search-container h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--dutch-red);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.05);
    font-weight: bold;
}

.search-form {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    gap: 0.5rem;
    width: 100%;
    padding: 0 1rem;
    box-sizing: border-box;
}

.search-form input {
    flex: 1;
    min-width: 600px;
    max-width: calc(100% - 140px);
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border: 2px solid var(--dutch-blue);
    border-radius: 8px;
    background: #ffffff;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.search-form input:focus {
    outline: none;
    border-color: var(--dutch-red);
    box-shadow: 0 0 0 3px rgba(174, 28, 40, 0.1);
}

.search-form button {
    padding: 0.75rem 2rem;
    font-size: 1rem;
    background: linear-gradient(135deg, var(--dutch-blue) 0%, var(--dutch-light-blue) 100%);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
    white-space: nowrap;
    min-width: 120px;
}

.search-form button:hover {
    background: linear-gradient(135deg, var(--dutch-red) 0%, var(--dutch-orange) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--dutch-blue) 0%, var(--dutch-light-blue) 100%);
    border-top: 3px solid var(--dutch-accent);
    padding: 2rem 1rem;
    margin-top: auto;
    color: #ffffff;
    box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 10;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    margin-bottom: 1rem;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 1rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--dutch-accent);
}

.social-links {
    margin: 1rem 0;
}

.social-links a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 0.5rem;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.2);
    color: var(--dutch-accent);
}

/* Search Results */
.search-results {
    max-width: 800px;
    margin: 0 auto;
}

.search-header {
    margin-bottom: 2rem;
}

.search-form-inline {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    width: 100%;
    box-sizing: border-box;
    padding: 0;
}

.search-form-inline input {
    flex: 1;
    min-width: 600px;
    max-width: calc(100% - 140px);
    padding: 0.75rem;
    font-size: 1rem;
    border: 2px solid var(--dutch-blue);
    border-radius: 8px;
    background: #ffffff;
    box-sizing: border-box;
}

.search-form-inline button {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--dutch-blue) 0%, var(--dutch-light-blue) 100%);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    flex-shrink: 0;
    white-space: nowrap;
    min-width: 120px;
}

.search-form-inline button:hover {
    background: linear-gradient(135deg, var(--dutch-red) 0%, var(--dutch-orange) 100%);
    transform: translateY(-2px);
}

.results-info {
    color: var(--dutch-blue);
    font-size: 0.9rem;
    font-weight: 600;
}

.results-list {
    margin: 2rem 0;
}

/* Clean Result Items - No Boxes, Just Simple Separators */
.result-item {
    margin-bottom: 0;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(174, 28, 40, 0.15);
    background: transparent;
    transition: all 0.2s ease;
}

.result-item:hover {
    background: rgba(245, 245, 245, 0.5);
    padding-left: 0.5rem;
    border-left: 3px solid var(--dutch-blue);
    margin-left: -0.5rem;
}

.result-item:last-child {
    border-bottom: none;
}

.result-title {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: normal;
}

.result-title a {
    color: var(--dutch-red);
    text-decoration: none;
    font-weight: 600;
}

.result-title a:hover {
    color: var(--dutch-blue);
    text-decoration: underline;
}

.result-url {
    color: var(--dutch-blue);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    word-break: break-all;
    font-weight: 500;
}

.result-host {
    color: var(--dutch-light-blue);
}

.result-description {
    color: #545454;
    line-height: 1.6;
}

.result-description mark,
.result-title mark {
    background: var(--dutch-accent);
    padding: 0 2px;
    font-weight: bold;
    border-radius: 2px;
}

.no-results {
    text-align: center;
    padding: 3rem 1rem;
}

.no-results h2 {
    margin-bottom: 1rem;
    color: var(--dutch-red);
}

/* Ads */
.ad-container {
    margin: 2rem 0;
    padding: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px dashed var(--dutch-blue);
    border-radius: 8px;
    text-align: center;
}

.ad-top {
    margin-top: 0;
}

.ad-bottom {
    margin-bottom: 2rem;
}

.ad-unit {
    margin: 0 auto;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.pagination-link {
    padding: 0.5rem 1rem;
    border: 2px solid var(--dutch-blue);
    border-radius: 8px;
    color: var(--dutch-text);
    text-decoration: none;
    background: white;
    transition: all 0.3s ease;
}

.pagination-link:hover {
    background: var(--dutch-blue);
    color: #ffffff;
    transform: translateY(-2px);
}

.pagination-link.active {
    background: var(--dutch-red);
    color: white;
    border-color: var(--dutch-red);
    font-weight: 600;
}

/* AI Summary */
.ai-summary {
    margin: 2rem 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, #E8F4F8 0%, #D6EBF2 100%);
    border-left: 4px solid var(--dutch-blue);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.ai-summary h3 {
    margin-bottom: 1rem;
    color: var(--dutch-red);
    font-size: 1.25rem;
}

.ai-summary-content {
    color: #545454;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.ai-summary-disclaimer {
    color: #999;
    font-size: 0.85rem;
    font-style: italic;
}

/* Static Pages */
.static-page {
    max-width: 900px;
    margin: 2rem auto;
    padding: 2rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.static-page h1 {
    margin-bottom: 2rem;
    color: var(--dutch-red);
    border-bottom: 3px solid var(--dutch-blue);
    padding-bottom: 0.5rem;
    font-size: 2.5rem;
}

.static-content {
    line-height: 1.8;
    color: #555;
}

.static-content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--dutch-blue);
    font-size: 2rem;
}

.static-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--dutch-light-blue);
    font-size: 1.5rem;
}

.static-content p {
    margin-bottom: 1rem;
}

.static-content ul, .static-content ol {
    margin: 1rem 0 1rem 2rem;
}

.static-content li {
    margin-bottom: 0.5rem;
}

/* News Feed */
.news-container {
    max-width: 1200px;
    margin: 0 auto;
}

.news-container h1 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: var(--dutch-red);
}

.no-articles {
    text-align: center;
    padding: 3rem 1rem;
    color: #666;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.news-article {
    background: white;
    border: 2px solid var(--dutch-blue);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.news-article:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
    border-color: var(--dutch-red);
}

.article-thumbnail {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f0f0f0;
}

.article-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-content {
    padding: 1.5rem;
}

.article-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.article-title a {
    color: var(--dutch-red);
    text-decoration: none;
}

.article-title a:hover {
    color: var(--dutch-blue);
    text-decoration: underline;
}

.article-meta {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 1rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.article-source {
    font-weight: 600;
    color: var(--dutch-blue);
}

.article-excerpt {
    color: #545454;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.read-more {
    display: inline-block;
    color: var(--dutch-blue);
    text-decoration: none;
    font-weight: 600;
    margin-top: 0.5rem;
}

.read-more:hover {
    color: var(--dutch-red);
    text-decoration: underline;
}

/* Video Search Results - Clean Style */
.video-results-list {
    margin: 2rem 0;
}

.video-result-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 0;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(174, 28, 40, 0.15);
    background: transparent;
    transition: all 0.2s ease;
}

.video-result-item:hover {
    background: rgba(245, 245, 245, 0.5);
    padding-left: 0.5rem;
    border-left: 3px solid var(--dutch-blue);
    margin-left: -0.5rem;
}

.video-result-item:last-child {
    border-bottom: none;
}

.video-thumbnail {
    flex-shrink: 0;
    width: 320px;
    height: 180px;
    background: #f0f0f0;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(33, 70, 139, 0.2);
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-details {
    flex: 1;
}

.video-title {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: normal;
}

.video-title a {
    color: var(--dutch-red);
    text-decoration: none;
    font-weight: 600;
}

.video-title a:hover {
    color: var(--dutch-blue);
    text-decoration: underline;
}

.video-meta {
    color: var(--dutch-blue);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.video-channel {
    font-weight: 600;
    color: var(--dutch-light-blue);
}

.video-description {
    color: #545454;
    line-height: 1.5;
}

/* Image Search Results */
.image-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.image-result-item {
    background: white;
    border: 1px solid rgba(33, 70, 139, 0.2);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.image-result-item:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    border-color: var(--dutch-red);
}

.image-link {
    display: block;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background: #f0f0f0;
}

.image-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-result-item:hover .image-link img {
    transform: scale(1.05);
}

.image-info {
    padding: 0.75rem;
}

.image-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dutch-red);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.image-creator {
    font-size: 0.85rem;
    color: var(--dutch-blue);
    margin-bottom: 0.25rem;
}

.image-license {
    font-size: 0.8rem;
    color: #999;
}

.image-license a {
    color: var(--dutch-blue);
    text-decoration: none;
}

.image-license a:hover {
    color: var(--dutch-red);
    text-decoration: underline;
}

/* Sound Search Results - Clean Style */
.sound-results-list {
    margin: 2rem 0;
}

.sound-result-item {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 0;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(174, 28, 40, 0.15);
    background: transparent;
    transition: all 0.2s ease;
}

.sound-result-item:hover {
    background: rgba(245, 245, 245, 0.5);
    padding-left: 0.5rem;
    border-left: 3px solid var(--dutch-blue);
    margin-left: -0.5rem;
}

.sound-result-item:last-child {
    border-bottom: none;
}

.sound-thumbnail {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    background: #f0f0f0;
    border: 1px solid rgba(33, 70, 139, 0.2);
}

.sound-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sound-details {
    flex: 1;
}

.sound-title {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: normal;
}

.sound-title a {
    color: var(--dutch-red);
    text-decoration: none;
    font-weight: 600;
}

.sound-title a:hover {
    color: var(--dutch-blue);
    text-decoration: underline;
}

.sound-meta {
    color: var(--dutch-blue);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.sound-license {
    font-size: 0.85rem;
    color: #666;
}

.sound-license a {
    color: var(--dutch-blue);
    text-decoration: none;
}

.sound-license a:hover {
    color: var(--dutch-red);
    text-decoration: underline;
}

.sound-play {
    flex-shrink: 0;
}

.play-button {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--dutch-blue) 0%, var(--dutch-light-blue) 100%);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.play-button:hover {
    background: linear-gradient(135deg, var(--dutch-red) 0%, var(--dutch-orange) 100%);
    transform: scale(1.05);
}

/* Product Search Results - Clean Style */
.product-results-list {
    margin: 2rem 0;
}

.product-result-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 0;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(174, 28, 40, 0.15);
    background: transparent;
    transition: all 0.2s ease;
}

.product-result-item:hover {
    background: rgba(245, 245, 245, 0.5);
    padding-left: 0.5rem;
    border-left: 3px solid var(--dutch-blue);
    margin-left: -0.5rem;
}

.product-result-item:last-child {
    border-bottom: none;
}

.product-image {
    flex-shrink: 0;
    width: 150px;
    height: 150px;
    border-radius: 8px;
    overflow: hidden;
    background: #f0f0f0;
    border: 1px solid rgba(33, 70, 139, 0.2);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-image-placeholder {
    flex-shrink: 0;
    width: 150px;
    height: 150px;
    background: #f0f0f0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    border: 1px solid rgba(33, 70, 139, 0.2);
}

.product-details {
    flex: 1;
}

.product-title {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: normal;
}

.product-title a {
    color: var(--dutch-red);
    text-decoration: none;
    font-weight: 600;
}

.product-title a:hover {
    color: var(--dutch-blue);
    text-decoration: underline;
}

.product-meta {
    color: var(--dutch-blue);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.product-brand {
    font-weight: 600;
    color: var(--dutch-light-blue);
}

.product-description {
    color: #545454;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}

.product-price {
    font-size: 1.25rem;
    color: var(--dutch-red);
    font-weight: 700;
}

.availability-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
}

.availability-badge.in-stock {
    background: var(--dutch-blue);
    color: white;
}

.availability-badge.out-of-stock {
    background: var(--dutch-red);
    color: white;
}

.availability-badge.preorder {
    background: var(--dutch-accent);
    color: var(--dutch-text);
}

/* Environmental Savings Banner */
.env-savings-banner {
    background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
    border: 2px solid var(--dutch-blue);
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 0;
    color: #2E7D32;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.total-env-savings {
    background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
    border: 2px solid var(--dutch-blue);
    border-radius: 8px;
    padding: 1.25rem;
    margin-top: 1.5rem;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Responsive Design */
@media (max-width: 768px) {
    nav {
        flex-wrap: wrap;
        position: relative;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu-wrapper {
        display: none !important;
        position: absolute;
        top: 100%;
        left: 0 !important;
        transform: none !important;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        margin-top: 0;
        padding-top: 1rem;
        padding-bottom: 1rem;
        border-top: 2px solid var(--dutch-accent);
        background: linear-gradient(135deg, var(--dutch-red) 0%, var(--dutch-blue) 100%);
        box-shadow: 0 2px 8px rgba(0,0,0,0.2);
        z-index: 1000;
    }
    
    .nav-menu-wrapper.active {
        display: flex !important;
    }
    
    .desktop-language-selector {
        display: none;
    }
    
    .mobile-language-selector {
        display: flex;
        justify-content: center;
        width: 100%;
        padding: 1rem;
        border-top: 2px solid var(--dutch-accent);
        background: linear-gradient(135deg, var(--dutch-red) 0%, var(--dutch-blue) 100%);
    }
    
    .mobile-language-selector select {
        width: auto;
        min-width: 200px;
    }
    
    .nav-menu {
        flex-direction: column;
        width: 100%;
        gap: 0;
        align-items: stretch;
    }
    
    .nav-menu > li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .nav-menu > li:last-child {
        border-bottom: none;
    }
    
    .nav-menu a {
        display: block;
        padding: 1rem;
        width: 100%;
    }
    
    .nav-dropdown-menu {
        right: auto;
        left: 0;
        display: none !important;
        position: static;
        box-shadow: none;
        border: none;
        border-top: 2px solid var(--dutch-blue);
        margin-top: 0;
        width: 100%;
        padding: 0;
    }
    
    .nav-dropdown:hover .nav-dropdown-menu {
        display: none !important;
    }
    
    .nav-menu-wrapper.active .nav-dropdown .nav-dropdown-menu {
        display: block !important;
        position: static;
        box-shadow: none;
        border: none;
        border-top: 2px solid var(--dutch-blue);
        margin-top: 0;
        background: rgba(255, 255, 255, 0.1);
    }
    
    .nav-dropdown.active .nav-dropdown-menu {
        display: block !important;
        position: static;
        box-shadow: none;
        border: none;
        border-top: 2px solid var(--dutch-blue);
        margin-top: 0;
        background: rgba(255, 255, 255, 0.1);
    }
    
    .nav-dropdown.active .nav-dropdown-menu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .nav-dropdown.active .nav-dropdown-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-dropdown-toggle {
        display: block;
        padding: 1rem;
        width: 100%;
        cursor: default;
    }
    
    .nav-menu-wrapper.active .nav-dropdown-toggle span {
        display: none;
    }
    
    .search-form {
        flex-direction: column;
    }
    
    .search-form input {
        min-width: unset;
        width: 100%;
        max-width: 100%;
    }
    
    .search-form button {
        width: 100%;
    }
    
    .search-form-inline {
        flex-direction: column;
    }
    
    .search-form-inline input {
        min-width: unset;
        width: 100%;
        max-width: 100%;
    }
    
    .search-form-inline button {
        width: 100%;
    }
    
    .result-item {
        margin-bottom: 0;
        padding: 1rem 0;
    }
    
    .pagination {
        gap: 0.25rem;
    }
    
    .pagination-link {
        padding: 0.5rem 0.75rem;
        font-size: 0.9rem;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .article-thumbnail {
        height: 180px;
    }
    
    .video-result-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .video-thumbnail {
        width: 100%;
        height: auto;
        aspect-ratio: 16/9;
    }
    
    .image-results-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .sound-result-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .sound-play {
        width: 100%;
    }
    
    .sound-play .play-button {
        width: 100%;
        text-align: center;
    }
    
    .product-result-item {
        flex-direction: column;
    }
    
    .product-image,
    .product-image-placeholder {
        width: 100%;
        aspect-ratio: 1;
    }
    
    .product-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    header::after {
        display: none;
    }
    
    .search-container::before,
    .search-container::after {
        display: none;
    }
}
