 /* Widget Container */
        .embla-widget {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 1000;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        }

        /* Chat Bubble */
        .embla-chat-bubble {
            width: 60px;
            height: 60px;
            background: #227c3e;
            border-radius: 50%; 
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 20px rgba(0,0,0,0.3);
            transition: all 0.3s ease;
        }

        .embla-chat-bubble:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 25px rgba(0,0,0,0.4);
        }

        .embla-chat-bubble::before {
            content: "Hitta din närmsta återförsäljare här!";
            position: absolute;
            bottom: 70px;
            right: 0;
            background: #227c3e;
            color: white;
            padding: 8px 12px;
            border-radius: 8px;
            font-size: 12px;
            white-space: nowrap;
            opacity: 1;
            visibility: visible;
            z-index: 1001;
            box-shadow: 0 4px 12px rgba(0,0,0,0.3);
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }

        .embla-chat-bubble::after {
            content: "";
            position: absolute;
            bottom: 64px;
            right: 20px;
            border: 6px solid transparent;
            border-top-color: #2c3e50;
            opacity: 1;
            visibility: visible;
            z-index: 1001;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }

        .embla-widget.open .embla-chat-bubble::before,
        .embla-widget.open .embla-chat-bubble::after {
            opacity: 0;
            visibility: hidden;
        }

        .embla-chat-bubble .icon {
            color: white;
            font-size: 24px;
        }

        /* Chat Window */
        .embla-chat-window {
            position: absolute;
            bottom: 80px;
            right: 0;
            width: 350px;
            height: 500px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.2);
            display: none;
            flex-direction: column;
            overflow: hidden;
        }

        .embla-chat-window.open {
            display: flex;
        }

        /* Chat Header */
        .embla-chat-header {
            background: #227c3e;
            color: white;
            padding: 15px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .embla-chat-header h3 {
            margin: 0;
            font-size: 16px;
        }

        .embla-close-btn {
            background: none;
            border: none;
            color: white;
            font-size: 20px;
            cursor: pointer;
            padding: 0;
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Chat Messages */
        .embla-chat-messages {
            flex: 1;
            padding: 15px;
            overflow-y: auto;
            background: #fafafa;
        }

        .embla-message {
            margin: 8px 0;
            padding: 10px 12px;
            border-radius: 12px;
            max-width: 85%;
            font-size: 14px;
            line-height: 1.4;
        }

        .embla-user-message {
            background: #227c3e;
            color: white;
            margin-left: auto;
        }

        .embla-bot-message {
            background: white;
            border: 1px solid #e1e5e9;
        }


        /* Quick Buttons */
        .embla-quick-buttons {
            padding: 10px 15px;
            background: #f8f9fa;
            border-top: 1px solid #e1e5e9;
        }

        .embla-quick-btn {
            margin: 3px;
            padding: 6px 12px;
            background: #227c3e;
            border: none;
            border-radius: 12px;
            cursor: pointer;
            font-size: 12px;
            transition: background 0.2s;
        }

        .embla-quick-btn:hover {
            background: #dee2e6;
        }

        /* Chat Input */
        .embla-chat-input {
            display: flex;
            padding: 15px;
            background: white;
            border-top: 1px solid #e1e5e9;
        }

        .embla-chat-input input {
            flex: 1;
            padding: 8px 12px;
            border: 1px solid #ddd;
            border-radius: 20px;
            outline: none;
            font-size: 14px;
        }

        .embla-chat-input button {
            margin-left: 8px;
            padding: 8px 16px;
            background: #227c3e;
            color: white;
            border: none;
            border-radius: 20px;
            cursor: pointer;
            font-size: 14px;
        }

        /* Mobile Responsive */
        @media (max-width: 480px) {
            .embla-widget {
                bottom: 10px;
                right: 10px;
            }
            
            .embla-chat-window {
                width: calc(100vw - 20px);
                height: calc(100vh - 100px);
                bottom: 80px;
                right: 10px;
            }
        }
.embla-user-message {
    background: #006b26;
    color: white;
    margin-left: auto;
}
input#emblaInput {
    color: black;
}
.embla-bot-message {
    background: #227c3e;
    border: 1px solid #e1e5e9;
}
#embla-omdomen {
  display: flex;
  align-items: center;
  gap: 18px;
  overflow: hidden;
  padding: 12px 18px;
  background: #f5f1e9;
  color: #303a32;
  font: 14px/1.5 Arial, sans-serif;
  border-top: 1px solid #e7e0d6;
  border-bottom: 1px solid #e7e0d6;
}

#embla-omdomen .eo-heading {
  flex-shrink: 0;
  font-size: 12px;
  font-weight: bold;
}

#embla-omdomen .eo-window {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

#embla-omdomen .eo-track {
  display: flex;
  width: max-content;
  animation: embla-omdomen-scroll 120s linear infinite;
}

#embla-omdomen .eo-group {
  display: flex;
  flex-shrink: 0;
}

#embla-omdomen .eo-review {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-right: 60px;
  white-space: nowrap;
}

#embla-omdomen .eo-stars {
  color: #b47724;
  letter-spacing: 2px;
}

#embla-omdomen .eo-name {
  font-weight: bold;
}

#embla-omdomen .eo-toggle {
  flex-shrink: 0;
  cursor: pointer;
  font-size: 12px;
  border: 1px solid #a7a99f;
  border-radius: 20px;
  padding: 5px 10px;
}

#embla-omdomen .eo-toggle input {
  margin: 0 5px 0 0;
  vertical-align: middle;
}

#embla-omdomen:hover .eo-track,
#embla-omdomen:has(input:checked) .eo-track,
#embla-omdomen .eo-window:focus .eo-track {
  animation-play-state: paused;
}

#embla-omdomen:has(input:checked) .eo-window,
#embla-omdomen .eo-window:focus {
  overflow-x: auto;
}

@keyframes embla-omdomen-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 650px) {
  #embla-omdomen {
    flex-wrap: wrap;
    gap: 8px;
    padding: 10px 12px;
  }

  #embla-omdomen .eo-heading {
    flex: 1;
  }

  #embla-omdomen .eo-window {
    order: 3;
    flex-basis: 100%;
  }

  #embla-omdomen .eo-review {
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  #embla-omdomen .eo-track {
    animation: none;
  }

  #embla-omdomen .eo-window {
    overflow-x: auto;
  }

  #embla-omdomen .eo-copy,
  #embla-omdomen .eo-toggle {
    display: none;
  }
}