.techspartan-floating-buttons {
    position: fixed;
    z-index: 9999;
}

.techspartan-floating-buttons.techspartan-desktop {
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: transparent;
    box-shadow: none;
}

.techspartan-floating-buttons.techspartan-mobile {
    bottom: 0;
    left: 0;
    right: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    max-width: 100%;
    background: #fff;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
}

.techspartan-desktop .techspartan-floating-button {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.techspartan-desktop .techspartan-floating-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    text-decoration: none;
}

.techspartan-desktop .techspartan-floating-button .techspartan-icon {
    font-size: 32px;
    display: flex;
    align-items: center;
    line-height: 1;
}

.techspartan-desktop .techspartan-floating-button .techspartan-icon svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

.techspartan-desktop .techspartan-floating-button .techspartan-text {
    display: none;
}

.techspartan-mobile .techspartan-floating-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 20px;
    text-decoration: none;
    font-weight: 700;
    font-size: 17px;
    transition: all 0.3s ease;
    border: none;
    min-height: 65px;
    position: relative;
    letter-spacing: 0.3px;
}

.techspartan-mobile .techspartan-floating-button:hover {
    opacity: 0.9;
    text-decoration: none;
    transform: translateY(-2px);
}

.techspartan-mobile .techspartan-floating-button:active {
    transform: translateY(0);
}

.techspartan-mobile .techspartan-left-button {
    border-right: 1px solid rgba(255,255,255,0.2);
}

.techspartan-mobile .techspartan-floating-button .techspartan-icon {
    font-size: 28px;
    margin-right: 3px;
    display: flex;
    align-items: center;
    line-height: 1;
}

.techspartan-mobile .techspartan-floating-button .techspartan-icon svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

.techspartan-mobile .techspartan-floating-button .techspartan-text {
    flex: 1;
    text-align: center;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

@media (min-width: 1025px) {
    .techspartan-mobile {
        display: none !important;
    }
    
    body {
        padding-bottom: 0;
    }
}

@media (max-width: 1024px) {
    .techspartan-desktop {
        display: none !important;
    }
    
    body {
        padding-bottom: 65px;
    }
    
    .techspartan-mobile .techspartan-floating-button {
        padding: 16px 15px;
        font-size: 16px;
        min-height: 60px;
    }
    
    .techspartan-mobile .techspartan-floating-button .techspartan-icon {
        font-size: 26px;
        margin-right: 3px;
    }
    
    .techspartan-mobile .techspartan-floating-button .techspartan-icon svg {
        width: 26px;
        height: 26px;
    }
    
    .techspartan-mobile .techspartan-floating-button .techspartan-text {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    body {
        padding-bottom: 60px;
    }
}

@media (max-width: 480px) {
    body {
        padding-bottom: 55px;
    }
    
    .techspartan-mobile .techspartan-floating-button {
        padding: 14px 12px;
        font-size: 15px;
        min-height: 55px;
    }
    
    .techspartan-mobile .techspartan-floating-button .techspartan-icon {
        font-size: 24px;
        margin-right: 3px;
    }
    
    .techspartan-mobile .techspartan-floating-button .techspartan-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .techspartan-mobile .techspartan-floating-button .techspartan-text {
        font-size: 15px;
    }
}

@media (max-width: 360px) {
    body {
        padding-bottom: 50px;
    }
    
    .techspartan-mobile .techspartan-floating-button {
        padding: 12px 10px;
        font-size: 14px;
        min-height: 50px;
    }
    
    .techspartan-mobile .techspartan-floating-button .techspartan-icon {
        font-size: 22px;
        margin-right: 2px;
    }
    
    .techspartan-mobile .techspartan-floating-button .techspartan-icon svg {
        width: 22px;
        height: 22px;
    }
    
    .techspartan-mobile .techspartan-floating-button .techspartan-text {
        font-size: 14px;
    }
}
