
.badge {
position: absolute;
top: 8px;
left: 8px;
background: #d9e8ff;
color: #3a6edc;
font-size: 12px;
font-weight: 500;
padding: 4px 8px;
border-radius: 6px;
z-index: 1;
}

.product-name {
font-size: 14px;
text-transform: lowercase;
color: #333;
margin-top: 10px;
}

:root {
--bg-color: #ffffff;
--text-color: #202124;
--secondary-text: #5f6368;
--button-bg: #4285F4;
--button-hover: #3367D6;
--shadow-color: rgba(0, 0, 0, 0.2);
--close-color: #5f6368;
--border-color: #dadce0;
}

@media (prefers-color-scheme: dark) {
:root {
--bg-color: #202124;
--text-color: #e8eaed;
--secondary-text: #9aa0a6;
--button-bg: #8ab4f8;
--button-hover: #aecbfa;
--shadow-color: rgba(0, 0, 0, 0.4);
--close-color: #9aa0a6;
--border-color: #3c4043;
}
}

/* Google-inspired auth prompt */
.google-auth-prompt {
position: fixed;
top: 65px;
right: 20px;
z-index: 1000;
transform: translateY(-100px);
opacity: 0;
animation: slideIn 0.5s ease-out 0.5s forwards;
max-width: 400px;
width: calc(100% - 40px);
box-shadow: 0 2px 10px var(--shadow-color);
border-radius: 8px;
overflow: hidden;
background: var(--bg-color);
border: 1px solid var(--border-color);
font-family: 'Google Sans', Roboto, Arial, sans-serif;
color: var(--text-color);

}

@keyframes slideIn {
to {
transform: translateY(0);
opacity: 1;
}
}

.google-auth-content {
padding: 20px;
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
}

.google-auth-title {
font-size: 18px;
font-weight: 500;
color: var(--text-color);
margin-bottom: 12px;
}

.google-auth-text {
font-size: 14px;
color: var(--secondary-text);
margin-bottom: 20px;
line-height: 1.5;
}

.google-auth-btn {
display: flex;
align-items: center;
justify-content: center;
background: var(--button-bg);
color: #202124; /* Dark text for better contrast on light button */
border: none;
border-radius: 4px;
padding: 10px 24px;
font-size: 14px;
font-weight: 500;
cursor: pointer;
transition: background-color 0.2s, box-shadow 0.2s;
text-decoration: none;
width: 100%;
max-width: 240px;
}

.google-auth-btn:hover {
background: var(--button-hover);
box-shadow: 0 1px 3px rgba(66, 133, 244, 0.3);
}

.google-auth-btn img {
width: 18px;
height: 18px;
margin-right: 12px;
background: white;
padding: 4px;
border-radius: 2px;
}

.google-auth-close {
position: absolute;
top: 12px;
right: 12px;
width: 24px;
height: 24px;
opacity: 0.54;
cursor: pointer;
transition: opacity 0.2s;
background: none;
border: none;
padding: 0;
}

.google-auth-close:hover {
opacity: 0.87;
}

.google-auth-close::before,
.google-auth-close::after {
content: '';
position: absolute;
top: 50%;
left: 50%;
width: 16px;
height: 2px;
background: var(--close-color);
}

.google-auth-close::before {
transform: translate(-50%, -50%) rotate(45deg);
}

.google-auth-close::after {
transform: translate(-50%, -50%) rotate(-45deg);
}

/* Dark mode specific adjustments */
@media (prefers-color-scheme: dark) {
.google-auth-btn {
color: #202124; /* Keep dark text for light buttons in dark mode */
}

.google-auth-btn img {
background: #f1f3f4;
}
}

/* Responsive adjustments */
@media (max-width: 600px) {
.google-auth-prompt {
top: 0;
right: 0;
width: 100%;
border-radius: 0;
box-shadow: 0 2px 5px var(--shadow-color);
animation: slideDown 0.4s ease-out 0.5s forwards;
border-left: none;
border-right: none;
border-top: none;
}

@keyframes slideDown {
from {
transform: translateY(-100%);
opacity: 0;
}
to {
transform: translateY(0);
opacity: 1;
}
}
}

.google-wrapper{
width: 100%;
}

