dynamic phone and bots

This commit is contained in:
sdarbinyan
2026-04-14 22:28:34 +04:00
parent 1897cbe7a6
commit a15f2bca6a
67 changed files with 249 additions and 72 deletions

View File

@@ -912,6 +912,85 @@
cursor: not-allowed;
}
}
.cart-login-gate {
margin-top: 20px;
padding: 24px;
border-radius: 16px;
background: rgba(16, 185, 129, 0.04);
border: 1px dashed rgba(16, 185, 129, 0.3);
text-align: center;
.login-gate-icon {
margin: 0 auto 12px;
width: 56px;
height: 56px;
border-radius: 50%;
background: rgba(16, 185, 129, 0.1);
color: #10b981;
display: flex;
align-items: center;
justify-content: center;
}
.login-gate-title {
margin: 0 0 4px;
font-size: 1rem;
font-weight: 700;
color: #111827;
}
.login-gate-desc {
margin: 0 0 16px;
font-size: 0.85rem;
color: #6b7280;
line-height: 1.4;
}
.telegram-login-btn {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 12px 24px;
border: none;
border-radius: 12px;
background: #2AABEE;
color: #fff;
font-size: 0.95rem;
font-weight: 600;
cursor: pointer;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
&:hover {
background: #229ED9;
transform: translateY(-1px);
box-shadow: 0 4px 12px rgba(42, 171, 238, 0.3);
}
}
.login-gate-qr {
margin-top: 14px;
.qr-hint {
margin: 0 0 8px;
font-size: 0.8rem;
color: #9ca3af;
}
.qr-wrapper {
display: inline-flex;
padding: 10px;
background: #fff;
border-radius: 12px;
border: 1px solid #e5e7eb;
img {
display: block;
border-radius: 4px;
}
}
}
}
}
// Terms agreement - shared base

View File

@@ -270,7 +270,7 @@
.add-to-cart-btn {
width: 100%;
padding: 12px;
background: #497671;
background: var(--primary-color);
color: white;
border: none;
border-radius: 0 0 13px 13px;
@@ -282,7 +282,7 @@
margin-top: -1px;
&:hover {
background: #3a5f5b;
background: var(--primary-hover);
}
&:active {
@@ -294,7 +294,7 @@
width: 40px;
height: 40px;
border: 4px solid #d3dad9;
border-top: 4px solid #497671;
border-top: 4px solid var(--primary-color);
border-radius: 50%;
animation: spin 1s linear infinite;
margin: 0 auto 12px;

View File

@@ -365,7 +365,7 @@
.item-cart-btn {
align-self: flex-end;
background: #497671;
background: var(--primary-color);
color: white;
border: none;
border-radius: 8px;
@@ -374,7 +374,7 @@
transition: background 0.2s ease;
&:hover {
background: #3a5f5b;
background: var(--primary-hover);
}
}