File size: 1,877 Bytes
e5db3d8
e7ee0f7
 
 
 
 
 
 
 
 
 
 
 
 
 
e5db3d8
 
e7ee0f7
 
 
 
 
 
 
e5db3d8
 
e7ee0f7
 
 
 
e5db3d8
f215f7a
e7ee0f7
 
 
 
 
 
 
 
 
 
 
 
 
 
e5db3d8
3ec3239
e7ee0f7
 
 
f57d350
e7ee0f7
 
 
6b9ac3a
e7ee0f7
 
 
 
 
 
6b9ac3a
 
 
e7ee0f7
 
 
 
 
 
6b9ac3a
f57d350
e7ee0f7
 
 
 
 
 
 
 
 
f57d350
 
e7ee0f7
 
 
 
 
 
 
 
 
 
 
 
 
 
 
f57d350
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101

/* Shopify Chat Widget */
.shopify-chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    max-height: 500px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    z-index: 9999;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.shopify-chat-header {
    background: #5c6ac4;
    color: white;
    padding: 12px 16px;
    border-radius: 12px 12px 0 0;
    display: flex;
    align-items: center;
}

.shopify-chat-header h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
}

.shopify-chat-messages {
    flex: 1;
    padding: 16px;
    overflow-y: auto;
    max-height: 350px;
}

.shopify-chat-message {
    margin-bottom: 12px;
    max-width: 80%;
    padding: 8px 12px;
    border-radius: 18px;
    font-size: 14px;
    line-height: 1.4;
}

.shopify-chat-message.customer {
    background: #f3f4f6;
    margin-right: auto;
}

.shopify-chat-message.admin {
    background: #5c6ac4;
    color: white;
    margin-left: auto;
}

.shopify-chat-input {
    padding: 12px;
    border-top: 1px solid #e5e7eb;
    display: flex;
}

.shopify-chat-input input {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    outline: none;
}

.shopify-chat-input button {
    background: #5c6ac4;
    color: white;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    margin-left: 8px;
    cursor: pointer;
}

.shopify-chat-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #5c6ac4;
    color: white;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    cursor: pointer;
    z-index: 9998;
}