.auth-content h2 {
font-size: 20px;
font-weight: 600;
margin-top: 20px;
margin-bottom: 5px;
}

.auth-content p {
font-size: 13px;
color: #999;
margin-bottom: 25px;
}

.auth-btn {
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
width: 100%;
padding: 12px;
border-radius: 6px;
font-size: 14px;
font-weight: 500;
cursor: pointer;
border: 1px solid #ccc;
transition: all 0.3s ease;

padding: 16px;
/*border-radius: 50px;*/
font-weight: 500;
cursor: pointer;
transition: all 0.3s;
border: none;
font-size: 15px;
display: flex;
align-items: center;
gap: 6px;

}

.auth-btn img {
width: 20px;
height: 20px;
}

.divider {
display: flex;
align-items: center;
margin: 25px 0;
color: #999;
font-size: 13px;
}

.divider::before, .divider::after {
content: "";
flex: 1;
height: 1px;
background: #ccc;
}

.divider span {
margin: 0 10px;
}

.auth-form {
width: 100%;
}


.icon-input {
position: relative;
}

.icon-input img {
position: absolute;
left: 14px;
top: 50%;
transform: translateY(-50%);
width: 16px;
opacity: 0.5;
}

.icon-input input {
width: 100%;
height: 45px;
padding: 12px 12px 12px 40px;
border: 1px solid #ccc;
border-radius: 6px;
font-size: 14px;
box-sizing: border-box;
transition: border-color 0.3s ease;
pointer-events: auto;
touch-action: auto;
}

.icon-input input:focus {
outline: none;
}

.icon-input input::placeholder {
color: #bbb;
}

.auth-primary-btn {
width: 100%;
height: 48px;
padding: 14px;
border: none;
border-radius: 6px;
font-size: 15px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
}

.auth-primary-btn:hover {
background: var(--button-bg);
}

.auth-primary-btn.loading {
color: transparent;
position: relative;
}

.auth-primary-btn.loading::after {
content: "";
position: absolute;
width: 20px;
height: 20px;
top: 0;
left: 0;
right: 0;
bottom: 0;
margin: auto;
border: 3px solid transparent;
border-top-color: #fff;
border-radius: 50%;
animation: button-loading-spinner 1s ease infinite;
}

@keyframes button-loading-spinner {
from { transform: rotate(0turn); }
to { transform: rotate(1turn); }
}

.error-box {
display: flex;
align-items: center;
gap: 8px;
background: #f9fdbb;
color: #888;
font-size: 13px;
padding: 10px 12px;
border-radius: 6px;
text-align: left;
margin-bottom: 20px;
animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
from { opacity: 0; transform: translateY(-10px); }
to { opacity: 1; transform: translateY(0); }
}




.forgot-password {
display: block;
text-align: right;
font-size: 13px;
color: #2e00ff;
margin-bottom: 20px;
text-decoration: none;
transition: color 0.3s ease;
}

.forgot-password:hover {
color: #2500d1;
}

.auth-secondary-btn {
display: flex;
align-items: center;
justify-content: center;
gap: 8px;
width: 100%;
padding: 12px;
border: 1px solid #ccc;
border-radius: 6px;
background: #fff;
font-size: 14px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
}

.auth-secondary-btn:hover {
background: #f5f5f5;
}

.auth-secondary-btn img {
width: 16px;
transition: transform 0.3s ease;
}

.auth-secondary-btn:hover img {
transform: translateX(-3px);
}




.auth-container {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: white;
z-index: 1000;
display: flex;
align-items: center;
justify-content: center;
opacity: 0;
transform: translateY(20px);
transition: all 0.3s ease;
}

.auth-container.visible {
opacity: 1;
transform: translateY(0);
}

#itemPanel.auth-visible {
position: relative;
}

#itemPanel.auth-visible::after {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(255,255,255,0.7);
z-index: 999;
}


