#soap {
    filter: drop-shadow(0px 0px 2px #ddd);
}

.soap-intro-section {
    max-width: 800px;
    margin: 0 auto 40px auto;
    line-height: 1.8;
}

.soap-intro-section p {
    font-size: 1.05em;
    color: #444;
    margin-bottom: 20px;
    text-align: justify;
}

.soap-intro-section strong {
    color: #2c5f2d;
    font-weight: 600;
}

.soap-intro-section .highlight-box {
    background: linear-gradient(135deg, #f8fff8 0%, #e8f5e9 100%);
    border-left: 4px solid #2c5f2d;
    padding: 20px 25px;
    margin: 30px 0;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 2px 8px rgba(44, 95, 45, 0.1);
}

.soap-intro-section .highlight-box p {
    margin: 0;
    text-align: left;
}

.nordiska-logo-container {
    text-align: center;
    padding: 25px 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    border: 1px solid #e8e8e8;
}

.nordiska-logo-container img {
    max-width: 200px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.08));
    transition: filter 0.3s ease, transform 0.6s ease, opacity 0.6s ease;
    opacity: 0;
    transform: translateY(30px) scale(0.95);
}

.nordiska-logo-container img.loaded {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.nordiska-logo-container:hover img {
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.15));
    transform: translateY(-3px) scale(1.02);
}

.nordiska-section {
    background: linear-gradient(135deg, #fafbfb 0%, #f5f7f5 100%);
    border-radius: 16px;
    padding: 30px 25px;
    margin: 25px auto;
    max-width: 950px;
    border: 1px solid #e5e7e5;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.nordiska-description {
    max-width: 800px;
    margin: 0 auto 30px auto;
    line-height: 1.8;
}

.nordiska-description p {
    font-size: 1.05em;
    color: #444;
    text-align: justify;
}

.nordiska-description a {
    color: #2c5f2d;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nordiska-description a:hover {
    color: #1a3d1b;
    text-decoration: underline;
}

.nordiska-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 900px;
    margin: 25px auto 0 auto;
    padding: 0 20px;
}

.nordiska-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.nordiska-gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.nordiska-gallery-item:hover::after {
    content: '🔍 Click to enlarge';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 0.9em;
    font-weight: 500;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nordiska-gallery-item:hover::after {
    opacity: 1;
}

.nordiska-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.nordiska-gallery-item .caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    padding: 30px 15px 12px 15px;
    font-size: 0.9em;
    font-weight: 500;
    text-align: center;
}

.soap-products-grid {
    margin-top: 30px;
}

.content-grid-item {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.content-grid-item .content-image {
    border-radius: 8px;
    margin-bottom: 15px;
}

.content-grid-item .h3-title {
    color: #2c5f2d;
    font-size: 1.3em;
    margin-bottom: 12px;
    font-weight: 600;
}

.content-grid-item p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 8px;
}

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

    .nordiska-logo-container img {
        max-width: 300px;
    }

    .soap-intro-section,
    .nordiska-description {
        padding: 0 15px;
    }

    .soap-intro-section p,
    .nordiska-description p {
        text-align: left;
    }
}
