.lg-atypique-popup {
position: fixed;
bottom: 20px;
left: 50%;
transform: translateX(-50%);
width: auto;
max-width: 90%;
z-index: 999999;
display: none;
opacity: 0;
visibility: hidden;
transition: opacity 0.4s ease, visibility 0.4s ease;
pointer-events: auto;
}
.lg-atypique-popup.lg-show {
opacity: 1;
visibility: visible;
pointer-events: auto;
}
.lg-atypique-popup-content {
position: relative;
background: white;
border-radius: 12px;
padding: 24px 32px;
min-width: 600px;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
text-align: center;
transform: translateY(50px);
transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.lg-atypique-popup.lg-show .lg-atypique-popup-content {
transform: translateY(0);
}
.lg-atypique-popup-close {
position: absolute;
top: 12px;
right: 12px;
background: none;
border: none;
cursor: pointer;
color: #999;
padding: 8px;
border-radius: 8px;
transition: all 0.2s ease;
display: flex;
align-items: center;
justify-content: center;
}
.lg-atypique-popup-close:hover {
background: #f5f5f5;
color: #333;
}
.lg-atypique-popup-title {
font-size: 18px;
font-weight: 600;
color: #1a1a1a;
margin: 0 0 8px 0;
line-height: 1.3;
}
.lg-atypique-popup-text {
color: #666;
font-size: 14px;
line-height: 1.5;
margin-bottom: 16px;
}
.lg-atypique-popup-text p {
margin: 0;
display: inline;
}
.lg-atypique-popup-text strong {
color: #a0907e;
font-weight: 600;
}
.lg-atypique-popup-actions {
display: flex;
justify-content: center;
}
.lg-atypique-popup-btn {
padding: 12px 32px;
border-radius: 8px;
font-size: 15px;
font-weight: 600;
text-decoration: none;
border: none;
cursor: pointer;
transition: all 0.2s ease;
display: inline-block;
background: #a0907e;
color: white;
}
.lg-atypique-popup-btn:hover {
background: #8a7c69;
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(160, 144, 126, 0.4);
}
@media (max-width: 599px) {
.lg-atypique-popup {
bottom: 10px;
max-width: 95%;
left: 2.5%;
transform: none;
}
.lg-atypique-popup-content {
padding: 20px 20px;
min-width: auto;
width: 100%;
}
.lg-atypique-popup-title {
font-size: 16px;
}
.lg-atypique-popup-text {
font-size: 13px;
margin-bottom: 14px;
}
.lg-atypique-popup-btn {
padding: 12px 24px;
font-size: 14px;
width: 100%;
}
}.lg-modal-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.6);
z-index: 99999;
display: flex;
align-items: center;
justify-content: center;
padding: 20px;
}
.lg-modal {
background: white;
border-radius: 12px;
padding: 32px;
max-width: 480px;
width: 100%;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
transform: translateY(30px) scale(0.95);
opacity: 0;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.lg-modal.lg-modal-show {
transform: translateY(0) scale(1);
opacity: 1;
}
.lg-modal-icon {
display: flex;
justify-content: center;
margin-bottom: 20px;
}
.lg-modal-icon svg {
width: 56px;
height: 56px;
}
.lg-modal-title {
font-family: 'Inter', sans-serif;
font-size: 22px;
font-weight: 600;
color: #333;
text-align: center;
margin: 0 0 16px 0;
line-height: 1.3;
}
.lg-modal-text {
font-family: 'Inter', sans-serif;
font-size: 15px;
color: #666;
text-align: center;
line-height: 1.5;
margin: 0 0 12px 0;
}
.lg-modal-question {
font-family: 'Inter', sans-serif;
font-size: 15px;
font-weight: 500;
color: #333;
text-align: center;
line-height: 1.5;
margin: 0 0 24px 0;
}
.lg-modal-actions {
display: flex;
gap: 12px;
flex-direction: column;
}
.lg-modal-btn {
font-family: 'Inter', sans-serif;
padding: 14px 20px;
border-radius: 8px;
font-size: 15px;
font-weight: 500;
cursor: pointer;
transition: all 0.2s ease;
border: none;
width: 100%;
}
.lg-modal-btn-primary {
background: #a1907d;
color: white;
box-shadow: 0 2px 8px rgba(161, 144, 125, 0.3);
}
.lg-modal-btn-primary:hover {
background: #8a7c69;
transform: translateY(-1px);
box-shadow: 0 4px 12px rgba(161, 144, 125, 0.4);
}
.lg-modal-btn-primary:active {
transform: translateY(0);
}
.lg-modal-btn-secondary {
background: #f5f5f5;
color: #333;
border: 2px solid #e0e0e0;
}
.lg-modal-btn-secondary:hover {
background: #ebebeb;
border-color: #d0d0d0;
color: #a1907d;
}
@media (max-width: 600px) {
.lg-modal {
padding: 24px 20px;
max-width: calc(100vw - 40px);
}
.lg-modal-icon svg {
width: 48px;
height: 48px;
}
.lg-modal-title {
font-size: 19px;
}
.lg-modal-text,
.lg-modal-question {
font-size: 14px;
}
.lg-modal-btn {
padding: 12px 16px;
font-size: 14px;
}
}
@media (max-width: 400px) {
.lg-modal-actions {
gap: 10px;
}
}