.card {
background-color: #ffffff;
border-radius: 12px;
width: 90%;
max-width: 540px;
padding: 10px 20px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
border: 1px solid #e2e8f0;
margin-top: 2rem;
}
.card h3 {
font-size: 18px;
margin-bottom: 10px;
color: #4a5568;
font-weight: 600;
}
.tab-item {
display: flex;
align-items: center;
background: #f8fafc;
border-radius: 8px;
padding: 12px;
margin-bottom: 12px;
transition: all 0.2s ease;
cursor: pointer;
border: 1px solid #edf2f7;
}
.tab-item:hover {
background: #edf2f7;
transform: translateY(-1px);
box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.tab-item img {
width: 24px;
height: 24px;
margin-right: 14px;
}
.tab-text {
display: flex;
flex-direction: column;
}
.tab-title {
font-size: 14px;
font-weight: 500;
margin-bottom: 4px;
color: #2d3748;
}
.tab-subtitle {
font-size: 12px;
color: #718096;
}
.see-more {
display: block;
text-align: left;
font-size: 14px;
color: #4299e1;
margin-top: 10px;
cursor: pointer;
text-decoration: none;
font-weight: 500;
}
.see-more:hover {
color: #3182ce;
text-decoration: underline;
}


.container {
width: 100%;
}

.header-client {
padding: 30px 30px 20px;
text-align: center;
border-bottom: 1px solid #eaedf0;
}

.header-client h1 {
font-size: 28px;
font-weight: 600;
color: #2d3748;
margin-bottom: 8px;
}

.header-client p {
color: #718096;
font-size: 16px;
}

.content {
position: relative;
height: 120px;
overflow: hidden;
}

.section-client {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
padding: 30px;
display: flex;
flex-direction: column;
opacity: 0;
transform: translateY(15px);
transition: opacity 0.6s ease, transform 0.6s ease;
pointer-events: none;
}

.section-client.active {
opacity: 1;
transform: translateY(0);
pointer-events: all;
}

.section-title {
font-size: 20px;
color: #4a5568;
text-align: center;
margin-bottom: 20px;
font-weight: 500;
font-style: italic;
display: none;
}

.logos-container {
display: flex;
justify-content: center;
align-items: center;
overflow: hidden;
position: relative;
}

.logos-wrapper {
width: 100%;
overflow: hidden;
position: relative;
}

.logos-track {
display: flex;
width: max-content;
animation: scroll 100s linear infinite;
}

.logos-track.paused {
animation-play-state: paused;
}

.logo-client, .flag {
width: 80px;
height: 80px;
border-radius: 12px;
display: flex;
justify-content: center;
align-items: center;
margin: 0 15px;
flex-shrink: 0;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-client:hover, .flag:hover {
transform: translateY(-5px);
box-shadow: 0 8px 15px rgba(0, 0, 0, 0.08);
}

.logo-client img, .flag img {
width: 50px;
height: 50px;
object-fit: contain;
}

@keyframes scroll {
0% {
transform: translateX(0);
}
100% {
transform: translateX(-50%);
}
}

.indicators {
display: flex;
justify-content: center;
padding: 20px;
background: #f8f9fa;
}

.indicator {
width: 10px;
height: 10px;
border-radius: 50%;
background: #e2e8f0;
margin: 0 8px;
transition: background 0.3s ease;
}

.indicator.active {
background: #4a5568;
}

.footer {
text-align: center;
padding: 15px;
color: #a0aec0;
font-size: 14px;
border-top: 1px solid #eaedf0;
}

@media (max-width: 768px) {
.header {
padding: 25px 20px 15px;
}

.header h1 {
font-size: 24px;
}

.content {
height: 320px;
}

.section {
padding: 20px;
}

.logo-client, .flag {
width: 70px;
height: 70px;
margin: 0 12px;
}

.logo-client img, .flag img {
width: 40px;
height: 40px;
}

}

@media (max-width: 480px) {
.header h1 {
font-size: 22px;
}

.header p {
font-size: 14px;
}

.content {
height: 280px;
}

.section-title {
font-size: 18px;
}

.logo-client, .flag {
width: 60px;
height: 60px;
margin: 0 10px;
}

.logo-client img, .flag img {
width: 35px;
height: 35px;
}
}

.trusted-section {
text-align: center;
padding: 40px 20px;
max-width: 900px;
width: 100%;
}
.trusted-section {
text-align: center;
padding: 40px 20px;
max-width: 900px;
width: 100%;
display: flex;
flex-direction: column;
align-items: center;
gap: 20px;
}

.trusted-section h4 {
font-size: 16px;
color: #666;
/* margin-bottom: 30px; */
font-weight: normal;
text-align: center;
width: 225px;
display: block;
}

.trusted-logos {
display: flex;
justify-content: center;
align-items: center;
gap: 50px;
flex-wrap: wrap;
}
.trusted-logos {
display: flex;
justify-content: center;
align-items: center;
gap: 20px;
flex-wrap: wrap;
width: 100%;
}

.trusted-logos {
display: flex;
justify-content: center;
align-items: center;
gap: 20px;
flex-wrap: wrap;
width: 100%;
max-width: 410px;
}

.trusted-logos img {
max-height: 20px;
transition: all 0.3s ease;
}

.trusted-logos img:hover {
filter: grayscale(0%);
opacity: 1;
}

.install-modal {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.7);
backdrop-filter: blur(5px);
z-index: 10000;
opacity: 0;
transition: opacity 0.3s ease;
align-items: center;
justify-content: center;
}

.install-modal.show {
opacity: 1;
}

.install-modal-content {
background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
border: 1px solid #404040;
border-radius: 16px;
padding: 0;
width: 90%;
max-width: 400px;
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
transform: translateY(20px);
transition: transform 0.3s ease;
}

.install-modal.show .install-modal-content {
transform: translateY(0);
}

.install-modal-header {
display: flex;
align-items: center;
padding: 24px;
border-bottom: 1px solid #404040;
background: rgba(255, 255, 255, 0.02);
border-radius: 16px 16px 0 0;
}

.app-icon {
margin-right: 16px;
background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
border-radius: 12px;
padding: 8px;
box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.app-info h3 {
margin: 0;
color: #ffffff;
font-weight: 600;
font-size: 1.2rem;
}

.app-info p {
margin: 4px 0 0 0;
color: #a0a0a0;
font-size: 0.9rem;
}

.close-button {
background: none;
border: none;
color: #a0a0a0;
font-size: 24px;
cursor: pointer;
padding: 0;
margin-left: auto;
transition: color 0.2s ease;
}

.close-button:hover {
color: #ffffff;
}

.install-modal-body {
padding: 24px;
}

.feature-list {
display: flex;
flex-direction: column;
gap: 16px;
}

.feature-item {
display: flex;
align-items: center;
color: #e0e0e0;
font-size: 0.95rem;
}

.feature-icon {
margin-right: 12px;
font-size: 1.2rem;
width: 24px;
text-align: center;
}

.install-modal-footer {
display: flex;
gap: 12px;
padding: 24px;
border-top: 1px solid #404040;
background: rgba(255, 255, 255, 0.02);
border-radius: 0 0 16px 16px;
}

.btn-primary, .btn-secondary {
flex: 1;
padding: 12px 20px;
border: none;
border-radius: 50px;
font-weight: 600;
font-size: 0.95rem;
cursor: pointer;
transition: all 0.2s ease;
}

.btn-primary {
background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
color: white;
box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
transform: translateY(-2px);
box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
}

.btn-primary:active {
transform: translateY(0);
}

.btn-secondary {
background: rgba(255, 255, 255, 0.1);
color: #e0e0e0;
border: 1px solid #404040;
}

.btn-secondary:hover {
background: rgba(255, 255, 255, 0.15);
color: #ffffff;
}

/* Floating Install Button */
.floating-install-btn {
display: none;
position: fixed;
bottom: 24px;
right: 24px;
width: 56px;
height: 56px;
border-radius: 50%;
background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
color: white;
border: none;
cursor: pointer;
box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
z-index: 9999;
align-items: center;
justify-content: center;
transition: all 0.3s ease;
}

.floating-install-btn:hover {
transform: translateY(-4px) scale(1.05);
box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4);
}

.floating-install-btn:active {
transform: translateY(0) scale(0.95);
}

/* Responsive Design */
@media (max-width: 480px) {
.install-modal-content {
width: 95%;
margin: 20px;
}

.install-modal-footer {
flex-direction: column;
}

.floating-install-btn {
bottom: 16px;
right: 16px;
width: 52px;
height: 52px;
}
}

/* Animation for the modal */
@keyframes slideIn {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}

.install-modal.show {
animation: slideIn 0.3s ease-out;
}
